From f33777f035aa412bb3b1513ff4db737407ccf776 Mon Sep 17 00:00:00 2001 From: aaron <462826@qq.com> Date: Mon, 20 Jul 2020 17:21:23 +0800 Subject: [PATCH] decode with pre/post fix --- demo/test.yaml | 12 ++--- res/doc/usage.txt | 6 ++- res/doc/usage_en.txt | 3 ++ res/messages_en.json | 4 ++ res/messages_zh.json | 4 ++ res/res.go | 44 ++++++++++++---- src/gen/analyse.go | 61 ----------------------- src/gen/decode.go | 102 ++++++++++++++++++++++++++++++++++++++ src/utils/common/utils.go | 2 +- src/zd.go | 10 ++-- test/unit/test.go | 25 ++++++---- xdoc/4-build.sh | 8 +-- 12 files changed, 182 insertions(+), 99 deletions(-) delete mode 100644 src/gen/analyse.go create mode 100644 src/gen/decode.go diff --git a/demo/test.yaml b/demo/test.yaml index 87af8c6..3612696 100644 --- a/demo/test.yaml +++ b/demo/test.yaml @@ -5,17 +5,17 @@ version: 1.0 fields: - field: field_use_instance # 引用default.xml里的嵌套字段 - length: 16 + prefix: "[" # 复写前缀 + postfix: "]" # 特殊字符加引号,否则无法解析 - field: field_use_excel - prefix: " ===" # 复写前缀 + prefix: " [" # 复写前缀 + postfix: "] " # 特殊字符加引号,否则无法解析 - field: field_with_children prefix: " [" # 复写前缀 - postfix: "] " # 复写后缀 - length: 40 + postfix: "] " # 特殊字符加引号,否则无法解析 - field: field_loop # 引用default.xml里的自循环的字段 - prefix: " [" # 复写前缀 + prefix: "[" # 复写前缀 postfix: "]" # 特殊字符加引号,否则无法解析 - length: 8 diff --git a/res/doc/usage.txt b/res/doc/usage.txt index c8f15a5..36e096b 100644 --- a/res/doc/usage.txt +++ b/res/doc/usage.txt @@ -10,12 +10,15 @@ zendata是一款通用的数据生成工具,您可以使用yaml文件来定义 -F --field 可通过该参数指定要输出的字段列表,用逗号分隔。 默认是所有的字段。 -t --table 输出格式为sql时,需通过该参数指定要插入数据的表名。 -H --human 输出可读格式,打印字段名,并使用tab键进行分割。 + -r --recursive 递归模式。如不指定,默认为平行模式。平行模式下各个字段独立循环。 + 递归模式下每个字段的取值依赖于前一字段。可增强数据的随机性。 -p --port 在指定端口上运行HTTP服务。可通过http://ip/接口获得JSON格式的数据。服务模式下只支持数据生成。 -b --bind 监听的ip地址,默认监听所有的ip地址。 -R --root 运行HTTP服务时根目录。客户端可调用该根目录下面的配置文件。如果不指定,取zd可执行文件所在目录。 -i --input 指定一个schema文件,输出每个表的yaml配置文件。需通过-o参数指定一个输出的目录。 + -D --decode 根据指定的配置文件,将通过-i参数指定的数据文件解析成json格式。 -e --example 打印示例的数据格式配置文件。 -l --list 列出所有支持的数据格式。 @@ -33,7 +36,8 @@ $>zd.exe -d demo\default.yaml -c demo\test.yaml -n 100 -o test.json 输出json $>zd.exe -d demo\default.yaml -c demo\test.yaml -n 100 -o test.xml 输出xml格式的数据。 $>zd.exe -d demo\default.yaml -n 100 -o test.sql -t user -s mysql 输出插入到user表里面的sql。 -$>zd.exe -i db.sql -s mysql -o db 根据db.sql的定义生成每个表的yaml文件,存储到db目录里面。 +$>zd.exe -i db.sql -o db 根据db.sql的定义生成每个表的yaml文件,存储到db目录里面。 +$>zd.exe -c demo\default.yaml -i test.txt --decode 将-i指定的文件根据-d参数的配置进行解析。 $>zd.exe -l # 列出所有內置数据。 $>zd.exe -v system.address.v1 # 查看內置Excel文件system/address/v1.xlsx中的数据表。 diff --git a/res/doc/usage_en.txt b/res/doc/usage_en.txt index 9983baa..fe34005 100644 --- a/res/doc/usage_en.txt +++ b/res/doc/usage_en.txt @@ -25,6 +25,8 @@ Parameters -i --input Specify a sql schema file and output the YAML config file for each table. You need to specify an output directory by using -o. + -D --decode Referring to the specified configuration file, parse the data file specified by -i and output json. + Also you can output the readable format via -H. -e --example Print the data format config file of the example. -l --list List all supported data formats. @@ -43,6 +45,7 @@ $>zd.exe -d demo/default.yaml -c demo/test.yaml -n 100 -o test.xml # Output da $>zd.exe -d demo/default.yaml -n 100 -o test.sql -t user -s mysql # Output the sql inserted into the table user. $>zd.exe -i db.sql -o db # Generate YAML files for each table by parsing db.sql and store them in the db directory. +$>zd.exe -c demo/default.yaml -i test.txt --decode # Parse the file specified by -i according to the config of -d. $>zd.exe -l # List all build-in data types. $>zd.exe -v system.address.v1 # View data types in build-in Excel file system/address/v1.xlsx. diff --git a/res/messages_en.json b/res/messages_en.json index af78231..570acd0 100644 --- a/res/messages_en.json +++ b/res/messages_en.json @@ -108,6 +108,10 @@ { "id": "excel_data_1", "translation": "Excel that contains below data." + }, + { + "id": "analyse_success", + "translation": "Success to decode data to %s." } ] } \ No newline at end of file diff --git a/res/messages_zh.json b/res/messages_zh.json index 075cde0..6e13d5a 100644 --- a/res/messages_zh.json +++ b/res/messages_zh.json @@ -99,6 +99,10 @@ { "id": "excel_data_1", "translation": "Excel数据源,包含以下内容." + }, + { + "id": "analyse_success", + "translation": "成功解析数据到%s." } ] } \ No newline at end of file diff --git a/res/res.go b/res/res.go index 5f224be..7600547 100644 --- a/res/res.go +++ b/res/res.go @@ -25,16 +25,25 @@ func bindata_read(data []byte, name string) ([]byte, error) { return buf.Bytes(), nil } -var _res_doc_sample_txt = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x91\xcd\x6e\xd3\x40\x14\x85\xf7\x79\x8a\xbb\x60\xeb\x54\x59\x74\xcb\x13\xb0\x41\x7d\x00\xe4\xc6\x53\x35\x92\xed\x01\x3c\x96\xdc\xae\xa2\x28\x6d\x52\xea\x90\xa2\xfe\x08\x39\x48\xa5\xa8\x86\xb2\xc8\xd0\x15\x72\xfd\x03\x0f\x93\xb9\x33\xee\xca\xaf\x80\xec\x81\x86\x50\x16\xfc\x78\xe1\x59\xcc\x9d\x7b\xbe\x73\x0e\xc0\x83\x87\xbb\x56\x9b\x04\x04\x8c\x6d\x90\xe7\xb1\x7a\x73\x28\x8a\xaf\xea\xe4\x0a\x13\x8e\x2f\x3e\x2e\xfa\x83\x56\xeb\xe7\xa1\x1d\xb0\x88\x43\xd7\x18\xf1\x58\x7b\xc7\x74\x6c\x30\xba\xd0\x59\x07\x63\xab\x47\x6c\x0b\x9a\x7f\x07\x0c\xaa\xa7\xa8\xcf\x9e\xfa\xac\xcd\x02\x06\xc6\x16\x30\x12\xb0\x16\x2c\x3f\x79\xf0\xa1\xbc\x08\xe5\xe9\xb5\x9c\x70\x75\x72\x2e\xc7\x47\xf8\xaa\x10\xd9\xe5\xa2\x3f\xd0\x08\xb7\x7b\x13\x55\x70\x79\x36\x12\xd9\xe7\x55\xd5\x2a\x0f\xf5\x8b\xce\xfa\xdd\x8a\x2a\x0f\x45\x16\xd7\x22\xf2\x6d\x8e\xf9\x54\x45\xc3\xf2\xcb\x31\x8e\x52\x1c\x5f\xff\x42\xa3\x57\x8a\x64\xfe\x7f\xf6\x7a\xae\x47\x9e\xb3\xb6\xf7\xcc\xae\xed\x35\x07\x03\x66\x6e\xda\xe4\x89\x6b\x3a\xe4\x4f\xbd\x66\xf1\xc6\xe3\x47\xe5\xa7\x39\x4e\x63\x2c\xde\x61\x3e\x5d\xc5\x5e\xaa\xdc\x61\x57\x79\x58\x5e\x5c\xe1\xd1\x44\x24\xe9\x52\xef\x9e\x19\x4b\x63\x6e\x9a\x1e\xf9\x6e\xe6\x1f\xdb\xfb\xab\xd6\x7e\xd7\x57\xf9\x7e\x5f\xcd\xce\x6e\xb3\xd7\x25\xbf\xd4\xad\x36\xf7\x5d\xea\x38\xd4\x6d\x26\x44\x32\x57\xd1\x10\xf7\xf7\x90\xdf\xdc\x33\xd2\x83\xc0\xa2\xdd\x66\xdd\xda\x2e\x71\x99\x49\x75\xe8\x14\xa8\xbf\x02\x27\xb2\x97\x32\x1c\x21\x8f\x54\x34\xd4\x88\x98\x1e\x6f\x74\xb7\x89\x63\x56\x79\x88\xe3\x19\x66\x69\xad\x86\x3c\x12\x37\x07\x9a\xb4\x0e\xf3\x47\xe0\xd4\x67\x6a\xc6\xb1\x38\x15\xc9\xe1\xa2\x3f\xf8\x16\x00\x00\xff\xff\xdf\x32\x28\xff\x1e\x03\x00\x00") +var _res_doc_sample_yaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x58\x5b\x73\xda\x48\x16\x7e\xe7\x57\xa8\x26\x95\xca\x8b\x4c\x90\x5c\xa9\x4c\x78\xdb\xdd\x7f\x90\xc7\xcd\x4e\x51\x1a\x23\xdb\xd4\x62\x70\x21\x39\xf7\x54\xc9\x17\x8c\x1d\x0b\xc3\x26\xc6\x38\x04\x5f\xc8\x18\xe2\x4d\x6c\xb0\x67\x12\x5b\xe6\x12\x7e\x4c\xba\x5b\xe2\xc9\x7f\x61\xab\xfb\xe8\x06\x88\xa9\x49\xd5\xe6\x21\x96\x5a\xe7\x7c\xe7\xf4\xd7\xe7\xd6\xa8\x09\x35\x29\x47\xb9\xe7\x72\x2a\x2e\xa9\x12\x29\x9d\x93\x7c\x73\x90\xcd\x9b\xbd\xa6\xd5\x3a\x23\x7f\x94\xac\xd6\x17\xb2\xb7\x1d\x8a\xcb\xca\x4c\x94\x0b\x85\x38\xee\x16\x47\x76\x73\xa8\x73\x69\x76\xd6\xc8\x46\x91\xae\xd0\x35\x5b\x1f\x75\xea\xcf\xa4\x85\x24\x39\xea\xe2\x6e\xc1\xac\xac\x81\x28\xd9\xaf\xe3\x66\x05\x5d\x6f\xe2\xe2\x1a\x32\x3e\xe1\xb3\x32\x69\x7e\xa5\x5f\x99\xd8\x77\x6d\xc5\x06\x61\xaa\xa0\x51\xfa\x82\x7a\x6f\xcd\x9d\x0b\x78\x05\x27\xf0\x1b\x1d\x54\x01\x0c\x19\xc7\x83\xd5\x13\xbc\xb1\x0e\x9e\x50\x18\x9f\x7b\xb6\xdf\x36\xb2\xbd\x4b\x8e\x23\x47\xb9\xc1\x87\xbd\x9b\xae\x8e\x0b\x2d\xd4\xa9\x9b\x3b\x27\x66\x53\x33\x0f\xcf\xc0\x57\x0a\xdf\x58\xb1\x1a\xcb\xa4\x50\xb0\xfa\xe7\x56\xab\x0e\x60\x60\x90\xca\x30\x7e\xcc\x8b\x0e\x3e\xd8\xf2\xfc\x06\x72\x28\x3a\x53\xf3\xa3\xe3\xe3\x8a\x55\xd3\xc9\x6e\x8e\x54\x4f\xc9\x7e\xdd\x6a\x35\xcc\xce\xfa\x5f\x41\xbf\xe9\xea\x83\xfd\x03\xdc\xcf\x0e\xb4\xcd\x41\xed\xda\x33\x26\x2d\xa9\xf3\xe9\x4c\x94\xe3\x50\xaf\x6a\x69\xd9\x89\x72\x8f\xe5\x8c\x92\x48\xa7\x6e\xba\x15\x73\x73\x83\x54\x4f\x71\xe1\x2a\x40\x96\x31\x66\xb3\xba\x51\xb6\x6a\x27\x0e\x63\x7e\xa6\x81\xe6\xc1\x6a\x8f\xec\x7c\xc3\xd5\x93\xd9\x84\x9c\x8c\x2b\x56\xff\x1d\x3d\x4b\x10\xc8\xe9\x83\xfd\x0f\x9e\x6d\x64\x68\xc8\xf8\xe4\x1d\x27\xd0\x81\xf5\x2c\x2e\x7e\x86\x6f\x64\x63\xd7\xd2\xb2\xf8\xb8\xe2\xc6\x83\xa7\xed\x77\x07\x75\xea\x53\xcc\x9e\x1d\x40\x5d\x0d\x7f\xdc\x1a\x35\x64\x2b\x30\x23\x03\xad\x62\xf5\x73\xe0\x22\xbe\x38\x20\xda\x47\x5b\xb3\xb9\x6a\x56\xd6\xf0\x59\xd1\xb3\x16\x1a\xdd\xa7\xb3\x77\xa6\x7d\xd3\xad\xd0\x37\xfb\x7b\x31\x7f\xd3\xd5\x51\x27\x4b\x76\x5a\x44\x5f\xb6\xb6\x68\x60\x7e\xd7\x96\x49\xe9\x1c\x9f\x95\xbf\x6b\xcb\xc8\xd8\x22\xf9\x0f\x66\xbb\x8f\xdf\xe8\x61\x1b\x26\x23\xa5\xe6\x64\x07\x86\xed\xc6\xd2\x57\xf1\xfb\x2f\x37\x5d\x9d\x54\xb5\x41\x2e\x6f\x35\x96\xa9\x4f\xcc\xb6\xb7\xa7\x64\x3a\xbd\x68\x6b\x71\xf8\xdb\x27\x73\xbb\x45\x4e\x6b\xa4\xe4\x85\x15\x28\x90\xc3\x22\x32\x34\xdb\x3d\x26\x86\x8f\x2b\xf8\xfc\x3f\xe4\xb4\x36\x8c\x35\x9b\x78\xca\xe0\x48\xab\x80\x0c\x8d\x9c\xd6\x6c\xd0\xf2\xa5\x59\x59\xb3\xfa\x07\x64\xbb\x6e\x9e\x36\x6c\x42\xd8\xf6\xd3\x99\x05\x49\x85\x80\x66\xdb\x85\x3c\xc5\xfa\xae\xf5\xed\x2d\xce\xb5\xbf\x6b\x2b\x1c\xc7\x39\xd2\x8b\x19\xd9\xb1\xc0\x59\xad\xba\x9b\xdc\x78\x33\x6f\x76\x35\xcf\x95\xc5\xb4\xa2\x3a\x82\x43\x72\xc5\x6d\x5b\xce\xf1\x59\x4e\xcd\xa9\xf3\xe3\x80\x83\x52\x1f\xb7\xa9\x9f\xb8\xb1\x42\x0e\xaa\xc8\xc8\xc3\x59\xd3\xd0\xac\xec\x98\xa7\x0d\xac\xb7\xf1\xc6\x3a\xa5\x69\xe3\xdd\xa0\xaa\xd1\x34\xd6\x73\xb8\x59\x01\x04\x50\xa7\x5f\xf3\x25\xd4\xcb\x93\xbd\x16\x3e\x2b\x5b\xaf\x57\x7c\x64\xc9\xb3\xea\xa2\x04\x07\x8f\xaf\x1a\xb8\xf6\x19\x67\xb3\x2c\x68\xca\x40\x10\x18\x06\x20\x64\xe4\xf1\xf1\x21\x9c\x89\x6d\x26\x48\x65\xd0\xd9\xb3\x9a\xc7\x64\x8f\x95\x83\xff\xb6\x29\x93\x8e\x98\x67\x38\x93\x98\x9b\x77\x2c\xe3\xc2\x1f\x3f\x6c\x38\x48\xc5\x61\x73\x26\x9d\x9a\x4d\xcc\xb1\xc3\xb4\xa3\xa7\x5b\xa2\x75\xa9\xd0\xc0\xc7\xbb\x76\x2e\xb2\x1c\x85\x1c\x1e\x8a\x47\x27\x1e\x32\xe9\x05\x37\x20\x99\x36\xc4\x9e\x9b\xfe\x00\xe0\xed\x67\x49\x71\xc2\x9e\x56\xa9\xbe\xb9\x73\x62\x7d\xf8\x6c\x6b\x32\x51\x64\x9c\xb9\x45\xcf\xda\xaa\xe3\xeb\xdf\x71\xf3\x00\x7d\xa3\x89\x2d\x25\x93\xa8\xf3\x1b\xcd\x7c\xa6\x48\x36\x35\x52\xf5\x25\x87\x22\x27\xe5\x19\x15\xd0\x81\x15\xc0\xf5\x7a\xcd\x5e\x4b\x7e\x3a\x23\x27\xad\xda\x89\x9b\x30\xe4\xb0\x6e\xb5\x3e\xb8\x1b\xf4\xbc\x1f\x29\x3c\x4f\xe6\xe5\x0c\xeb\x12\x3f\x80\x6d\xbb\xc9\x2c\x90\xfd\x9a\xcb\x43\xc8\xad\x00\xc3\xb5\x05\xe4\x07\x5a\x19\x17\xae\x20\xf9\xe8\x81\x16\x75\x4a\x7c\x76\xd5\xfc\x72\xf4\x5d\x5b\x21\xad\x1d\xdc\x58\x01\xed\x28\x27\xf0\x22\x3f\xed\x94\x46\x26\x82\xae\x0f\xed\x8d\xed\xb5\xec\x9d\xe8\xed\x41\xf9\xcb\xa8\xaa\x30\x25\x44\x78\xee\x6f\x53\xff\x74\xb4\x99\x94\xbf\x4e\xe2\xf5\x37\xb8\x70\x15\x25\xfb\x75\x08\x25\x72\x56\x1f\x94\xfa\x41\x38\x51\xd1\xe3\x09\xa4\x5c\x17\xf0\x79\x81\x94\xce\xc7\xfd\xa6\x5a\x91\xb0\x30\xd1\xf8\x43\xd7\xec\xa0\x52\x20\xd5\x76\x30\xc2\x43\xda\xb5\xd8\x77\xfc\x46\x77\x2c\x7f\xb2\x56\x7b\xa8\xad\x0f\xb4\x4d\x64\xf8\x6a\x8c\x1f\xdd\x1f\xdb\xae\x21\x28\xc3\xae\x21\xdb\x4e\x32\xa1\xa8\x61\xf5\xa9\x4a\xd7\xa1\x5f\x15\x69\x7d\x30\xdf\x1b\xb8\x75\x6d\x5d\xb5\xf0\xb7\x35\x52\xbe\x64\x0d\xa0\x0e\xb3\x91\x13\xc6\x6d\x7c\xd8\xc6\xb9\x75\xab\x59\x33\x9b\xe5\x60\x3f\x5e\xa4\x5e\xb1\x00\xba\xc6\xdd\x02\xd9\xaf\x0f\x72\x79\x7c\x9c\xf7\x42\x30\xf8\xcc\x97\x14\x39\x23\xbc\x10\x22\x91\x57\x3c\x7d\x14\xd9\xa3\x03\x0e\xa1\xc9\xe8\xb4\xdb\x68\xee\xc8\x85\x82\xc2\x07\x56\x28\x73\xec\xd5\xdc\x39\x79\xf4\x0b\xd9\x3a\xb5\xbe\x5e\x91\xfd\xfa\x98\xb5\x47\xcc\x1c\x58\x62\xff\x4f\xff\x02\x06\x43\xce\xb0\xf1\x5c\x4e\xa9\x52\x3a\x64\xcf\x14\x51\x4e\x08\x47\x42\x21\x68\xb2\x51\x1a\xd9\x53\xd0\x33\xa3\xf0\x27\x36\x93\x5e\x58\x48\xa7\xb8\xd1\x7f\xb7\x38\x28\x87\x34\xd6\xd9\x41\x78\xa3\x0e\xa3\x0a\xb2\x62\x50\xd9\x21\x1b\x45\xbb\x2c\xe8\x6d\x5f\x86\xfa\xc2\x82\xe7\xc4\xc8\x94\x78\x8f\xe7\xc4\xfb\x3c\x27\x3e\xe0\xb9\xe9\x88\x63\x83\xe5\x4b\x38\x1c\xe6\x85\x08\x2f\x46\x78\x51\xe0\x45\x91\xbe\x8a\xf7\x78\xf1\x3e\x2f\x3e\x08\x4f\x47\x18\x1a\x34\xae\x28\x97\x48\xa9\xb1\x31\x57\x5d\x8f\xa1\x8d\x81\x02\x74\xb0\x28\xf7\x2f\x75\x92\x3c\x55\x60\xfd\x2c\x80\x14\x45\x95\x17\x83\x35\x7c\x99\x31\x92\x86\xa3\xdb\x8e\x8a\x3c\x27\x4c\x89\x34\xad\x46\x51\x04\x7e\x9a\xbf\xc7\xdf\xe7\x1f\xf0\x02\xcf\x09\x61\x81\x17\xc2\xb0\xed\x00\x57\x32\x52\x2a\x9e\x5e\x08\x3a\x1f\x48\x4c\x18\x9c\x46\x72\xd3\x5e\x75\xb3\x10\x19\x79\x6b\xb5\x87\x8b\x3a\x29\x5f\xe2\x5c\xdb\xdc\x3e\x0f\x72\xf8\xe1\x44\xa2\x04\xfe\x1e\xff\x73\x38\x1c\x0e\xf0\x6f\x36\x91\x94\x03\x75\x50\x67\xdb\x9f\xd7\xc8\x38\xb3\x5a\x1d\x5c\xd8\x85\x70\xa2\x45\xf9\xfa\x72\xc4\x6d\xbf\x47\x31\x1a\xdc\x0a\x4d\xf5\x00\xbf\x6e\x71\xee\x44\x8e\x8c\x33\x64\x68\x56\x4d\x47\xbd\x2a\x32\xda\xfe\x54\x05\x1b\x1e\xfa\xb8\xf3\x74\xe6\x0a\x74\xde\xca\x7d\x82\xd1\x0b\xfa\xf4\x78\x60\x4b\x53\xcf\x27\xb0\x05\x93\x7f\xec\xd7\xd8\x0c\xf7\x92\x8b\xc7\xe4\xd8\x2c\xf7\x92\x9b\x8b\xcd\xc7\x12\x4c\x9f\x9a\x8c\x72\xd3\x93\x95\x21\xce\x98\x71\x64\x6c\x92\xd3\x9a\xab\xc6\x02\x7a\x62\xfc\xb3\x6a\xdf\x2a\xb8\x43\xe3\xe8\xc4\xc8\xf9\xd3\xe2\xa7\x97\x3f\x4d\x46\x31\x37\xaf\x49\xf3\x35\x8c\x27\xf8\xf5\x11\xee\x96\xe0\x42\x82\x8b\x0d\xbc\xf1\x8e\x94\x8f\xe8\x5d\xf3\xe3\x6f\xe4\xa0\x18\xcc\x6a\x46\x5e\x94\xa5\xf1\xbc\x73\x42\xf6\xc5\x2b\xe7\x26\x42\x0b\x9f\xbf\x99\xfa\x09\xa6\xc7\x3f\x25\xbc\x98\x7e\xc5\x3f\x1a\x2a\x76\xe2\x2b\x67\x6e\xc9\x4c\x41\x1d\x1c\xfe\x63\x0b\xfa\x9f\x83\xa2\x96\xcd\xcd\x13\x5d\x74\xa7\x68\x20\x01\x19\xbf\xbb\xe3\xf4\x68\xd6\xfc\xc9\x69\x2c\x4a\x8a\xf2\x24\xce\x09\xbc\xfd\x20\x3a\x0f\xd3\x5c\x38\x1c\xb6\x3f\x0b\x11\x07\xd4\x99\xe5\x7f\x82\x0f\xb7\x23\x62\x7c\xec\x90\x6e\x71\xe6\xce\xc9\x6d\x31\x6e\xd5\xea\x83\xf7\xac\xcd\xf5\xfa\xb8\xb5\x6e\x1e\x2d\xc3\x35\x1c\xf5\xf7\x89\xbe\xfc\x33\xea\xd1\x86\x72\x5b\x8c\x43\x11\xb7\x6a\xf6\x40\x1b\x7c\x5e\x4b\x8a\x1c\x93\x52\x69\x75\x5e\xce\xf8\xd3\xf9\xd6\xf0\x14\x9a\xbd\x44\x9d\x5d\x77\xe6\x1c\x9e\x23\x9d\xc9\x35\x96\x5a\x5a\xf8\x35\xc6\x50\xc3\xf4\x4a\x39\x12\xd4\x00\xd4\x7b\x4b\x0b\xf5\xfb\x26\xee\x95\x90\xb1\x05\x73\xde\xa8\xe2\x9f\xcd\xb9\x01\xde\xb3\xf3\x50\x86\x6a\x91\x6b\x2e\xc8\xef\x9b\xae\x3e\x72\xa5\x47\xed\x75\xb8\xe1\xda\x37\x41\x1d\x75\x76\x51\xe7\x14\x67\x2f\x50\xfb\x33\x6a\xaf\xd3\xba\xd2\x7e\x0f\xd7\xdb\x8b\x15\xdb\x2b\x56\x64\xdd\xe3\xcb\xa4\x17\x1c\x06\xc0\x9f\x31\x0a\xfe\x4f\x1c\x50\xa4\x25\x45\x8e\x72\x0b\x72\x3c\xb1\x34\xde\x1b\x3c\x6b\xf6\x44\xef\xab\x95\xee\x2c\x0f\xba\xf0\x93\xcc\x64\x62\x13\x29\x45\x95\x52\x33\x72\xd0\x1e\x7e\x90\x58\xf7\xda\xe0\x63\x4b\x79\xa6\xa8\xf2\x42\x38\xb1\x18\x7e\x2c\x4c\x66\x2b\x2e\xa9\xd2\x5d\x10\xbd\x9b\x58\xbc\x6b\x8b\x7a\x34\x2c\x66\x12\x8f\x25\x55\xfe\x07\xef\x3c\xfc\x00\x0d\x8e\x0a\x7e\xa3\xdb\x8f\x7f\x47\xc6\xf1\x90\xbb\xc1\xcc\xb0\xdb\xc5\x98\xa1\xce\x36\x5b\x87\x5f\x87\x48\xbb\x08\xa7\x87\x0b\xbb\xb0\x12\xb8\x7b\x29\x1e\xcf\xc8\x8a\x42\x29\x98\x99\x4f\xa4\x24\x3f\x9a\x7f\xeb\xb6\x1c\xdd\xff\xd3\xa4\xf2\x74\xb4\xad\x16\xf3\xc8\x68\x33\x00\x7a\x26\x57\x75\xd4\xab\x9a\xe7\xee\x60\x02\x97\xb1\x28\x37\x93\x50\x9f\x4d\x8e\x17\xb8\x1b\x51\x99\xe1\xa6\x67\xdf\xb6\x14\x55\x52\x65\x2e\x99\xf8\xb7\xcc\xdd\xb9\x8d\x2f\x2e\x90\x51\xbd\x7d\x67\x04\x81\xdd\xab\xc8\x5e\x8b\x33\xab\xcb\xa8\xd3\x83\x1f\x92\x40\x36\x98\xcc\x27\x09\x75\x3e\x36\x33\x9f\x48\xc6\x33\x72\x6a\xe8\xf0\xbf\xea\xb8\x5e\x06\x47\x80\x35\x7b\x88\x05\x01\x17\x86\xe9\x0a\x5c\xc8\xd1\xf4\x3a\xb4\xbb\xe4\xcc\x8f\x8b\x52\x46\x15\x62\xde\xb2\xd3\x0e\xef\xbc\xbc\x13\x1a\x85\x05\x5c\x71\x14\xd6\xb9\xa2\x8d\xc2\x8a\x7f\x11\x96\xa1\xfa\x36\x1d\x08\x36\x1d\x00\xe6\xae\xd8\x34\x78\x0b\x63\x94\xce\xd1\xa1\x51\x49\xa7\x42\xfe\xb3\xf1\xcf\xd0\x43\x1f\x9c\x66\x16\x99\x12\x23\xc3\x1a\xae\xe9\xff\x05\x00\x00\xff\xff\xeb\xb9\xc7\x33\x7a\x16\x00\x00") -func res_doc_sample_txt() ([]byte, error) { +func res_doc_sample_yaml() ([]byte, error) { return bindata_read( - _res_doc_sample_txt, - "res/doc/sample.txt", + _res_doc_sample_yaml, + "res/doc/sample.yaml", ) } -var _res_doc_usage_txt = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x92\xdb\x52\xda\x4e\x1c\xc7\xef\x7d\x8a\xbd\xf9\x5f\xae\xdc\xfc\xa7\x17\x7d\x1b\x94\x50\x6c\x03\xb1\x66\xad\x87\xab\x80\x1c\x44\x83\xb1\x15\x3c\x50\x54\x70\x40\x69\x67\x48\xe8\x74\x2a\x21\x01\x7c\x18\xf6\xf7\xdb\xe5\x8a\x57\xe8\x84\xb5\xca\xb4\x77\x39\x7c\xbe\xa7\x9d\x25\x84\xa6\x08\xa5\x29\x4d\xdf\x24\x04\x6f\x3b\xa2\x71\x0c\xbe\x0b\x47\xdf\xf8\x53\x0b\xb3\xde\xd4\xca\xad\x10\x42\x4d\x42\xa9\xa9\x31\x42\x88\x74\x27\x62\xec\xc2\xa0\x03\x85\x81\xf4\x7a\xb2\x6b\xc1\x8f\x1b\xb4\x1e\xa6\x56\x4e\x54\xbb\x78\x38\x00\x6f\x08\xe3\x33\x28\x57\xc4\x57\x17\xc6\xb5\x59\xc3\x92\xf7\x59\x6c\x94\xa1\x78\x85\xd7\x07\xb3\xab\xd3\xc8\x72\x85\x90\x59\x78\x29\xdd\x36\x36\x87\x58\x71\xc1\xad\xf3\x61\x19\xcf\x4b\x3c\x7c\x14\xd5\x5b\x3c\x3c\xc5\x5a\x1f\x2b\xae\x4a\x27\x84\x26\x08\xa5\x09\x2d\x19\xdf\xd6\xd9\x1f\xe5\xb2\x46\x41\x7b\x84\xd2\xbd\x78\x5a\x8f\x5e\x08\xda\x25\x70\xeb\xff\x42\xeb\x84\xd2\x75\x63\x3b\xc3\x5e\xa1\xe5\x44\x51\xcf\xe3\x75\x0b\x6b\xfd\x05\x1d\x09\x68\x72\x43\xd3\x13\xd1\xa3\x9a\x22\x27\x67\x50\x0a\x44\x3d\x0f\xbd\x0b\x74\x7f\xcd\x47\xb6\xa8\x76\x67\xd6\x05\x38\x03\x38\x2c\xce\xea\xd5\xa9\x95\xc3\xc6\x77\x65\x8d\x17\x8f\xf3\x91\xad\x0a\x2b\xe1\xa2\xa1\x2a\xc4\xfd\x5e\x14\x57\xb6\xa2\xd3\x59\x98\xbd\xec\x35\x08\xa5\xc6\x36\x23\x4b\x53\x94\x7c\x79\x4a\x32\x2a\x67\x6c\xa5\xe3\x0b\xee\xf9\x7f\x73\x04\x23\x67\x3e\xb2\xb1\xea\xa1\x9d\x65\xda\x2e\x9b\x5a\xd9\xf7\xa6\x91\x99\x5a\xd9\xdd\xb4\x0e\x5f\x6c\xf3\xa3\x2e\xbd\x1e\x38\x9d\x97\x66\xdc\x0f\x14\xf8\x9c\xce\x08\xa5\x2c\xbe\xa6\x6b\x7f\xfb\x46\x60\xf4\x5d\xcd\x12\xd5\x2e\x0f\x4e\x54\xbb\x8d\x8c\xa9\x6d\x31\xe5\x2b\xea\x79\xd9\xea\xc2\x69\x45\xb9\xd1\x4f\xda\xd6\x9a\x61\x2e\xcc\xe0\xee\x06\x8e\x9a\xd8\x6b\x83\x93\xc3\x5a\x3f\xea\x79\x39\x11\xed\x40\x7a\xf7\x22\x2c\xca\xfe\x81\xf4\x6a\xaf\x17\x6f\x85\x10\xee\x07\x3c\x28\xe2\xf9\x90\x4f\x9e\xa0\xd1\xe5\x61\x88\x79\x47\xdd\x2c\xee\xf7\xb0\xfc\x20\x5b\xf6\x7f\x26\x7c\x1e\xf3\xb0\x3d\x1f\xd9\x10\x06\xd2\x75\xa1\x5f\x84\xc2\x23\x1c\x35\xa1\xd0\x11\x27\x1e\xdc\x1d\x80\x73\x39\x2b\x39\xdc\xef\x45\x4c\x61\xc0\xc7\x67\x78\x3e\xc4\x9f\x35\x70\x72\xa2\xf0\xc0\xc3\x0e\xf7\x8f\xa1\xd1\x87\x6b\x4b\x1d\x42\x8a\xb1\x4d\xf3\x6d\x2c\xb6\xb3\xb3\xb3\xba\xcf\x34\x93\x6d\x64\xde\xad\x66\x34\x16\x5b\x33\x8c\x0f\xb1\x7d\x96\xa4\x09\x63\x3d\x16\x4f\x24\x28\x33\xe8\x66\x9c\xa5\xe8\xff\x6f\x56\x53\x2c\xad\xff\x0e\x00\x00\xff\xff\xf0\x10\x25\x34\x4f\x03\x00\x00") +var _res_doc_sample_en_yaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x58\xcd\x8e\xdb\xc8\x11\xbe\xeb\x29\x0a\xbb\x08\xf6\xd2\xa2\x45\x0e\x06\x5e\xcb\xc8\x61\xb2\xd9\x00\x06\x1c\x78\x33\x4e\x02\x64\x9d\x85\xd0\x22\x8b\x62\x23\x64\x37\xd3\x5d\x9c\x19\xd9\x1e\x20\xc8\x6b\xe5\x90\x87\xc9\x03\xe4\x15\x82\xea\x66\x53\x4d\x89\x32\x7c\x88\x0f\x1e\xaa\x55\xf5\xd5\x4f\x7f\xf5\x43\xfd\xf7\x5f\xff\x26\x45\x2d\x6e\xe1\x23\xea\x4a\x92\x84\xd2\xe8\x5a\x1d\xc0\x1d\x35\xc9\xa7\x55\x85\xae\xdc\xc2\x6a\x05\xf0\x2d\xfc\x4e\xb5\x08\xa5\xe9\x7a\xe3\x14\x29\xa3\xf9\x94\xcf\xa3\x66\x85\xb5\xd2\xe8\x80\x1a\x84\xda\xd8\x4e\x12\xff\x01\x94\x65\x03\xb5\xc2\xb6\x02\xa5\xe1\x2f\x77\xbf\x7f\x0b\xb5\x6a\x31\x1b\xb5\xa7\x03\x50\x6e\x44\xc7\x0a\x4c\x1d\xce\xd8\xbe\x55\x3d\x9b\x03\xa9\xab\x11\xc7\x5b\xf2\x3e\x64\x89\x6b\x89\x6c\x74\x6d\x8c\x0d\xe0\x0e\x5c\x63\x2c\x01\xe1\x13\x01\x19\x70\x43\xd7\x49\xab\x3e\xa2\xf7\xd6\xbb\x4f\xc7\x1e\xc7\x18\x2a\xd8\x1f\x81\x1a\xe5\x66\x9e\x86\x5c\x00\xc0\x6f\x91\xa4\x6a\xb1\x9a\xd0\x82\xe5\xfd\x35\x30\xa5\x4f\x60\x02\x8c\xf7\x50\xb6\x11\x56\x0e\xd4\x18\xbb\x05\x78\x77\xf6\xc5\x03\x5a\xa7\x8c\xde\xc2\x9f\xc3\x03\xe8\xa1\xdb\xa3\x4d\x11\xc6\xe0\x39\x27\xad\x72\x14\xc3\x0e\x27\xca\xa5\x1e\xf8\xcc\xb9\x88\x7d\x97\xe4\xbd\x34\x9a\xa4\xd2\x0e\x8c\x46\x30\x16\x3a\x63\xf1\x4c\xfc\x64\x02\x1c\x49\x4b\x0e\x6a\x6b\x3a\x58\x7b\xa9\x13\x66\xd9\xa8\x36\xde\x51\x29\x35\xec\x67\x09\x8d\x90\x89\xd3\xa7\x8b\x8c\xae\x7b\x21\x9f\xe5\x20\xa1\x65\x87\xaf\xa1\x45\x22\xb4\x4e\x40\xa5\x0e\x8a\x9c\x80\x41\x57\x68\x5b\x4f\x37\xa6\x45\x65\x88\xdd\x6f\x8f\xd1\x17\x2b\xf5\xc1\x5f\x3c\xbc\x65\xa7\xfd\xc7\xd7\xfe\x7a\x3a\xe3\x08\x54\xd7\x1b\x4b\x52\xd3\x8c\x4a\x41\xb5\x35\xa6\xf7\x9a\xf0\xc7\x06\xc7\x9c\x33\x1f\xf9\xdc\xbd\x1e\x03\x82\xc6\x3c\x42\x27\xf5\x11\x48\x75\xec\x44\x12\x35\x0b\xa6\x60\xb5\x7a\xda\x06\xb0\xd2\x68\x8d\x25\x19\x7b\x2a\x8c\x20\x1c\x83\xf7\x55\xc3\xc6\xdf\x0f\x3d\x7b\x38\x9e\x10\x57\xc4\x40\xfd\x40\x93\x68\x6f\x31\xe0\xc2\x4f\xfe\x89\x3d\x1c\x49\x96\x5c\x49\x6f\x1c\x05\xb1\x9f\xc2\xd3\xb9\x58\x74\x13\xf5\x81\x9a\xed\x18\x73\xf8\x74\x26\x0a\x6f\x6a\x70\xd8\x4b\x2b\xc9\x58\x07\xd2\x22\x68\x43\x30\x38\xac\x04\xb8\x1e\x4b\x55\x1f\x43\xe9\x07\xae\x04\x0c\xa5\x61\x7f\x24\x9c\x88\xd4\x62\x4d\xbd\xe4\x0b\x7e\x8b\x35\xad\x7b\x59\x55\x58\x41\xd9\x48\x2b\x4b\xbe\x61\x6f\x86\x4e\x3e\x28\xe7\xad\xa0\x36\xc3\xa1\x39\xd9\x91\x27\x95\xcc\xbb\x5c\x61\x2d\x87\x96\x58\xde\xf5\xb2\x9c\x6a\xd6\xaa\x43\x13\x0c\xde\xf3\xd3\xff\xc5\x60\x4c\x5a\xe8\x94\x9c\xb4\x7b\xac\xd1\x72\x23\xa0\x06\x13\x46\x71\xf4\x86\x1a\xb4\x63\x1b\x89\xb7\x6c\x4d\x17\x08\x36\xe9\xc9\x54\x2b\xed\x39\x83\x0b\x2c\x06\xf8\x93\x43\x50\xda\x91\xd4\x25\xba\x79\x6b\x41\xb0\x0c\x64\xb1\x0a\xba\x30\x2a\x3b\x6c\xb1\xf4\x74\x7a\x53\x07\x11\x6f\x4b\x03\x3e\x95\xd8\x02\xc9\x3d\xf7\xa3\xa3\x19\x3c\x6d\xff\x3e\xa0\x3d\x4e\x44\x56\x1a\x14\x45\x2f\x1e\x1b\xb4\xc1\x8f\xaf\x01\x1a\x1c\x8e\x60\xa5\xd1\x95\x8f\xc9\xdf\xff\x6a\x2a\xcc\x85\xba\xe7\xf0\x4a\xd3\x75\xd2\x31\xf4\x58\x28\x80\x2d\x76\xa8\xc9\x65\x80\xd9\x21\x8b\x55\x9d\x8b\x42\xdc\x44\xdf\x7e\x1c\x45\x62\xc3\x91\x41\x4a\xa4\x1a\xf9\x3a\xdf\x08\xb8\x5b\xff\x9c\xcd\xac\xb5\x46\xbb\xd0\xbe\x7d\x49\x3b\xc2\xde\x5d\xe8\x6d\x8b\xa8\xf4\x9e\xbf\x3f\xf5\xb5\x52\x75\xb2\x9d\xcb\x83\x57\xd8\x64\x79\x54\x79\xa3\x09\xed\x83\x6c\x27\x35\x87\x04\xd2\xb1\x78\x65\x3a\x6e\x8a\xf7\x0b\x00\xf7\x19\xbc\x47\x02\x54\x9e\x3b\xa3\xac\xb1\x20\x47\x3a\x2a\xac\xbc\xb3\x69\x34\x32\xf4\x72\x1e\x6d\x13\x65\xb9\x5f\xcf\xe1\xf9\x24\xa3\x27\x9a\x58\xef\x95\xb8\xc7\x32\xf1\x25\x58\x6c\x25\xa9\x07\x84\x5e\x52\x23\x40\xf9\x82\xda\x4b\x3f\x91\x03\xd3\xc6\xf5\x20\xe5\x28\x9b\xff\xa4\x9f\xd9\xb6\xc5\x1e\x25\x81\x8c\x17\x37\xb7\x3e\x38\xb4\xf9\xa7\x7c\xb3\x79\x16\xfc\x58\xf8\xc7\x14\xe5\xc3\x2f\x02\x54\x0d\x6a\xca\x1a\xf7\xf6\xc8\x01\xdf\x72\x82\x01\x6e\x39\x29\xf0\x07\x8f\x1c\x40\xfd\xff\x37\xbf\x8c\xd8\xab\x38\x5d\x3f\xa2\x26\x69\x56\xd3\x4c\xcd\xb3\xcd\x6a\x15\x26\xd2\x96\x39\xb8\x8e\x93\xc7\xff\xd9\x31\x15\x8d\x86\xf3\x7f\xdf\x86\xfe\xc8\x23\xc5\x4f\xf8\xfd\x31\x76\x1e\xbe\x32\xdf\x1c\xc3\xac\x0b\x54\x0e\xb1\x25\x57\x2b\xa0\xd8\xac\x8b\x5b\x01\xc5\x4b\x01\xc5\x2b\x01\x37\x9b\x08\x1c\x48\x9d\x65\x22\xdf\x88\x62\x23\x8a\x5c\x14\x05\x7f\x2c\x6e\x45\xf1\x52\x14\xaf\xb2\x9b\x8d\x47\x8b\x8d\x5f\x69\xda\x5d\xf8\x37\xb9\x19\x86\x42\x50\x88\x33\xe0\xaf\x74\x4d\x9e\x15\x82\xd4\x42\x2a\x98\x69\x0b\x0a\x91\xda\xa1\x6c\x26\x7e\x47\x82\x5e\x84\xbe\x2d\x04\xe4\xeb\x82\xab\x63\x0e\x94\x8b\x1b\x71\x2b\x5e\x8a\x57\x22\x17\x90\x67\xb9\xc8\xb3\x10\xf8\x82\x2f\x63\x2d\x9c\xfb\xc2\xdc\xb9\x4f\xb9\x1f\xe4\xda\xe3\xac\x90\xee\xaf\xd7\xd0\xac\xfa\xae\x64\x28\x17\xb7\xe2\xfb\x2c\xcb\x16\xdc\xf2\x55\x74\xa9\x71\x8f\xb2\x1a\xcb\x30\xec\x4b\x63\x91\x32\xab\xb9\x11\xa8\xa4\x17\xcc\xfc\xd8\x31\x87\x1d\x17\xea\x85\x37\x1c\xac\xd2\x87\x30\xb2\xfc\xfe\x63\x6a\x98\xc4\x47\xbc\xc3\x35\x1b\x97\xae\xf3\xfe\xb1\x18\xee\x7b\x6c\xeb\xb5\xff\x36\xd9\x28\x46\xff\xe4\xfa\xe3\x55\x2a\xf1\x46\xbb\xdb\xef\x4a\xf8\x0c\xd5\x0e\x77\x35\x7c\x86\xc3\xae\xd9\x29\xaf\x1f\x76\xab\x9b\xeb\xca\x5e\xff\x2d\x5b\xa5\xc6\x22\x86\xed\x2a\x9b\x74\x3d\x8f\xaf\xd2\x3e\xd6\xe7\xd5\x35\x0b\xd2\x72\xf8\xbc\xc4\xaf\xd0\xbf\x2e\x61\x7d\x8f\x7b\x4e\x86\x45\x6c\x44\xa7\x11\x95\x26\x88\x2f\x64\x9d\x7f\xba\x79\x16\x1f\x66\x4d\xa9\x78\x8e\x53\xdd\xae\x43\xbf\x9a\xff\x19\x05\xd3\xe7\x25\xba\x85\x97\xab\x4b\x2f\xdf\xf9\x1d\x91\x2f\xfc\xb4\x37\x3a\xb2\x4a\x1f\x2e\x5b\xd1\x17\x72\xd8\x4b\xe7\x1e\x2b\xc8\xc5\xf8\x50\xc4\x87\x1b\xc8\xb2\x6c\xfc\x3a\xdf\xfc\xe7\x1f\xff\xf4\xa0\x71\x6b\xfd\x26\x7c\xf1\xab\x4d\x51\x7d\xb3\xe0\xf5\xe0\x70\x27\xb5\xdf\x87\xd2\x82\xf9\x16\xde\xf9\xea\x3c\x5b\x80\x62\x43\x89\x9b\x4d\xf0\x3f\xae\x5c\x3b\x5e\xcb\x77\x81\x98\x47\xd9\xb5\x73\xff\xbf\xb0\x8e\xe9\x61\xdf\xa1\x0d\x3a\x26\x8c\xc0\x72\xb0\x16\xf9\x4d\x40\x59\x4f\x9a\xe3\x52\x99\xb0\xf3\x3e\x79\x6e\x56\xec\x5f\xe9\xbc\x60\xd3\x8f\x8d\x2a\x9b\xf0\x72\x45\x8d\xd4\xfe\x6d\x2b\x40\xfa\xc9\x36\x6e\x74\x21\xce\xb0\x22\x86\x28\x83\xcc\x45\x98\x5f\x8e\xf3\x52\xf5\x7a\xb4\x0c\xe6\xf7\xcc\x0e\x2b\x35\x9c\x77\xd7\xd4\x20\x6f\x76\xa3\x90\x87\xbe\x96\xa9\xb8\xa7\x2e\x7b\x6b\x16\x53\x16\xd2\x13\x7f\x43\xe8\x86\x96\x54\xdf\x26\x2b\x6f\x9a\x18\x77\x74\x84\x5d\xa6\xfa\xec\x21\xff\x62\x62\xf8\x5d\xfc\x45\x90\x7e\xa1\xfa\x17\xa3\x74\x12\x72\x6f\xd5\x83\x24\xfc\x8d\x18\x1f\x7e\x58\x2a\x7c\xce\x1b\x3d\x9a\x64\xfd\x36\x35\x4c\x0a\xdc\x69\x23\xcc\xe2\x2b\xff\xb5\x2c\x85\xe5\xf9\xc2\x75\x59\x9d\x7e\x46\xf0\x53\x63\xfa\xe4\xcc\x60\x4b\x64\xe3\x5e\x75\x21\x23\xb2\xaa\x2c\x3a\xc7\x69\x29\x1b\xa5\xe5\x25\xec\xde\x98\xbf\xf9\x85\x8f\x5f\x82\x58\x42\xe9\x59\x96\x46\x04\x4e\xd5\x53\xeb\x9e\x82\x8d\xf8\x22\x51\x2a\x3a\x5e\x67\xc7\x1f\xfc\xce\x7f\x7a\x05\x64\xe9\xa0\x3f\xbe\x3f\xf0\xc1\x0f\xa6\x42\xf8\x35\x7c\x7f\x5b\x5c\xd1\x9f\xde\x19\x96\xd2\xf6\xa8\xa8\xd9\xf9\x5f\x19\x2c\xea\x54\xf7\xc7\x6e\x8f\x15\x56\xe9\xac\x8a\xcb\x5d\x10\x99\x80\xbc\x76\xbe\x8a\xaa\xa7\x89\x36\x1d\xc5\x0d\xab\x97\x96\xf2\xdd\xe9\x38\x0e\x8e\xef\x3e\x7f\xb7\x3a\x47\x0d\xb0\xc5\x39\xec\xdd\xfa\xe7\x45\xd8\xe2\x2b\x61\x3d\x6a\x12\xf5\x22\xd8\xcd\x25\xd8\x74\x30\x4f\xc2\x0c\x3b\x64\xf4\xc0\xab\x81\x33\x7a\x95\xde\x45\xba\x63\xce\xbe\x88\xf3\x63\xb3\x2e\x36\x73\x8d\x68\xf8\x7f\x01\x00\x00\xff\xff\xea\xb0\x6c\xde\x51\x14\x00\x00") + +func res_doc_sample_en_yaml() ([]byte, error) { + return bindata_read( + _res_doc_sample_en_yaml, + "res/doc/sample_en.yaml", + ) +} + +var _res_doc_usage_txt = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x56\x4d\x53\xdb\x56\x14\xdd\xf3\x2b\xde\xa4\x1d\x76\x36\x66\x97\xc9\x0c\xed\x2a\x6d\xa6\x8b\x26\xd3\x64\x99\x8d\x6c\x29\xc5\x1d\xd9\x72\x90\xa0\x0e\x93\x85\xe2\xf2\x61\x63\x1b\x39\x89\xc1\xc4\x98\x82\x13\x4c\x94\x2f\xc9\xe9\x4c\x41\xf8\x8b\x1f\x83\xee\x93\xbc\xe2\x2f\x74\x9e\xae\x24\x1b\x27\x34\x33\x69\x59\x19\x49\xf7\x9c\x73\xef\x3b\xf7\xde\xb7\x2c\xa4\x79\x4e\xe1\xe8\x8e\x69\x5b\x2a\x7d\x3f\x18\xaa\x75\xa7\xaa\x3b\xf5\x15\xba\xd5\xa6\x65\xc3\xa9\xee\xd3\x7c\x05\x4e\x5a\xb0\x7a\x72\xd1\x2b\xd1\x9c\x0e\x9a\x69\x77\x5b\x76\xff\xcc\xa9\xea\x8f\xb8\x94\x48\xb7\xd7\xed\xee\x31\xdd\x6b\x81\x51\xb7\x4f\x0b\x34\x37\x0a\xa6\x07\x3d\xe8\x69\x17\xbd\x92\xb3\x72\x0c\x95\x4d\xbb\x73\xe8\x54\x3f\xfa\x84\x08\x7c\xae\xe6\xa6\xa6\x40\xcb\xd1\xad\xf6\x45\xaf\x3e\x35\x45\x48\x84\x27\x24\x12\xe1\x85\x07\xdc\xa2\xa8\x10\x42\xc8\xb0\xbb\xe3\x1a\x87\x13\x98\xc3\xd5\xb2\xd3\x37\x90\x9a\x61\x10\x12\x49\xb0\xb8\x84\x94\x7e\x90\xfc\x95\x85\x11\xe8\x3f\x87\x42\x19\x1a\x1d\xfa\xc2\xfc\x97\xe8\x8b\x5e\x09\x33\x72\x8f\xd6\x9c\xdd\x6d\x64\xc3\x57\xc3\xf5\xd2\x70\xef\xa5\x53\x5f\x71\x8d\x81\xd3\x37\x7c\x1e\x89\xf1\x48\x8b\x4a\x66\xd1\x93\x47\x30\x91\x51\xc1\xea\x2b\x18\x0d\x95\xf2\xb9\x9a\x03\xcd\x1c\xaa\x75\xf7\x6c\x9d\x16\xde\xc0\xc7\x2d\xa8\x94\x69\x69\x1d\x8c\xba\x3b\x78\x0e\xeb\x9d\xdf\x64\x29\xfd\x38\x9b\x12\x1f\xcb\x0f\x45\x94\x16\xe2\x9c\xab\x39\xd4\x82\x5f\xc2\xe6\x3e\xbc\x2e\x8e\xbe\xd9\x5e\xa7\x8d\xf7\xe1\x97\x4c\x57\x9a\xe9\x12\x93\x69\x41\xf6\x64\x11\xf7\xe8\x49\x28\xcd\x35\xda\xd0\xdf\xa2\x7b\x4d\xaf\xce\x25\x04\xb6\xad\xce\x6c\x8c\xee\x35\xbd\x33\x20\x24\xf2\x03\x03\x78\x90\x14\x44\x1e\x01\x42\xe9\xae\xd9\xc2\x23\xf2\xa5\x1f\x3d\x41\x4d\x4e\x7d\x05\x3e\xd4\xa8\xf1\x37\xe4\x6b\x6e\x53\x67\xe7\x5c\xd5\x87\x6a\x0d\xb4\x13\xc8\xaf\x0d\xeb\xd5\x73\x35\xe7\x1f\x1f\xdd\x31\x69\x41\xa5\x8d\x42\x18\xe3\xab\x56\x18\xa9\xc2\xc5\x45\xc1\x57\xed\x21\x63\x9e\xb6\xd5\x61\x75\xa9\xb1\x33\x1a\x36\xd4\xab\xc4\x50\xed\x19\xac\xb6\xc2\xea\xbb\x4d\x1d\x4b\xcf\xe0\x6f\x31\xf8\xf9\xc5\x14\x97\x1e\x87\x07\xcd\x74\xcd\x6e\xe8\x4e\x5a\x78\x0e\xe5\xb6\x9f\x4a\xa5\xcc\x1c\x71\x7a\x8c\x06\x57\xb8\xf8\xb0\x6a\xb8\x67\xbb\x6e\xb3\x04\xf9\x35\x28\xfc\x15\x54\x2b\xc3\x90\x33\xd2\x02\x9a\x80\x10\x68\xe8\xa8\xc8\x79\x67\x82\xf6\xca\xb6\x36\xdc\xb3\x8a\xdb\x2c\xdd\xba\x77\xef\x0e\x6d\x94\x61\xa3\x39\xee\x86\x79\x45\xc9\xdc\x98\x99\x49\x66\x66\xe8\x66\x0b\xb4\x57\xee\xe6\x09\x0c\x6a\x3f\xdd\xbd\xfd\xf3\xa7\x36\xc0\x68\xaa\x37\xbd\x92\x14\x41\x7b\x4b\xab\x26\x2d\x3d\x19\x6f\x50\x3f\xdd\x38\x13\x15\x4f\xa6\xfd\x13\x24\xce\xee\x53\xa8\xbc\x77\xea\x2b\xc9\x0c\x34\xda\xb0\xa7\x86\x87\x8f\x6f\xc2\x33\x09\xde\xfb\x38\xbf\x30\x9c\x05\x49\x0a\x92\x9b\x4c\x85\xd6\x8e\xe9\xc1\xa9\xb3\x6b\x40\x7f\x8b\xa5\x65\xbc\xa4\xf9\x13\x2f\x71\xd3\x6d\xff\xe1\x54\x75\xd7\x6c\x85\x1f\xd8\x56\x11\xdb\x68\xa2\x69\xe1\x28\x47\xff\x6c\xd8\x96\xdf\x11\x5e\x23\x6e\x2f\xf3\xa0\x99\xb4\xf0\xda\x6d\x96\xfc\xc1\x52\x50\xa1\xa1\x87\x54\x5e\xed\x93\x4c\x5e\x32\x1d\x74\x20\x41\x00\xdb\x52\x6d\xeb\xad\x9c\x98\x17\x52\x5c\xd8\xdb\xbe\x9f\x4c\xcd\xb6\xde\xba\x4d\x36\x9a\xd8\xcc\x9a\x50\x12\x9a\x2b\x22\x8d\x7b\x0b\x01\x43\xaf\x5f\xd6\x20\x30\x0d\x42\x96\x4b\x65\xd0\xba\x68\x22\xe7\xb0\x63\x0f\x8a\x5f\x1e\x56\x22\x36\xab\x1c\xba\x27\x5f\x63\x32\xbd\xe3\xc0\xd3\x9d\xc0\xf0\xe3\x96\x58\xdc\x52\x52\xf8\xdd\x8f\xa3\xfb\x2d\xa7\x51\xa4\xfb\x15\xd4\x3a\x1e\xc1\x5a\xc1\x3c\x72\xba\x6b\x38\x97\x7d\x80\x79\xaf\x21\x04\x31\x13\x00\xa0\xf7\x2d\x03\x36\xde\xe0\x30\x7e\xda\xb7\xbb\x87\xac\xfc\xbe\xe1\x06\xf6\xa0\xe8\xcd\xe6\x6f\xbf\x5b\xe6\xa3\x42\x56\x60\x23\x9a\x17\x52\xd2\x7d\x7f\x48\x47\x59\x45\x09\x3d\x38\xa5\x65\x23\xc2\x8f\x17\x70\xe2\xcc\xd1\xaa\xde\xcc\xc1\x81\xc4\x08\x47\xa8\x89\xab\x51\x13\x5f\x8f\xfa\x39\xad\x01\x95\x22\xc8\xc1\x93\x34\x99\x8d\xc5\xd8\x16\x81\x67\xa5\x08\x6f\x5b\x87\xac\x9a\x88\x1f\xd0\x41\x25\x0f\xa7\x23\x4f\xcd\xc6\x2e\x53\x7e\x2d\x67\x44\x22\xde\x33\x25\xab\x8c\x06\xd4\xc4\xb4\x0f\xe7\xfc\x7f\xe4\x60\xfb\x26\xe0\x60\xbf\xff\x7f\x86\x6c\x4a\x0c\xb3\xc8\xa6\x3e\xb3\xd4\xbe\x44\x70\x19\x4e\x7e\x28\xb2\x1d\xb1\x28\x0b\x0b\x24\x22\x93\xd4\x23\xf6\x60\xb4\x26\xbc\xc9\x0f\xf9\x36\x7b\xef\x36\xf5\x70\x61\xcb\x0f\xc5\x89\x23\x49\x12\x3e\x8e\x68\x01\x4a\x44\x22\x7c\x9c\xf8\x0e\xc3\x97\x6c\x39\x79\xcd\x82\x9e\x9a\x9c\x1a\xa3\x0b\xc3\x87\x1d\xc8\xe9\x90\x6f\xf3\x71\x1c\x0a\x48\x3c\x41\x29\x92\xab\xfe\xbe\xb9\xd4\xef\xb0\xfa\x9a\x99\xf9\x33\x05\x5a\x22\xf2\x23\x59\x11\x52\x51\x8e\xe7\x17\x04\x59\x8e\x2e\xcd\x86\x08\xd8\xf9\x18\x7b\x33\x9b\x10\x7c\x75\x18\x30\xe3\x07\xcc\x2c\xcd\x46\xb3\xa2\x9c\xb5\xad\x0f\xe1\x19\xb8\x4d\xfd\x8b\x2c\xd1\xc4\x7c\x32\xcd\x5d\xcd\xe2\xbd\x0e\xe1\xc6\xd1\xbd\x1a\x5c\xde\x58\xa3\x01\x12\x30\x66\xc8\xf5\x18\x5b\x32\xfc\x8d\xfb\xcb\xfc\xfd\xe0\xce\x86\x2b\xe9\x7a\x0c\x17\xe8\x45\xaf\x64\x77\x5b\xe3\x5f\xd8\x56\x67\x7c\xe9\x4c\x4d\x85\x6b\x07\x77\x0e\x72\x24\x16\x17\x44\xe2\xaf\x57\x51\x4a\x88\xdc\xbc\x24\x2b\x33\xdf\xf3\x73\xe3\x36\x9b\x4e\xcc\x21\x26\xfe\x97\x9e\x9b\x8d\xc5\xa6\xa5\xb9\xc0\x72\xd3\xca\x9c\xe7\x38\x82\x5b\xe1\xc7\x9b\xf7\xe8\xf6\x29\xf4\x34\x9c\x3f\x98\x1d\xbc\xd0\x9d\x77\xe6\xe4\x68\xbf\x92\x1e\xc9\x2f\x89\xc0\x3b\xe4\x18\x29\xbb\x05\xf9\xc4\xc1\x0d\x8c\x4d\x3d\xa8\x94\xf1\x86\xea\x54\x75\x58\xd5\x69\xb1\x37\x62\x8a\xf0\xe4\x5a\x80\x1d\x8d\x46\xa7\x31\x2b\xef\xa7\x77\x15\x9c\x9b\x8d\x5d\x1b\x93\xc3\x89\x9e\x9c\x4f\x1d\x89\x04\x98\xee\x9d\xdb\x77\xfd\x7c\x6d\x6b\xc3\xee\x1d\x60\x8e\xe7\x6a\xee\x9f\x00\x00\x00\xff\xff\xc9\xe3\x28\xc8\x2b\x0c\x00\x00") func res_doc_usage_txt() ([]byte, error) { return bindata_read( @@ -43,7 +52,16 @@ func res_doc_usage_txt() ([]byte, error) { ) } -var _res_messages_en_json = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x94\x41\x6f\xdb\x30\x0c\x85\xef\xf9\x15\x84\x81\xa0\x97\x2c\xc0\xb6\x9b\x8f\x2b\xba\x61\xc0\x2e\x6b\xd7\xd3\x3a\x08\xaa\x4c\x3b\x02\x1c\x2a\x15\xe9\x25\x41\xd1\xff\x3e\x50\xb6\xb7\x62\x88\x6c\x6f\x97\x1c\xcc\x4f\xef\x89\x8f\x62\x9e\x57\x00\x45\x6b\xa9\xe9\x6c\x83\x45\x09\x05\xd2\x9b\xfb\xbb\x62\xa3\x9f\xf7\xc8\x6c\x1b\xe4\xa2\x84\xef\x2b\x00\x80\xe7\xf4\x0b\x50\xf8\x4a\xd1\x4e\xab\x09\x4d\x1f\x25\x5a\xe2\xd6\x8a\x0f\xa4\xd5\x7b\xad\x96\x45\xaa\xbe\x6c\x2e\x9d\xc7\x93\xdd\x1f\xda\xbc\xc2\x4d\x5f\x9f\xd4\xa8\x43\x34\x73\x3a\xb8\x6d\xb6\xb0\xe6\x29\x19\x09\x62\xdb\xac\xc0\xb7\x54\x1d\x8f\x5f\x3a\xff\x88\x8d\x27\xe3\x02\xd5\xbe\xc9\xca\x7c\x50\x08\x24\x40\xcf\x6d\x40\xce\x07\x84\x2b\x3c\x79\xb9\xd2\xcf\x4f\x9d\x97\xed\x64\x60\x24\x18\xcd\xef\x69\x65\x73\x53\x0c\x64\x87\x30\xa2\x70\x0e\x1d\x1c\x2d\x89\xda\x74\x8c\xe5\x03\xbd\xdd\xc2\x0d\x35\xad\xe7\x1d\xac\xf9\x81\xde\x6d\xe1\x7a\xe7\x09\x19\x67\x92\x72\x5d\x8c\x48\x32\xd7\xeb\x75\x8f\x0d\xad\x96\x93\xe1\x71\xe7\x1c\x32\x1b\x09\x26\xa2\xad\xb2\x9a\x03\xa7\x3d\x28\x07\xb5\x6f\xe7\x6e\x5b\x5b\xdf\x8e\xba\x46\xf9\xac\xf8\x47\xeb\xdb\xbf\x95\x27\x87\x31\x4a\x1f\x6c\x64\x5c\xa6\x9d\xd0\x34\x18\x17\x48\x34\x9e\x50\xff\x87\x57\xb4\xa4\x5b\x99\x73\x5b\x33\x78\x06\x0a\x02\xb7\xc8\xb7\x89\x85\x3a\xc4\xbd\x95\x0d\x48\x3c\xff\xb9\x88\x65\x25\x3e\x13\xcb\x2b\xf7\x4b\xf6\x0d\x12\x46\x2b\x68\x22\xba\x10\xab\xbc\xf5\xa7\x01\x84\x75\x05\x03\xab\x76\x43\x8b\x1b\xe0\x03\x52\xa5\x45\x46\xb7\xac\x63\x17\x88\xd0\x89\xe1\xa7\xd6\x4b\x3e\xe1\x7a\x48\x38\x1c\x90\xe0\xee\xeb\x17\x2f\xbd\x21\xc6\x18\x62\xb9\x34\x5e\x3c\xa1\x33\x4f\x1d\xc6\xf3\xac\x91\xa2\x90\xd0\x7f\x9c\x5d\x38\xce\x6a\xf7\xd3\xe9\x3b\x7e\x0f\x31\x1c\x97\x5a\xb0\xfd\x89\x06\x4f\x0e\xf3\x7f\x65\xa3\x87\xa2\x90\xd0\x12\x16\xcd\x21\xa2\x3e\x00\xb1\x8f\x13\xef\x7c\x14\xef\x61\x48\xf0\x32\x79\x4f\x8c\x51\x4c\x65\xc5\xce\xaa\xf7\x2c\x28\x3b\x23\xee\x5b\x34\x6e\xa7\x1b\x60\xc4\xef\x27\xee\xad\xef\xb3\x07\x41\x41\xdd\x9f\x65\x0b\x71\xb6\xfb\x7c\xd6\xaf\xb7\x41\xc1\xb4\x07\x0c\x9e\xf2\xbb\xb0\x02\xf8\xb1\x7a\xf9\x15\x00\x00\xff\xff\x44\x3d\xa9\x66\x95\x07\x00\x00") +var _res_doc_usage_en_txt = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x57\xcd\x6e\x1b\x37\x10\xbe\x07\xc8\x3b\x0c\xec\xc0\x27\x69\x25\xdd\x82\x00\x6e\x11\x04\xf9\x2b\x9c\xda\x88\x9d\xa2\x01\x72\xe1\x92\xb3\x16\x1b\x2e\xb9\x21\xb9\x8a\xd6\xaf\xd6\x43\x1f\xa9\xaf\x50\xcc\x90\x5c\xed\xda\x6a\x02\xa4\x68\x4e\x5a\x9a\xf3\x7d\x33\xc3\x8f\xdf\x30\x7f\xff\xf9\xd7\x93\x3b\xf5\xf8\xd1\xe3\x47\x77\x68\x95\x88\x02\x74\x00\x01\xb7\x68\xd1\x6b\x09\xbc\xc2\x1f\x22\x3a\x5f\xc1\x47\xd7\x83\x14\x16\xfa\x80\xf0\xf1\xf9\xbb\x0b\x68\xb4\x41\x88\x0e\x14\x36\xda\x22\xc4\x2d\xa6\x98\xc6\xf9\x56\x44\x10\x56\xf1\xde\x02\x1e\x1d\x48\x8f\x22\x22\xe8\x58\x11\xeb\x95\xf0\xa2\xc5\x88\x3e\xd0\x17\xc0\x52\x01\x2c\x97\x0a\x1b\xd1\x9b\x08\x00\x70\x43\x88\xf9\x53\x3a\xdb\xe8\xdb\xc4\xd9\x38\x3f\x65\xaa\x38\x58\x52\x70\xde\x55\x82\x65\xef\x3d\xda\x6f\x06\x2f\x38\x4f\x1d\xb9\x34\xb7\x43\xef\xb5\x4a\xb5\xe4\x20\x6d\x53\x65\x39\x0f\xc2\x48\x84\x8e\x08\x5d\x1f\xbb\x3e\x8e\x84\xcc\x60\x45\x8b\xe0\x9a\x43\x43\x72\x13\x51\x1d\x9a\x18\x3a\x94\xba\x19\x78\x4f\xc6\xc8\x6d\xab\xd3\x22\xee\x23\xda\xa0\x9d\x65\x38\x66\x7c\xf0\xef\x95\xf3\x80\x7b\xd1\x76\x06\xe1\x8f\xe0\xec\x02\xf6\xad\xe1\x7a\xc2\x17\x53\xa5\x8c\x22\xee\x63\xca\x22\x17\xe2\xbc\xbe\xd5\x56\x98\xc2\xa7\x43\x49\xa0\x1e\x4a\x95\xa9\x40\x4b\x05\x1a\x6d\x31\xc0\x58\xa0\xed\xdb\x1a\x3d\x55\x97\xfe\xe0\x1a\x28\x87\x5b\xe3\xb4\xd0\xe9\xd9\xe9\x00\x9b\x75\x95\x0f\xf9\x15\xa1\x36\x1a\x8d\x2a\xa8\x3a\x40\x57\xa4\xc0\xcd\xa9\x91\x84\xa3\x08\x74\xda\x27\x0e\x0a\x0b\x08\x48\xdb\x23\x2a\xca\x58\xba\xb6\x15\xe1\x01\x9f\x30\x26\xef\x4f\xb5\x44\x62\x8d\xa2\x36\x98\x58\xdf\x36\x47\x5a\xaf\x03\x35\x6e\x01\x7d\xd0\xf6\x96\x34\x71\x2f\x81\x14\xcf\xc7\x1b\x1d\x68\x1b\xd0\xc7\x52\x7e\xa2\x79\x43\x34\xdb\xbe\x15\x36\xd1\x5c\x26\x7c\x01\x1e\x85\xe2\xe8\xa2\xba\xce\x6b\x1b\x0f\x65\x31\xea\x62\xbc\x33\x99\x0d\x3e\xe3\x90\x92\x30\xf9\xce\x00\x2c\x3d\x71\x78\x94\xbd\x0f\x7a\x87\x00\xef\xc7\x9f\xad\x53\x38\xef\x04\xad\x40\xee\xaf\x31\x68\x16\xa4\x82\xaf\x5b\x2d\xb7\x80\x42\x6e\x33\xb7\x71\xae\x0b\xa0\xad\xc2\x0e\xad\x42\x1b\xcd\x70\x5c\x70\x04\xbd\x13\xa6\x67\x79\x8b\x1c\x9d\x75\xe5\x67\x69\x40\xc2\x0a\xe0\xe8\xaf\x22\x96\xfb\xd0\x79\xdc\x69\xd7\x87\x14\xbb\x28\xb9\x58\xea\x4d\x48\x38\xc2\x2a\xd7\x72\x5b\x4b\xc5\x1d\x55\xdc\x39\x1f\x73\x1a\xef\xfb\x44\xf9\xe6\xe6\xe6\x2a\x11\x60\x3e\x27\x8d\x0a\x68\x63\xee\x42\x96\xfd\x2f\xd7\x97\xbf\x96\x33\xce\xfa\x72\x75\x14\xda\xa2\x82\x9d\x16\xb0\x8d\xb1\x7b\xb6\x5a\xe9\x6e\x95\x83\x8f\x16\x7f\x69\xcd\x30\xbb\xcf\x74\x39\x49\x32\x7d\x47\x51\xa8\x92\x04\x6a\x4a\xb6\xd6\x36\xcb\x1b\x2e\x74\x88\x68\xe1\xed\x15\x08\xa5\x3c\x86\x80\xa1\x82\xe7\xc6\xcc\x56\x40\x78\x04\xc3\x3b\x93\xac\x67\x17\xf1\x3d\x9f\xb8\x73\x71\x72\x0c\xfc\xa9\xb4\x47\x19\x9d\x1f\xe0\xeb\x16\x2d\xf8\xde\x5a\x52\x2e\xf5\x25\x75\x40\x1a\xcd\xfe\x27\x2c\x48\xba\x12\x13\x5f\x63\xab\xea\xad\x42\x9f\xda\x3e\xc3\x3b\x7e\xfc\x6f\x1b\xb0\x2e\x1e\x5a\xbd\x80\x28\x3e\x67\xe3\x9f\x66\xe2\xd3\xda\x9d\x02\xdc\xa3\xec\xd3\xb5\x61\x3e\x1d\xc0\x38\x29\x52\xb3\xb8\x36\x4d\xb5\x69\x5b\x4c\x14\xae\xf3\x7d\x13\x74\x15\x21\xc8\x2d\xb6\x22\xc5\xd2\xdd\xc8\xf7\x95\xd0\x79\x04\xdd\x37\x76\x16\x35\xf3\xfd\xcb\x21\x92\xff\x5a\x9c\x7b\x0b\x19\x7f\xc2\x3d\x54\x51\x0f\xd9\x05\x96\xae\x64\x8a\x94\x69\xb1\x5b\x00\xb8\x1a\x6f\xf0\x74\xea\x4d\x33\xca\x9a\xcf\x31\xe9\x2c\x4d\x32\xd5\x10\x27\xf2\x60\xb7\x1a\x65\x34\x85\xcb\xee\xb5\xa3\xa0\x9d\xc6\xaf\x39\xe8\x37\xfa\x99\xa6\x52\x14\xda\x50\x0c\xcd\x60\xcd\x92\xe4\xab\xf9\x60\x3c\x6e\xd9\x99\xd0\x74\x19\x22\x65\x4f\x0b\x5c\xdf\x0b\xb2\x51\xab\xe0\x82\x26\xf9\xcb\x94\x30\x8f\xe5\x27\x3f\xdd\xa9\x0a\xf7\x48\xd3\x59\x61\xeb\x56\x45\x99\x83\x68\x0d\x9c\xc2\xeb\x6c\xf9\xb0\x59\xdf\x1b\x09\x42\x4a\xe7\x15\xf5\x30\xba\x07\xc2\x3b\x5c\xd7\x7a\x80\x25\xa9\xe1\x40\x24\xff\x3f\x22\x59\x7d\xaf\xa2\xc2\x1e\x31\x94\x15\x0b\x9b\xf5\x1a\xe0\x14\x3e\xb0\x22\xd8\xc6\xc6\x79\xe5\x1a\x0a\xa1\xd6\x2d\x15\x88\xa4\x87\xc0\x13\x42\xf3\xd8\xfe\x61\xbe\xa5\x03\x5e\x8b\x7b\x92\xca\x69\x19\x25\xc5\xd3\xee\x8d\xf1\x1f\xaf\xab\xf0\xd0\x03\xe2\x08\x0f\x79\xe7\x7f\x07\xa7\x77\xc9\x11\xf0\xdf\xdf\x5d\x7c\x1f\x7b\x8e\x44\xae\xb0\x8c\x34\x24\x3d\x2c\x03\xb4\x03\x2d\x4c\xb1\xf9\x00\xbe\x98\x3c\x9e\x91\xe6\x53\x96\x45\xf2\x21\x8a\xbc\x77\x2e\x1a\x54\x9d\x80\x1d\xa8\x1a\xa6\x62\x1b\x1f\xba\xe1\x9e\xbf\x90\x9c\x3a\xe1\x59\x11\x39\x9a\x1f\x5e\xd1\x25\xf7\x6b\xc7\x87\x63\x3d\xb3\xd5\x29\xaf\x39\x62\x50\xe9\xdf\xe9\xc1\x17\xea\x5e\x1b\xb5\xd4\x36\x3f\x34\x86\x0e\xc3\xac\x67\x3b\x08\x43\x88\xd8\x56\x79\x98\x54\xbb\xcd\x08\xc2\x3e\x71\x88\xa3\x94\x46\xb8\x97\x7b\x89\x26\xdf\x11\x06\x58\x65\x80\xd5\x6e\x53\xed\x4d\xd8\x7f\x8f\xa5\x92\x5b\x6d\xc5\x8c\x45\x47\x6c\x99\x25\x81\x87\x2d\x62\x84\x13\xde\x77\xc2\xb5\x5f\xa3\xdf\x69\x39\x3a\x0c\xb7\xa3\x50\x74\xf0\x74\x4d\xb3\x4e\x3d\xfb\x74\xa7\x3e\x95\x97\xfc\x69\x19\xa0\x3c\xff\x9f\xae\x2b\xf8\x10\x70\xbe\x47\x84\x71\x82\x25\x2f\x4b\x43\xef\x85\x30\x86\x09\x64\xef\x4d\x99\xf1\xc6\x49\x23\xb6\x2e\xc4\xd5\xcf\xea\x7c\xaa\xb3\x33\x79\x9e\xe0\xd2\x97\x3d\xdf\xac\xd7\x67\xee\xbc\x68\xee\x2c\x9e\xb3\xe4\xe0\x74\x9c\x50\x2c\x34\xf4\x3b\x7a\xb4\x4e\x0c\x87\x1e\x14\xaf\x5f\xde\x54\xdf\x20\x4e\xb4\x33\xfa\x34\x80\x26\x74\xa4\xb1\x4c\x59\x4e\x73\xfc\xff\x12\x3f\x16\x43\x79\xca\x34\xbd\x31\x23\xdb\x52\xc1\x49\xc1\xaf\xaa\xea\x2c\x65\xc6\x3f\xd9\x34\xcf\x37\xeb\x93\x49\x4a\xc2\x70\x4a\xc7\x04\x78\x73\x30\xd2\xf2\x26\xef\x8c\x13\x2a\xbf\x99\xae\x2e\xaf\xa9\xc6\x7f\x02\x00\x00\xff\xff\x74\xcc\x5b\xd5\x44\x0e\x00\x00") + +func res_doc_usage_en_txt() ([]byte, error) { + return bindata_read( + _res_doc_usage_en_txt, + "res/doc/usage_en.txt", + ) +} + +var _res_messages_en_json = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x96\xcd\x6e\x1c\x45\x10\xc7\xef\x7e\x8a\xd2\x4a\x4b\x14\xb1\xac\xe3\x70\x1b\x29\x42\xc2\x18\x14\x29\x07\xb0\x93\x03\xc2\xa8\xd5\x9e\xa9\x99\x6d\xa9\xb7\x7b\xdc\x55\x63\x7b\x89\x22\x99\x08\x84\x10\xb9\xf1\x25\x71\x07\x99\x83\x65\x6e\xe1\x10\xe0\x61\x48\x9c\xe5\x94\x57\x40\xd5\x33\x0b\x0e\xf2\x7c\x98\x5c\x56\xda\xae\x5f\xff\xff\xdd\x55\x5d\xdd\x73\x7f\x0d\x60\x64\xb5\x2b\x2a\x5d\xe0\x28\x81\x11\xba\x37\xee\xed\x8c\x26\x32\x3c\x47\x22\x5d\x20\x8d\x12\xf8\x68\x0d\x00\xe0\x7e\xfc\x05\x18\x99\x4c\xd0\x4a\xa2\x11\x8d\x83\x1c\xb4\x23\xab\xd9\x78\x27\xd1\x7b\x12\x4d\x46\x31\xfa\x60\x72\xd9\x7c\x3c\xd2\xf3\xd2\xb6\x2b\x6c\xd5\xf1\x4e\x8d\xdc\x07\xd5\xa7\x83\xd3\x62\x0a\x63\xea\x92\x61\xcf\xda\xb6\x0a\xdc\x8d\xd1\xd5\xf4\xcb\xe6\xef\x61\x61\x9c\x4a\xbd\xcb\x4d\xd1\x2a\xf3\xb6\x40\xc0\x1e\x6a\x6e\x02\xbc\x28\x11\xae\xe1\x91\xe1\x6b\x32\xbc\x5f\x19\x9e\x76\x26\xcc\x31\x06\xf5\x4f\xb5\xda\x7c\x36\xae\xc3\xf2\xec\xf1\x5f\xc7\x5f\x9e\x7f\xf5\xf3\xf9\xc3\x93\xe5\x4f\x9f\x3e\xfd\xed\x8f\xe7\xdf\x9c\x3c\xff\xe1\xb3\xe5\xd9\xe9\xf2\xe4\xf8\xc5\x93\x47\x4f\x7f\x3d\x3d\xff\xee\x8b\xe5\xd9\xe3\xe5\xef\x5f\x3f\xfb\xfc\xc7\xf3\x6f\x7f\x79\x76\xfa\xfd\xc6\x9f\xc7\x0f\x77\xdd\xcd\xeb\xf0\xbe\x45\x4d\x08\x84\x16\x53\x06\x9e\x21\xac\x4c\xa7\x70\xdb\x95\x15\xc3\x4d\xc8\x7d\x80\x2d\x57\x58\x43\xb3\xce\x45\xa7\x55\x08\xe8\xb8\x2f\x39\x9b\x35\xd6\xe4\x26\xe9\xcc\x36\x55\x69\x8a\x44\x8a\xbd\x0a\xa8\xb3\x56\xcd\x86\x93\xdc\x0a\x07\xb9\xb1\xd8\x73\x10\x72\x6d\xec\x4a\x57\x09\xdf\x2a\xfe\xae\x36\xf6\xbf\xca\x9d\x89\x58\x49\x1f\x06\xc3\x38\x4c\x3b\xa2\x57\x12\x2f\x75\xa0\x81\xe2\x11\x8d\xc5\x4d\xbd\x63\xc9\xbd\xcf\xff\x87\x57\xd0\x4e\xee\x88\x36\xb7\x31\x81\x21\x70\x9e\x61\x1b\x69\x3b\xb2\x72\x74\xe6\x9a\x27\xc0\x61\xf1\xef\x42\x34\x09\x71\xdb\x11\x5f\x70\xbf\xcc\xbe\x40\x87\x41\x33\xaa\x80\xa9\x0f\x59\xbb\xf5\x7b\x0d\x08\xe3\x0c\x1a\x56\xec\x9a\x2d\x4e\x80\x4a\x74\x99\x04\x09\xd3\x61\x3b\x4e\xbd\x73\x98\xb2\xa2\x7d\x6b\xb8\x3d\xc3\x79\x93\x61\x5f\xa2\x83\x9d\x0f\xee\x48\x11\xc5\x10\x43\xf0\x21\x19\x9a\x5e\x3c\xc2\x54\xed\x57\x18\x16\xbd\x46\x82\x42\x44\xaf\x58\x3b\x7f\xd8\xab\x5d\x57\xa7\xde\xf1\x9b\x10\xfc\xe1\x50\x0b\xd2\x07\xa8\xf0\x28\xc5\xf6\x8b\x75\xe5\x21\x28\x44\x34\x81\x21\xd2\x59\xf0\xa5\x62\xbd\xd7\x71\xca\x57\xd2\x82\x42\x44\x5f\x2e\xc1\xa0\x72\x07\x94\x73\x36\xcc\xa8\x86\x6b\xab\x61\xbb\x30\x8e\x30\xb0\xca\x34\xeb\x5e\xf5\x9a\x05\x61\x7b\xc4\x8d\x45\x95\xce\xa4\xd1\x14\x9b\x79\xc7\xba\xa5\x0d\x6a\x10\x04\x94\x36\x1d\xd6\x77\x0b\x3d\x6f\x2f\xe9\xc5\xa6\x13\x30\xb6\x1b\x81\x71\x57\x6c\x39\x62\x1d\x58\x11\x86\x03\x0c\xad\x66\x3b\xcd\x05\xbf\xf0\x10\x79\xf8\x04\x9d\xa4\x08\x66\xcc\x25\xc8\x64\x93\xe2\x04\xca\x20\xd0\xe6\xdd\xed\x3b\xaf\x6f\xd6\xed\x62\x88\xa7\xb0\xeb\x3e\xf4\x15\xcc\xf5\x02\x2a\xc2\x38\x25\x59\x5f\x1f\x53\x32\x6e\x5e\x0c\x0e\x06\x0f\xea\x1b\x52\x44\x5f\x3c\x79\x24\x6f\x5e\xf3\xb5\x91\xc0\xae\x83\xb4\x0a\xf6\xa5\x89\xeb\x6f\x65\x98\xeb\xca\xf2\xad\x0c\xe7\x7e\xbd\xf9\x33\x95\x44\xbc\x56\xbf\x6c\x75\x80\x91\x9a\x51\x6b\x1c\xd2\xad\x8d\x1b\x37\xba\x5f\x7e\xe9\x8d\xee\x93\xb2\x25\x08\xbc\xa3\x59\x0f\x54\x52\x1b\x3d\x5a\x3c\xd3\xf1\x3d\x66\x6d\x1c\xc1\x1e\x5a\x7f\x08\x34\x43\xec\xf9\x48\x79\x35\x83\xec\xc2\x06\xd6\x00\x3e\x5e\x7b\xf0\x77\x00\x00\x00\xff\xff\x30\x3d\xf2\xf8\xa3\x0a\x00\x00") func res_messages_en_json() ([]byte, error) { return bindata_read( @@ -52,7 +70,7 @@ func res_messages_en_json() ([]byte, error) { ) } -var _res_messages_zh_json = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x94\x5f\x4f\x1a\x4b\x18\xc6\xef\xf9\x14\x13\x12\xe2\x0d\x31\x39\xe7\xd2\xfb\x73\x71\x92\x73\x73\xec\x65\x6d\x36\xe3\xf2\x82\x9b\x2c\xb3\xba\xb3\xb4\x58\x63\xb2\x31\x35\xa2\x40\x35\x05\xc4\xfa\xa7\x68\x5b\xaa\x6d\x02\x8b\x89\xb1\x2b\x2e\xf8\x61\xba\x33\x0c\x57\x7c\x85\x66\x17\x35\xda\xb0\x0b\xd1\x1b\x12\x66\xde\xfc\x9e\x79\x9e\xf7\x7d\x77\x25\x82\x50\x54\xc5\x24\x95\xc1\x29\x88\xce\xa0\xe8\xdb\x85\x68\xdc\x3b\x4b\x03\xa5\x38\x05\x34\x3a\x83\x5e\x46\x10\x42\x68\xc5\xff\x45\x28\xaa\x24\xbc\xba\x8c\x77\xeb\x97\xfa\x87\x86\x8e\x09\x55\xb1\xa1\x68\xc4\xbb\x65\x76\x93\x6d\x7d\x1f\x38\xfb\x51\xbf\x60\x35\x3e\x0a\x01\x59\x9c\x5e\x54\x83\x21\xae\xdd\x75\xbb\xf9\x31\x90\xa4\xa6\x4b\x63\x41\xdd\x3c\xfb\xb6\x86\x62\x34\x0c\x34\x0f\x29\x85\x48\xb2\x46\x92\x4a\x2a\xd8\x97\x63\xb2\xd3\x7c\x7f\xbd\xd8\xeb\x34\xe3\x48\x74\x4b\x6c\xbd\x3e\x05\x59\xc5\x98\xea\x9b\x26\xdb\x68\xff\x32\xd7\x42\x1d\x13\x03\x74\xe9\x3e\xee\x20\x15\x61\xfd\x1c\xa2\xdd\xce\x31\x3f\xac\xf1\xc3\x03\xb7\x73\xd3\x2b\x9f\xf5\xf6\xdf\x09\xab\x21\xce\xcc\x99\x39\xf2\xd7\x34\x12\xf9\x73\xbe\xbb\x81\x62\x74\x8e\xfc\x3d\x8d\x5c\xbb\x31\xfc\x17\xf6\x00\x39\xa3\xeb\x40\x8c\xb1\x36\x3b\x25\xb6\x59\x1c\xda\x7c\x98\xff\x28\x24\xcd\xc8\x32\x50\x2a\x19\x9a\xa4\x03\x4e\x84\x98\xba\x66\xdb\xbb\x7c\x77\xc3\xbd\xbe\x8c\x51\x9e\xdb\x61\x5b\xb5\x31\x71\x25\xb1\xa2\xde\x71\xa5\xa4\x12\xd2\xe1\xc7\x70\xf6\xf5\x5c\x5c\xd4\x27\x84\x2f\x62\x9d\xc2\x18\xfa\xe9\x17\xfe\x69\xe7\x19\x74\x1d\x13\x6f\x95\x82\xf8\x31\xea\xda\x45\xbe\x67\xcd\x02\x9d\xf5\x2b\xf9\xb1\xc3\x9c\xed\x81\x53\x60\xad\x23\x61\x55\x86\xfa\xae\xdd\x9e\x05\xfa\x2f\xa1\x06\x65\xd6\x95\x38\x3f\x79\xf8\x84\x51\x6f\x48\x01\x01\x1d\x1b\x20\xe9\x20\x6b\x7a\x22\x58\xbf\x57\xae\xf1\xdc\x4e\x2c\xe1\xda\x3f\x44\xb3\xc5\x3a\x15\x96\x6b\xdd\xb9\x1d\x38\x05\x61\x56\x79\xf5\x32\x96\xe8\x9d\x7e\x98\xd0\xb5\xac\x11\x02\xb2\x21\xd1\x25\x55\x31\x82\x73\xe5\x9b\x25\xe6\x98\x2f\xfe\xff\x4f\x31\x80\x57\x5a\xbc\xd8\x64\xed\xd2\x5d\xc0\x03\xa7\xd0\x2f\x7f\x14\x96\x35\x70\xf6\x63\x74\x42\x61\xc8\x82\x2c\x2d\x65\x40\x5f\x0e\x14\xbd\x95\xab\xd5\x85\xf5\xf9\x5e\x49\x58\x0d\xb6\x5d\xf7\x95\x9e\xa4\x7b\xdb\x66\xed\xcd\x18\x59\x71\x52\x18\x36\xf3\x0f\x8f\x13\x0b\x51\xfc\x1a\x24\xc8\xca\xa0\x06\x7f\xed\x6e\x8e\x58\x63\xef\x1f\xaf\xe6\x19\x49\xca\x3a\x78\xa3\x63\xe0\xf9\x90\xc5\x60\xb9\x03\x76\xdd\x16\x27\x67\x4f\x6b\x9a\xa2\x82\x24\x2f\x78\x13\x2f\x19\x4a\x3a\x64\x4e\xfc\x59\x74\x6f\x9a\xbc\x7c\xc5\xab\x97\xfd\xea\x85\x6b\xb7\x1f\xe3\x43\xe7\x7f\x19\xa7\x83\xe3\x7a\x30\xfc\x5e\xdd\xad\x56\xfb\x7d\xef\xa0\xc9\x3a\x15\x6f\x35\x1b\x71\x34\x72\x05\x22\x08\xbd\x8a\xac\xfe\x0e\x00\x00\xff\xff\x1f\x94\x8c\xc0\x42\x07\x00\x00") +var _res_messages_zh_json = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x96\x4d\x6f\x1a\x47\x18\xc7\xef\xfe\x14\x23\x24\x1a\x45\xb5\xec\x38\x47\x4b\x51\x0f\x51\x0e\x91\x72\x68\xdd\xde\xea\x6a\xb5\x59\x1e\xf0\x4a\xeb\x59\x32\x33\x24\x4e\xa2\x48\x5b\x5a\xc7\x2f\x40\x40\x35\x98\x98\xc4\xb5\x69\x83\x4d\x5a\xc1\x92\x2a\xb2\x31\x2c\xe6\xc3\x64\x67\x18\x4e\x7c\x85\x6a\x79\xb1\x9c\xc8\x0b\xc8\xb9\x20\x31\xf3\xe8\xf7\x7f\xde\x67\x9f\xcf\x20\x14\x30\x54\x1c\x89\xa9\x11\x08\x2c\xa2\xc0\xb3\x95\xc0\xac\x77\xb6\x0a\x94\xaa\x11\xa0\x81\x45\xf4\xf3\x0c\x42\x08\x3d\xef\xff\x22\x14\xd0\x43\x9e\x5d\xcc\xbb\xed\x9b\xf6\x0f\x19\x51\x31\x35\x54\xa6\x9b\xd8\xbb\xe5\xf5\x2a\xdf\x7e\xdf\x73\x0a\x81\xbe\xc1\x8b\xd9\xab\x10\xb0\xa6\xae\x46\x0d\x7f\x88\x5b\x3f\x77\xcf\x13\x13\x20\x61\x93\x28\x13\x41\xe7\x09\x7e\x14\x47\x41\x3a\x0e\xf4\x10\x22\x3a\x56\x34\x13\x87\xf5\x88\x7f\x5c\x8e\xc5\x8f\x13\xdd\xf5\x54\xa7\x55\x9d\x45\xf2\x7c\x87\xaf\x97\x6e\xc0\x9a\xce\x6e\x74\x2d\x8b\x6f\x34\x3e\x59\xf1\xb1\x11\x63\x06\x44\xb9\x48\xb7\x9f\xca\xc2\x4d\x24\xed\xd3\xae\xb5\x25\x12\xef\x45\xbc\x2c\x8f\x7e\x75\x5b\xed\x4e\xb6\xdc\x29\xfc\x2e\xed\x8a\x2c\x5b\x3d\x27\xe9\xd6\x2b\x62\x77\x43\xda\xa7\x03\x27\x44\xae\xc6\x2b\xf9\x85\x4f\x56\x7c\x19\xdf\xbe\x89\xbe\x37\x40\xa5\x80\x28\x18\xa0\x31\xc4\x56\x00\x8d\x44\xe7\xd0\x7d\x1c\x8d\x31\x74\x1b\x85\x4d\x82\xee\xe1\x88\xa1\xd3\x95\xb9\x71\x4e\x6b\x31\x42\x00\xb3\x89\xa9\x69\xed\xf0\xad\xd4\x20\x35\x97\x6b\x76\x15\x92\xc6\x34\x0d\x28\x55\x98\xa9\x10\x50\x43\xbe\x4c\x69\x37\x79\x7a\x57\xec\x6e\xb8\xcd\x93\x20\x15\x9b\x19\xbe\x7d\x30\x21\xc5\x61\x55\x37\x46\x5c\x25\xac\x8f\xe9\x8a\xcf\xe1\xfc\xdd\x07\xf9\xb1\x34\x25\xfc\x09\xd1\x19\x8c\xa7\xf3\x97\x7b\xd7\x42\x47\x55\x42\x27\xa0\xe5\xf1\xdf\xe2\xcf\xcc\x57\xd0\x89\x8a\xbd\xc9\xf6\xe3\x07\xa9\x5b\x4f\x89\xd7\xf6\x12\xd0\xa5\xbe\xa5\x38\x74\xb8\x93\xee\x39\x49\x5e\xdb\x97\x76\x6e\xa0\xef\xd6\x1b\x4b\x40\xef\x63\xca\x28\xb7\xcf\xe4\x87\xe2\x65\x17\xae\xf2\x21\x02\x18\x88\xca\x40\x21\xa0\x99\x24\xe4\xaf\xdf\xc9\x1e\x88\xcd\x4c\x30\xe4\xd6\xff\x91\xd5\x1a\x6f\xe5\xf8\x66\x6d\x14\x6d\xcf\x49\x4a\x2b\x2f\xf2\x27\xc1\x50\xe7\xf8\x8f\x29\xa3\xd6\x4c\x8c\x41\x63\x0a\x7d\x64\xe8\xcc\x3f\xaf\x62\x6b\x87\x3b\xd6\x8f\x3f\x3c\xd0\x19\x88\x5c\x4d\xa4\xaa\xbc\xb1\x33\x4a\x70\xcf\x49\x76\xb3\x7b\xd2\xb6\x7b\x4e\x21\x48\xa7\x14\x86\x35\xd0\x94\x47\x31\x20\x4f\x7d\x45\x87\x72\x07\x25\x69\xff\x75\xa1\x24\xed\x0a\x4f\x97\xfa\x4a\xd7\xd2\x1d\x96\xd9\x7c\x32\x41\x56\x16\x93\x83\x62\x7e\x11\xe3\xd4\x42\x54\x7d\x0c\x0a\xac\x69\x60\xf8\x2f\xdf\xf6\x3e\xaf\xbc\xbe\xe7\xd9\x7c\x45\x26\x43\xc4\x8c\x2a\x4c\x7d\x38\x6e\xe2\x36\x0f\xbb\x7b\xef\x64\xb1\x7c\x75\xc9\xa6\x6a\x14\x02\x5e\x83\x4e\xd2\x79\xc3\x9b\x0d\x5f\x9d\x49\x01\xe9\x06\x28\xda\x8a\x37\x57\x0a\xd3\x57\xc7\x74\x63\xbf\xe3\xdd\x76\x55\x64\xcf\x44\xfe\xa4\x9b\xff\xe8\xd6\x1b\x9f\xe3\xc7\x4e\xd9\x53\x75\xd5\xbf\x28\x97\x46\xcc\xb3\x1b\x6a\x35\x5e\x75\xde\x54\x79\x2b\xe7\x2d\x80\xca\x2c\x9a\x7e\xd0\x28\x53\x09\x53\x28\x90\xc7\x40\x7c\x35\x9f\x01\x0e\xa9\x4c\x45\x2b\x8c\x45\xc5\xdb\x14\xdf\x2e\xf2\xd3\xff\x3a\xcd\xf4\x60\xad\xcb\x76\x46\x16\x93\x3d\x27\x29\x92\x5b\x77\x7f\x5a\x7a\xf0\xed\xdd\x6e\xb6\x2a\x5e\x95\x07\x8f\xea\x32\x16\xf1\x32\x4f\xdb\x6e\xb3\xd4\xb5\x0a\xb2\xbd\xe1\x41\x16\xe7\xe7\x83\x74\x31\x48\xf9\xdb\x1a\xdf\xb7\xc4\x7e\x49\xd6\x7e\xeb\x64\xcb\x1e\xc3\xce\xf2\xa3\x78\xcf\x29\x2c\x63\xa4\xc5\x88\x81\x2e\x9b\xcf\x7f\x17\x82\xb0\x1a\x33\xd8\x9d\x10\xac\x9a\xf3\xc3\x3f\x73\x5e\x1e\xbe\x19\xbc\x71\x83\x0b\x06\x74\x78\x6a\xe8\x18\xe8\x9d\x85\x5b\xb7\xc6\xbe\x93\xfd\x31\x50\xbc\x10\x7d\x53\xd0\x9f\x82\xc1\x6a\x11\x8d\xcc\xa4\x8f\x85\x0b\x9e\xb2\x30\x25\xd1\x5b\xd1\xc9\x75\x9e\xf9\xd7\x6d\x96\xdc\x7a\x42\x16\xcb\xe2\xd0\x99\xd2\xe9\xeb\x8a\xf0\x97\xeb\xbc\x7a\x36\x12\x99\x41\xe8\x97\x99\x17\xff\x07\x00\x00\xff\xff\xf1\x85\xb7\xc9\x56\x0a\x00\x00") func res_messages_zh_json() ([]byte, error) { return bindata_read( @@ -61,7 +79,7 @@ func res_messages_zh_json() ([]byte, error) { ) } -var _res_res_go = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x99\x4b\x6f\x1c\xc9\xf1\xc4\xcf\x33\x9f\x62\xfe\x04\xf6\x0f\x12\x10\xb8\xfd\x7e\x2c\xa0\xcb\x2e\x7c\xf5\xc1\x57\x97\x41\x54\x77\x57\xc9\xb4\x97\xa4\x3c\x43\xae\x6b\x65\xec\x77\x37\x7e\x99\xd1\x12\x2d\x09\x0b\x58\xf0\x61\x44\xcd\x74\x77\x3d\x32\x23\x23\x22\xab\xdf\xc7\xf5\xef\xf1\x5d\x3a\x9d\xd3\xe5\x78\xbc\x7f\x78\xff\x74\x7e\x3e\x5d\x1f\x0f\x57\xcb\xaf\xcf\xe9\x72\x75\x3c\x5c\xad\x4f\x0f\xef\xcf\xe9\x72\xf9\xfe\xdd\x87\xfb\xf7\xfc\x90\x1f\x9e\xf9\x73\xff\xc4\xbf\x97\xe7\xf3\xfd\xe3\xbb\xcb\xd5\xf1\xe6\x78\xcc\x2f\x8f\xeb\x69\xb9\x7f\xdc\xe2\x73\xbc\x3b\xa7\xb8\x5d\xf3\xbf\xd3\x9f\xff\xc2\x58\x6f\x4e\x8f\xf1\x21\x9d\xfc\xfe\x9b\xd3\xf5\xfe\x6b\x3a\x9f\x9f\xce\x37\xa7\x7f\x1d\x0f\xef\x3e\xd8\xb7\xd3\x0f\x6f\x4f\x4c\x75\xfb\xc7\xf4\xcf\x3f\xa5\xb8\xa5\xf3\xb5\xad\x85\xef\x3f\xbe\xe4\x9c\xce\x36\xec\xcd\xcd\xf1\x70\x9f\xed\x81\xff\x7b\x7b\x7a\xbc\xff\x99\x21\x0e\xe7\xf4\xfc\x72\x7e\xe4\xeb\x9b\x53\x7e\x78\xbe\xfd\x03\xa3\xe7\xeb\x2b\x06\x3a\x7d\xf7\x8f\x1f\x4e\xdf\xfd\x72\xe5\x2b\xb1\xb9\x6e\x8e\x87\xdf\x8e\xc7\xc3\x2f\xf1\x7c\x5a\x5e\xf2\xc9\xe7\xf1\x49\x8e\x87\x3b\x5f\xce\xdb\xd3\xfd\xd3\xed\x4f\x4f\xef\x7f\xbd\xfe\xff\xe5\x25\xbf\x39\xbd\xfb\x70\xc3\x5a\x6f\x7f\xfa\xf9\xe9\x92\xae\x6f\x8e\xff\xbb\x65\xe8\xa9\xe5\x25\xdf\xfe\xc8\x4a\xae\x6f\xde\x30\xc4\xf1\xb7\xe3\x91\x15\xde\x9d\xd3\xe5\x6e\x7b\x5a\xef\x2e\xf1\xe1\xfd\xcf\xe9\xee\xb9\x3c\x9f\xde\x2a\xba\xd7\x57\xa1\xd4\x39\x94\x69\x09\xa5\x9a\x42\xa9\xaa\xaf\x7f\x72\x0e\x25\x76\xa1\xcc\x75\x28\xeb\x16\xca\x90\x42\xd9\xda\x50\xba\x2a\x94\xba\x0b\x65\xea\x43\xc9\x63\x28\xe3\x1c\xca\x14\x43\x59\x96\x50\x86\x2a\x94\xb4\x84\xd2\x77\xa1\xf4\x73\x28\x63\x17\xca\xba\x84\x52\xb7\xa1\x2c\x55\x28\x5d\x1d\xca\xb8\xf9\xf8\x89\x6b\x43\x28\x7d\x1b\x4a\xdb\x87\x32\x37\xa1\x24\xae\xd5\xa1\xb4\x6b\x28\xf3\x10\xca\xb6\x86\x12\x53\x28\xb1\x09\xa5\x99\x42\x19\xb6\x50\x7a\xee\x8b\xa1\xcc\x95\xff\x9e\x93\xef\xa3\x9d\x43\xe9\xa6\x50\x62\x1f\x4a\x9c\x42\x99\x86\x50\x96\x26\x94\x75\x0a\x65\x63\xcd\x7d\x28\x23\xf7\x33\x47\x1b\x4a\x95\x43\x99\x59\xd7\x1c\x4a\xdb\x86\x92\x52\x28\x6b\x0c\x25\x12\x1b\xd6\xb7\x86\x32\xd5\x3e\x4e\xcf\xf3\x43\x28\x79\x0d\x65\x9c\x42\x49\xb5\xef\x6f\x65\x9d\x5b\x28\xe3\x12\xca\x92\x42\x19\x19\x97\x71\xaa\x50\xa6\x36\x94\x69\xf4\xb8\xf4\x43\x28\x33\xf1\xee\xfc\x33\xad\xbe\x17\xf6\x90\xb8\x87\xb8\x44\x7f\x9e\x7d\x4e\x5a\x07\xfb\x24\x4e\x55\xf4\x18\x4e\x29\x94\x26\x87\xd2\xf2\x37\x85\x92\xa3\xcf\xc3\xf8\xc4\x9d\xb1\x62\x1d\x4a\xbd\x79\xbc\xa7\x29\x94\xae\x0d\x65\x1b\x43\xa9\xa7\x50\x32\xeb\x9e\x7c\xbd\xeb\xe8\xf9\x19\xd6\x50\xda\x2a\x94\x25\x7a\x9c\xd8\x57\x35\x86\x32\xb4\xa1\xc4\x25\x94\x6e\xf4\x7b\xaa\x25\x94\x99\x35\x66\xbf\x5e\x91\x1b\xd6\x39\x7a\xbc\x57\xe2\xa9\x35\xc5\xd5\x31\x53\x35\xa1\x54\x83\xe7\x99\xf8\x31\x4f\xdd\xf8\xda\xf8\xde\x30\x77\x76\x0c\xe5\xca\xd7\xbe\xac\x9e\xcf\xd4\x87\x92\xe6\x50\x16\xb0\x41\xdc\xab\x50\x46\xe5\x90\xbd\xb3\x7e\xd6\x96\x27\x5f\x47\x5d\x85\xb2\xcd\xfe\x1c\xb8\x60\x5c\xf6\xc3\x58\xcb\xe8\x7b\x26\x86\x7d\xaf\xb1\xc8\xfb\xe0\xeb\xb1\xe7\x46\xbf\xb6\xf5\xa1\x34\xd1\xf1\x91\x7b\xaf\x93\x55\xfb\xda\x36\xcf\xcd\x7e\xbd\xeb\x7d\x1f\xc4\xb7\x01\x5b\x8d\xe7\x95\x3c\xe5\xd9\xeb\x80\x7b\xd6\xd6\xaf\x51\x0b\x6d\xed\xd7\xc1\x71\xbd\x86\xd2\x67\xaf\xb5\xae\x09\x25\xb2\xbe\xd1\xe7\x18\x3a\xc7\x36\xf1\xce\x83\xe3\x83\x5a\x60\xcf\xc4\x79\x01\xbb\x83\xd7\xe0\xaa\x3a\xa1\x7e\xa8\x25\xcb\x4f\x1b\xca\x30\xa8\x6e\x85\xa3\x69\x0e\x65\x60\x0d\xfa\xde\xe5\x50\x96\xcd\xef\x03\x1b\xe4\x29\xb5\x3e\x87\xc5\x71\x54\x5d\x25\xc7\x03\xf9\xda\xf8\x7f\xed\x18\xec\xb7\x50\xd6\x3e\x94\x3e\x79\x0e\xa8\x57\xae\xf5\xe2\x05\xb0\xc6\xb5\x7e\xf5\x9a\xd9\xea\x50\xba\x2e\x94\xa6\xf3\xdc\x5a\x2d\x0b\x37\x35\xf3\x2c\x3e\x0f\x6b\x06\x6b\xb5\xe2\xc8\xf7\x34\x38\x6f\x6d\x4b\x28\x79\x71\x6c\x6e\xc4\x25\x79\xfc\x99\x93\x7b\xf9\x4e\x4c\xc1\x1f\x79\x1b\x14\x2b\xcb\x51\x1f\xca\xc2\x18\x5d\x28\x71\xf3\xfc\x13\x3f\xf6\x41\xad\xb5\x93\x5f\x23\x87\xcd\xe0\x6b\x6d\x1b\x1f\x9b\xb5\x83\x31\xee\xe7\x43\xed\x6e\xd9\xf7\x0c\x7f\x6c\x8d\xd7\xe2\x2a\x5e\xda\x14\x57\xfe\x12\x7f\x30\x3b\xd6\xa1\xcc\xec\x73\x76\x2c\xa7\xc9\xb9\x94\xfa\x61\x5d\xd4\x4b\x33\x3a\x6f\xcd\xa3\xcf\x0d\x46\x1a\x30\x93\x1d\x4f\x6d\xe7\x6b\xa4\xb6\xe7\xc9\x63\x34\x64\xaf\x65\x70\x6e\x39\x16\x27\x18\x37\x4f\x9e\x53\xe2\x6b\x78\x98\x7d\xef\xf0\x1a\x3c\x0b\xfe\xdb\xd1\x31\x43\xcc\x97\xce\x39\x2c\xef\x38\xa8\x14\x13\x78\x20\x3a\x46\xe0\x2b\x62\x05\xa7\xae\xb3\xe7\x76\xaf\x39\xea\x91\x9a\x78\xad\x23\x7c\x88\x55\x2b\x1e\xe7\x3b\xeb\x36\x1e\xb6\xfb\xae\x76\x53\xf0\xa5\x72\x5d\x7f\xd5\x02\xec\x0a\xf8\xda\x43\x1c\x0f\x87\xaf\x28\xdf\x9b\xe3\xe1\x70\x75\x4e\x97\xef\xb7\xa7\xf5\x7b\xff\xf9\xf6\xb9\x3c\x5f\xbd\x39\x1e\x6e\xbe\x10\xcc\x97\x4b\x7c\xf7\xed\x7a\x49\xcd\xa2\x63\x60\x14\x6c\x93\x77\x6a\x87\x1c\xc2\x57\x60\x7d\x14\x87\x50\x77\xc6\x11\xd9\x6b\x17\x1c\xa1\x2f\xd4\x5c\x3d\xfa\x7d\x35\x9c\xdb\xb9\xfe\x18\x07\xb7\x1e\x7b\xf2\x68\x39\x1c\xbd\x0e\xd0\x2b\xe6\x00\xaf\x93\xee\x21\x37\xe4\x97\x67\xc1\x0d\x9c\x87\x76\x93\x7f\x72\x89\x56\x82\x3f\x70\x03\x9f\x81\x31\xb4\x77\x5c\xa5\x15\xaa\x0d\xf6\x02\x17\xb0\x66\xea\x80\x67\xa6\xce\x79\x79\x15\x5e\x46\xf1\x04\xcf\xa2\x83\xec\x01\x5d\xa4\xde\xb8\x37\x0e\x1e\x3b\xb4\xb9\x01\xff\x9b\xe3\xa1\x91\x1e\x82\xdf\x76\x71\x0c\x51\x23\x95\xc6\xa9\xa4\x3f\x9b\x70\x85\x57\xe0\x37\xab\xe7\xe4\xb8\x34\xcd\xde\xbc\x36\xe1\x50\xc6\x36\x2e\x9d\xfd\x03\xdf\xf2\x7d\xda\xf7\x0a\x8e\x1b\xd7\xf7\x95\xfb\x2a\x8f\x2b\x7e\x06\xbd\xcf\x9d\x73\x2d\x35\x08\x57\xae\xaa\x3d\x72\xc1\x5e\xc1\x2d\xfb\xa1\xbe\xc8\x2d\xb1\x45\xe3\xf1\x05\xad\xf0\xc1\x7e\x2a\xd5\x5d\x2b\x4d\x27\x76\x6b\xe7\x7f\xc9\xaf\xd5\x51\x2f\x1f\xd1\x3a\x6e\x8c\x8b\x66\xcf\x35\x79\x47\x0f\x19\x97\xb5\x6d\xaa\xd1\x45\xba\x8c\x17\xc3\xdb\xa0\x87\x5c\x9f\xa5\xdd\xdc\x4f\x8c\x37\xf1\x1b\x1f\x70\x62\xba\x5f\xfb\x7e\x88\x17\xf5\x0d\x57\xc3\x0b\x68\x37\xdc\x0b\x5e\x2c\xff\x9d\xeb\x60\xaf\xdf\xf8\x18\xcf\x47\xaf\x85\x66\x91\x16\x45\x8f\x27\x39\x6e\x5e\xe5\xb8\x9a\x43\x69\x36\x1f\xdb\x38\x72\x70\x8d\xe5\x59\xb0\x44\x6c\xbb\x41\x7e\x70\xf1\xe7\xe1\x4f\x6a\x82\xf5\x33\x8f\xf1\x9d\xbc\x9d\xf1\xa7\x74\x1b\x9f\xb3\xeb\x65\x7a\xf5\x2c\x7c\x0a\xef\x81\x23\xe2\x69\x9a\x54\xfb\x7c\xd4\x45\x5f\xfb\x3e\xc9\x09\xf7\x82\x23\xf2\x6b\x7e\xb0\x77\xcf\xc4\xba\x07\xc5\xd4\x7c\x53\xeb\x9e\x01\xee\x47\x9b\xe1\xc7\x46\x1c\x4d\x0d\x51\x5b\x78\x33\xd3\x89\xcd\x3d\x01\x7b\x60\x6c\xb0\x36\x4a\x87\xc0\x30\x5a\x0d\xcf\x8f\x83\x3f\x4b\x4c\x98\xd7\x30\xd3\xfa\x5f\xf4\x15\xcd\x42\x8b\x88\x3f\xf8\x9d\xe5\x1f\xc0\x0b\x75\x36\x80\xd3\xcd\x31\x44\x8c\xc8\xe3\xac\x9c\xb2\x16\x72\xb3\xf3\x31\xfb\xa7\xb6\xc1\x1d\xfb\x24\x26\xb5\x30\x68\xeb\x69\x7c\x8f\xe0\x06\x2d\x61\xed\xd4\x85\x79\x08\xe5\x72\x15\x86\x9a\xd6\x31\x42\x0d\x82\x4d\x70\x82\xbe\x80\x01\xe3\xf5\x28\x8d\x58\xfd\xb9\xa4\x5a\x4d\xd2\x70\x62\x61\xfe\xb8\xf3\xb1\xb8\x17\x0f\x01\x16\xe0\x2b\xf6\xcc\x7a\xe1\x0d\xf6\xb8\x6b\x26\xbe\x19\x3c\x80\x1f\xea\x83\xda\x9b\xa5\xa3\xfb\xef\x60\x7d\xd7\x2d\xf8\x94\x35\x10\x17\x72\xc6\x18\xec\x8b\xba\x25\xc6\x8c\x8f\xb6\x0e\xea\x2f\xc8\x19\x31\x81\x5f\x66\xc5\xff\x23\x57\xed\x7c\x36\x38\x56\xcc\x8b\x2d\x8e\x5d\x7a\x1d\xb8\xc2\x3c\xd0\x26\x1f\xd9\xfb\x7c\xe6\x0d\x5f\x71\x03\xf9\xc2\xf3\x93\x4f\xbc\x45\x2b\x5c\x5a\xae\xa2\xc7\xd1\x3c\x68\x74\x4e\x82\xa3\xf1\x8d\xf4\x26\xe6\x99\xb2\xc7\x03\xcc\x80\x41\xea\xd6\x3c\xf0\xea\xfa\x4c\x8c\xf1\xd9\x93\x7c\xd3\x36\xf9\x7a\xd1\x02\x7a\x1c\xab\x87\xe8\xfa\xbc\xcf\x07\x5f\xd7\xb5\x7b\x46\x74\x01\xce\xcb\xf2\xb1\x86\xc3\xe8\xfe\x73\xe7\xc4\x41\x3d\x09\xb8\x83\xdf\xe0\x9c\x7a\x9f\x7b\x74\x8e\x80\xe7\x52\xe3\xf9\x86\x8f\x3a\x79\x3b\x38\x76\xd3\x9e\x59\xbb\x71\xf1\x2c\x6e\xdf\x7c\x3e\xc3\xc9\xe8\xbd\x01\x3a\xd8\x54\xce\x3f\xe6\x7d\xb3\xf3\x8b\x71\x93\xbc\x09\xf7\x51\x73\xe6\x09\x67\x5f\x0b\x31\xd8\xb9\x00\x2c\x81\x05\xf8\x81\x98\x82\xb9\x5a\xd8\xe6\x9a\xf5\x84\xb5\xd7\x72\x2d\xfd\x85\x03\xd0\x52\x70\x4a\x7c\xc8\x0f\x7f\xb9\x96\xe4\xf7\x3b\x79\x5c\x7c\xde\x2a\x1e\x30\xee\x4f\x5e\x67\x73\xf6\x39\xac\xc7\x68\xd4\xa3\x56\xba\x5f\xfd\x61\x56\xed\x46\x79\x62\xf8\x99\x7c\x51\x5f\xb5\xf4\xcb\x3c\x42\xed\x7a\x66\x5c\xad\x38\x51\xb7\xe6\xfd\xf7\x4f\x74\x5e\xc3\x17\xce\xba\x0f\x1f\x82\x3e\x46\x79\x50\xae\xe1\xc9\x8c\xcf\x5b\xc7\xa2\x71\x95\xfa\x71\x7a\x6d\x7a\xfd\x4a\xde\xd1\xe2\x3a\x78\xfe\xd0\x68\xf2\x6a\x3d\xf2\xe4\xe3\xcd\x7b\x8d\xcb\xcb\x81\x87\x5e\xbd\x3c\x6b\x34\x7d\xc9\xbe\xd7\xcf\x7d\x20\xb1\x20\x57\xf0\x79\xab\x1e\xe4\x77\x7c\xe0\x47\x43\xf6\x6d\x36\xf0\xe3\xe3\xff\xe1\x02\xed\xd7\xaf\x9b\xc0\x87\x74\xe1\xe2\xe5\x2e\x3d\xde\xfd\xed\xf2\xf4\xf8\x4d\x3e\x70\x96\x7e\xa3\x6f\x83\x7a\x16\x7a\x5f\x7c\x0d\x75\x03\x96\xa8\x91\x5a\xfe\x88\x1a\xa3\x46\xe0\x25\xab\xbd\xca\xf3\x0c\xf7\x4d\xd2\xdb\x25\x7e\xc2\x1d\xb5\x0f\x5e\xf0\x04\xf0\x37\xfd\x5c\xa5\x3e\x18\x7c\xa2\x81\xd5\xde\x3b\x44\x9f\x87\x7e\x8b\x98\x77\xc2\x5c\xd6\x39\x42\xaf\xb9\x16\xf9\x22\x6a\x13\xfe\x64\xdd\xac\xc7\xbc\xeb\xea\x79\x62\xdd\xf4\x17\xac\x89\x7b\xa9\x6d\xb4\x84\x7d\x53\x1b\xac\x09\x8e\x4b\xf2\x30\xf0\x4f\x27\x3f\x80\xd6\x51\x9b\xb3\xfa\x37\x3b\x2f\x52\xcf\x4b\xcd\x58\x1f\xab\xb9\xf1\x5a\xf4\xa7\xd4\x0e\xf1\x49\x8a\x01\xf3\x4c\x3a\x33\x81\x93\xd0\x17\xd6\x0f\x77\xa3\x43\xc6\x95\xc9\xfd\x51\x25\x9f\x69\x7e\x45\xde\x05\x6e\x82\x43\x27\xf5\xef\x51\x3e\x07\x0f\x12\x55\x07\xac\x97\x38\xc2\xfb\xac\xc5\x34\x68\xf3\x5a\xa7\xbe\xb6\x9d\x73\xa2\x9f\x55\xac\xf2\x9c\x70\xcd\xbc\xf7\x96\x3a\x77\x01\xdf\xa3\xf2\xb3\xe8\xfc\xca\x62\x5d\x79\x3f\x8b\x4f\xc3\x23\x59\xdd\xa9\x6f\x88\x7b\xfe\x47\xd7\x0f\xe3\xa4\xec\xe3\x33\x0e\x79\x23\x47\x68\x0a\xdc\x65\x3a\x2b\xed\x61\xcd\xf4\x63\x70\xf7\x28\xef\x0f\x2e\xa8\x61\x38\x1e\x9e\x18\xc4\xf7\xab\x78\xdb\xbc\xdb\xee\xfd\x66\x69\x4e\x23\x4f\x98\x3f\xe9\x65\x12\xaf\xa0\x7b\x8c\x47\x8f\x80\xee\x91\x1b\xeb\x29\x7a\xdf\xab\x79\xf4\xd5\xef\x85\xd7\x5a\xf5\xc3\xf0\x21\x7c\xc0\x7e\x0c\x97\x9b\x63\x89\x38\x8e\x3a\x13\x43\x1f\xac\xc7\xd9\x3c\xce\xc4\xb6\xd2\x99\x06\xf9\x21\xef\x3c\x4f\x8c\xa8\x1f\xea\xc6\xce\x23\x36\xf7\x3c\x68\x18\xf7\x54\x8a\x2b\xdc\x8c\xaf\x86\x87\x7b\x69\x30\x7d\x0f\x7e\x85\xda\xc1\x3f\xa2\x15\xc4\x97\x79\x76\x0c\x90\x67\x1b\xaf\xd6\x9c\xab\x7a\x71\xe1\xaa\x91\x77\xe2\x7e\xeb\xd5\xa3\xaf\xdb\xce\x4b\x36\xe7\x4b\xf3\xea\xbd\xd7\x11\x63\x0c\xc9\xf9\x97\x0f\x9e\x18\xad\xa6\xa6\xf1\x12\xec\xc5\xf6\x34\xa9\xe7\x5e\x1c\x0b\x4b\x76\xff\x67\x1e\x7b\x54\x2f\x23\x0f\x3e\x28\xc6\xfd\x2a\x4f\xb4\xb9\xa6\xb5\xca\x4d\xad\x1e\xcf\x74\x41\x75\x6e\xd8\xd1\x59\x09\x7e\x09\xfc\xb3\x1e\xbc\x94\xe5\x4e\xfa\x80\x9e\xa1\xa5\xf8\x49\xb0\xb5\xa8\x36\xf7\xf3\x05\x38\xac\x95\xaf\x24\x57\xac\x91\xf8\xd9\x7c\xab\xcf\xb3\xe8\xec\x01\x5c\x18\xd7\x27\xf7\xd2\xeb\xe2\x78\xa3\xde\x3b\xe9\x7b\x25\xff\x44\x2c\xb8\x86\x07\xc7\x87\x2c\x3a\xd7\xa3\x9e\xa9\xb5\xac\x33\x29\xfa\x54\x70\x6b\x3e\x5e\x98\xe1\x1e\xbc\x35\x75\x07\x47\x1b\x87\xa8\xb7\xa3\x17\x47\xaf\x4c\xbf\xc5\x75\xc4\x1b\xad\x33\x1f\xad\x33\xe2\x69\x3f\xcb\x90\x3f\xb7\x9e\x28\x7d\xc2\x56\xa7\x1e\x0f\x3c\xd8\xd9\xad\xfc\x0f\xf9\x62\x9c\x46\xfe\xbf\xd1\x59\x1a\x79\xa0\xae\xed\x8c\xb9\x73\xff\x4d\x7c\xd0\x7d\xe2\x4c\x7d\x81\x67\xee\x35\xbf\xba\xca\xcb\x37\x3a\x5f\xaa\xdc\xfb\xa0\x27\xe0\x97\xb9\xed\x4c\x4b\x5e\x0d\xee\x87\x6b\xe1\xfb\x51\xbe\x13\x8c\xd8\xfa\x46\xe7\x3c\xf3\x53\xaa\xb5\x4a\x9a\xbe\x9f\xef\x30\x36\xf9\x89\x3a\xab\x7e\x3d\x2f\xf9\xc0\x03\xac\xda\x8f\x9d\xef\x48\xcf\x97\xbd\x27\x6e\x75\xa6\xa1\x9e\xd1\xb8\xa0\xf6\x38\xa1\xf3\xd4\x8c\xf9\xbc\xec\xb5\x47\x0f\x66\xfe\xa9\xf7\x7e\x72\xd5\xb9\x61\x96\xee\x99\xcf\x58\xdc\xab\x25\xd5\x0b\x71\x1b\x74\xa6\x50\xeb\x1d\xc3\xba\x6b\xc2\xe8\xf7\x45\xf1\x10\x7e\x88\xba\x43\xe3\x4c\xe7\x36\xe7\xe4\x41\xfd\x1e\xf5\x6c\x67\xa6\x8b\xaf\x99\x1c\xe3\x69\x17\x3d\x43\x6f\x6c\x7d\x84\xce\xb7\xed\x3c\xbb\x71\xad\x22\x8e\xd4\x02\x35\xba\x9f\xd7\xef\x1a\xfe\xb9\xc7\xd9\xfb\xc1\xa8\x33\xb7\x79\x3f\x93\xfd\xd2\xe3\x7c\xee\x37\xfe\x7b\x9b\xf3\xf9\x08\x1f\x9d\xce\xab\x0b\xb7\x5c\xf8\x1d\xb3\xf3\xe1\xaf\xdf\x6e\x76\xec\x25\x51\xe7\x02\x65\x80\x8e\x32\xb2\x93\x0e\x94\x77\xb3\xd3\x39\x60\x00\x56\xda\x89\xbd\x76\x83\x0d\x41\x22\x3a\x96\x98\x56\x07\xa5\x8d\xfe\xdf\x7a\x53\x4a\x12\x07\x1d\x6a\x24\x1d\xa8\x4f\x32\x14\x66\x8c\x65\x86\xed\x6f\xe7\x07\x1e\x14\x38\x04\x6d\xf3\xe8\xc5\x00\xe2\xd7\x8a\x38\xac\x31\xd6\x4b\x0c\x48\x07\xc0\x01\xc8\x41\x2f\x2f\xd8\x3f\x85\x43\xc2\x21\x26\x7b\xe9\x32\x39\xc8\x99\xab\x95\xd8\xd9\x81\xb7\xcc\x1d\x09\x87\x0c\x5a\x35\xb1\x06\x9c\x45\x07\xc8\x8b\xef\xdf\x9a\xcf\xe4\x8d\x0e\x20\xa3\x48\x66\x35\x06\x18\xf2\x51\x87\xd5\xec\x6f\x3f\xc0\xa3\x60\x10\x5e\x3b\x10\xa8\xdd\x3c\x4c\x22\x04\xcc\x23\x66\x1c\xd1\xb0\x35\x4c\x3a\x98\x56\x53\x61\x04\xb9\x1f\x36\xc8\x78\xb7\xfb\xcb\xa3\xe4\xa4\xb8\x1f\xa0\xf1\x2c\x73\x65\x35\x3c\x8d\x8c\x25\x73\x43\xc2\xec\x9b\x62\x1e\x25\x54\x10\x8d\xbd\x88\x1a\xfd\x50\x19\x61\x43\x24\xfb\xde\xe3\x06\xd9\xd9\x98\x6a\x86\xcd\x28\x0c\x9f\x9a\x95\x51\x86\x8a\xb5\x91\x7f\x48\x02\xe1\x1b\x94\x27\x23\x9d\xe8\xa4\x6f\x07\x15\xab\x5e\x2a\xe8\xb0\xd3\xc8\x29\x79\xb1\x23\x08\xcc\x91\x75\xf0\x67\x2f\x09\x75\x00\xb9\xbf\x5c\xd8\x89\xc1\x84\x6a\x71\x42\x60\xdd\x10\x35\x71\x21\x9f\xf6\x37\x2b\xc6\xbd\x13\xda\x7e\x68\x05\x2e\x3b\xbd\x04\xa2\xd1\x9e\xc7\x4f\x38\x83\x90\xed\x60\x44\x42\xc0\xf5\x24\x12\xb3\x17\x2b\x3a\x84\xb4\xb5\xac\x7e\x8f\xed\x6f\x3f\x08\xec\xfd\x20\xc6\x5e\x70\x2e\x6e\x34\x36\x09\x62\xce\x9f\x8c\x0b\x79\x32\x23\xd5\x7a\x6e\x47\xbd\x50\x31\xb1\x4a\xde\x3c\xd7\x6a\xb6\xb3\x0c\xd7\xfe\x52\x02\xbc\x58\x3d\x64\x99\x8e\x5a\x8d\x69\xab\x17\x65\x3a\xf8\x02\xef\xb3\x5e\x82\x21\xd2\xdb\xbf\x03\x00\x00\xff\xff\xef\xb2\x8d\x86\x00\x20\x00\x00") +var _res_res_go = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\xbd\x4b\xaf\xe6\x46\x92\xde\xbf\xae\xfa\x14\xf5\x17\x30\x7f\x48\x80\xa0\x49\x5e\x92\x49\x0e\xd0\x9b\x19\x78\xeb\x85\xb7\x7e\x0d\x21\x99\xcc\x94\x65\xb7\x2e\xae\x92\xc6\xec\x36\xe6\xbb\x1b\x4f\xc4\x2f\x8a\xa7\xbb\x35\x6d\xb8\xdb\x8b\x52\xa9\xde\x73\x5e\x32\x99\x19\xd7\x27\x9e\x08\xfe\x5c\xdb\x7f\xaf\xdf\xf5\x0f\x1f\xfb\xa7\xf7\xef\xbf\xff\xe1\xe7\x9f\x3e\xfe\xf2\xe1\xcb\xf7\xef\xbe\x38\xff\xf0\x4b\xff\xf4\xc5\xfb\x77\x5f\xb4\x9f\x7e\xf8\xf9\x63\xff\xf4\xe9\x1f\xbf\xfb\xe3\xf7\x3f\xeb\x83\xf1\xc3\x2f\xfa\xeb\xfb\x9f\xf4\xdf\x4f\xbf\x7c\xfc\xfe\xc7\xef\x3e\x7d\xf1\xfe\xab\xf7\xef\xc7\xaf\x3f\xb6\x0f\xe7\xf7\x3f\x5e\xf5\x97\xfa\xed\xc7\x5e\xaf\x2f\xf5\x7f\x1f\xfe\xf3\x7f\xd1\xb5\xbe\xfe\xf0\x63\xfd\xa1\x7f\xf0\xdf\xff\xea\xc3\x97\xf1\x69\xff\xf8\xf1\xa7\x8f\x5f\x7d\xf8\x5f\xef\xdf\x7d\xf7\x47\xfb\xd7\x87\x7f\xfa\xdd\x07\xdd\xea\x9b\xff\xd8\xff\xe7\x7f\xea\xf5\xea\x1f\xbf\xb4\xb5\xe8\xdf\xff\xfc\xeb\x18\xfd\xa3\x5d\xf6\xab\xaf\xde\xbf\xfb\x7e\xd8\x17\xfe\xbf\xdf\x7d\xf8\xf1\xfb\xdf\xeb\x12\xef\x3e\xf6\x5f\x7e\xfd\xf8\xa3\xfe\xf9\xf5\x87\xf1\xc3\x2f\xdf\xfc\x07\x5d\x7d\x7c\xf9\x85\x2e\xf4\xe1\x1f\xfe\xc7\x3f\x7d\xf8\x87\x7f\xfd\xc2\x57\x62\xf7\xfa\xea\xfd\xbb\x7f\x7b\xff\xfe\xdd\xbf\xd6\x8f\x1f\xce\x5f\xc7\x07\xbf\x8f\xdf\xe4\xfd\xbb\x6f\x7d\x39\xbf\xfb\xf0\xfd\x4f\xdf\xfc\xcb\x4f\x3f\xff\xe1\xcb\xff\xff\xfc\x75\x7c\xfd\xe1\xbb\x3f\x7e\xa5\xb5\x7e\xf3\x2f\xbf\xff\xe9\x53\xff\xf2\xab\xf7\xff\xef\x96\xc1\xb7\xce\x5f\xc7\x37\xff\xac\x95\x7c\xf9\xd5\xd7\xba\xc4\xfb\x7f\x7b\xff\x5e\x2b\xfc\xf6\x63\xff\xf4\xed\xf5\x53\xfb\xf6\x53\xfd\xe1\xe7\xdf\xf7\x6f\xff\x50\x7f\xf8\xfd\x87\xdf\xb1\xbd\x5f\x7e\xf1\xba\xa7\xf1\xba\xf7\xf3\x75\xa7\xfd\x75\xa7\xf4\xdb\x7f\xc6\x78\xdd\xb5\xbd\xee\xbc\xbf\xee\x7c\xbe\xee\xb2\xbc\xee\xab\xbe\xee\x75\x7f\xdd\xd3\xf6\xba\x4b\x7f\xdd\xbd\xbc\xee\x5c\x5e\x77\xdd\x5f\xf7\xbc\xbd\xee\x23\xbf\xee\x56\xfd\xda\x6b\x7b\xdd\x47\x7a\xdd\xb9\xbd\xee\x7a\xf8\xbf\xcb\xfe\xba\xaf\xf3\x75\x5f\xd7\xeb\x2e\xc3\x7f\xde\xca\xeb\x6e\xd7\xeb\x5e\xfb\xeb\xce\xd3\xeb\x9e\xea\xeb\x9e\x17\x7e\x6f\x7d\xdd\xdb\xfc\xba\x4b\x7a\xdd\xf3\xf4\xba\x97\xe3\x75\x0f\xdd\x73\x7d\xdd\xed\x78\xdd\x53\x79\xdd\x7b\x7b\xdd\xd3\xf5\xba\xd3\xf9\xba\xdb\xe2\xeb\x68\xdb\xeb\x5e\xf4\x6c\xeb\xeb\xce\xe3\x75\x37\xad\x79\x7f\xdd\x7d\x7e\xdd\xeb\xf5\xba\xb7\xf6\xba\xcf\xf4\xba\xb7\xf2\xba\xa7\xd9\x9f\xaf\x6f\xfe\xff\x7a\x2e\xad\xf5\xac\x7c\x3e\xfb\xbd\xb4\xde\x6d\x7a\xdd\xf5\x7c\xdd\x43\x9f\xeb\xfa\xdb\xeb\xde\x77\x9e\xef\x78\xdd\x57\xf6\xeb\x68\xad\xc7\xf6\xba\x73\xf5\x3d\x2a\xcd\xff\x1e\xeb\xeb\xbe\x8a\xff\xff\xb5\xf9\xbe\xa5\xe3\x75\x2f\xf9\x75\xcf\xba\x46\x79\xdd\xe7\xc1\x77\xe6\xd7\x3d\x6b\x2f\xba\x5f\x5f\x6b\xd3\xef\x1c\xd7\xeb\x3e\x16\xbf\xa6\xce\xc4\xf6\x50\x9f\x9d\xaf\xfb\xbc\x5e\x77\xdd\x7c\x1d\x0b\xfb\x68\xfb\xbc\xfa\x59\xea\x9e\xda\xb3\x73\x7e\xdd\x67\xf1\x7d\xdb\xeb\xeb\x6e\xa7\x9f\x9b\x9d\xd9\xea\x7b\xb9\x67\xdf\xc3\xde\xfd\xbc\xb5\xb6\xb2\xf9\x3d\xb5\x6e\xfd\xbd\x1d\xfe\x99\xae\xab\x3d\x5e\x25\x03\xda\xa3\xfe\xba\xaf\xe4\xcf\xa5\x3d\x94\xbc\x15\xed\x8d\xee\x25\xb9\x5a\xfd\xfa\xf3\xea\x67\xaa\xcf\xb5\xcf\x5b\x7f\xdd\x6d\xf2\xb5\xea\xcf\x3e\xbd\xee\x59\x32\x73\xbc\xee\x3a\x5e\x77\xd7\x3d\xb7\xd7\x9d\x74\x5d\x9d\xe3\xf0\xef\xe9\x8f\xe4\x66\x99\x5f\xf7\x22\xb9\x9c\x5e\xf7\xb9\xf8\xbf\x6d\x8d\xda\xc3\xec\xb2\x70\xe8\x9c\xb4\xfe\xf2\xba\xb7\xeb\x75\xb7\xec\xe7\x68\x67\x5b\x5f\x77\x4d\x2e\x87\x43\x72\x2c\x79\xa8\x7e\x1f\xdb\x63\xe4\x4c\x72\xac\x35\xcc\x3a\xd3\xf4\xba\xa7\xd3\xf7\x52\x72\x99\xa6\xd7\x9d\x24\x93\x87\xcb\xf6\xbe\xf8\x79\x4c\xcb\xeb\x3e\x25\x57\xfa\x79\x7f\xdd\x87\xe4\x3d\xb9\x5c\x1e\xda\x1f\x9d\x9f\xf6\x72\xbc\xee\x65\xe3\x8c\xa4\x17\x3a\x8b\xee\x67\x19\xf2\xa1\x3d\xda\x8b\xff\x5c\xe7\xae\xfd\xd6\xef\x68\x6d\xf3\xe5\x7a\x23\x99\xd1\xcf\x96\xd3\xd7\xa9\x7d\xcb\xda\x93\xe5\x75\xa7\xe1\xe7\xd0\x92\xeb\x6f\xaa\x7e\x5f\xe9\xfa\x89\x0e\x4a\x26\x74\x4e\x5a\xa3\x74\x65\x20\xcb\x79\x73\x1d\xd0\x33\x6c\xc9\xff\x98\x0c\x6a\xff\x93\xef\x75\x6b\xd8\x97\xee\xe7\xa1\xfd\x1e\xf3\xeb\x1e\xcd\xf7\xda\x64\x7b\x77\x19\xd5\x9a\x86\x64\x6a\xf1\xf3\xd5\x1f\xc9\x64\xce\xaf\xfb\x5a\x5c\xf7\x36\x9e\x4f\xfb\xbb\x0e\xf4\xb1\xbb\x1d\xd9\xaa\xcb\x99\xee\xd9\xba\xaf\x53\xe7\xbc\x4a\x06\x24\x1f\xc8\x97\xce\x61\xe8\xfc\x74\x1e\xcd\x9f\x5f\xeb\x3b\x57\xec\xcf\xf4\xba\xfb\xe5\x36\x6e\xc1\x8e\x68\x2f\xb5\x8f\x5a\x5f\x3f\x1e\xfd\xd0\x1a\xb5\x2f\x92\x49\xdd\x5f\x32\x26\x19\xdd\x0f\x7f\xb6\x5d\xf7\xcd\x6e\x9b\x8e\xd9\x6d\x66\x2d\xfe\x1c\xb2\x2b\x53\x76\xfd\xd1\x1f\xad\x2b\x9e\xab\x4c\x2e\xbb\xd2\xfb\x35\xb9\x0d\x59\x26\x3f\x3b\xc9\xb3\xd9\xa4\xc9\xe5\x44\xf7\xd5\xb9\xda\x39\x2c\xc8\xf8\xe6\x3a\x23\x1b\x24\x19\xd1\xef\xd8\x5a\x9a\xdb\x8b\x86\x2c\xca\x7e\xd8\x7a\xd7\xd7\x7d\x34\x5f\xe7\x7c\xfa\xd9\xca\xee\x4b\x96\x17\x64\x6f\x4a\xae\xdb\x7a\xfe\xcf\x7b\x38\x5c\x7e\xa5\x3f\x9b\x6c\xf4\xee\xbf\x33\xf4\x7b\xab\x7f\x5f\x6b\x93\x0d\xd0\x7a\x86\x74\xa5\xb9\x2d\xd3\x3a\xf7\xcd\x75\xca\xbe\xbb\xb8\x4d\xbc\x66\x97\x79\x5d\xe3\xc4\x56\xcb\x8e\xeb\x9e\xda\x3b\x9d\x8d\x74\x36\x95\xc7\x96\x48\x76\x74\xee\x5a\x8b\xee\xa9\x3d\x93\x5d\x48\xf8\x17\x9d\xf3\x84\x7c\xe8\x5e\x7a\x46\xc9\xa8\x74\x49\x72\x50\x2f\xf7\x2f\x83\xf3\xe8\xfa\x99\xd6\xd1\xdd\xf6\xcd\x09\x9f\x57\xdc\x8e\xd9\x19\x1c\xbe\xaf\x19\xbb\x27\xfd\xcf\x3a\x7f\x6c\x8e\x6c\xa5\xee\x29\xd9\xd4\xba\xf5\x99\xd6\xad\xb3\x29\x97\xcb\xb4\xee\x6b\xf6\xb1\xb8\x2f\x91\xee\xeb\x9c\x6d\xcd\x9c\x91\xce\x59\x7b\xa8\x33\x28\xf8\x92\x15\x7f\xa6\xf3\x37\x19\xd8\x5d\xff\x4c\x17\x8a\xcb\x8b\xfc\x90\xce\x6a\x6a\x6e\x57\xe4\x93\xa5\x07\xdb\x89\x9d\xdf\x5d\x1f\xf5\x9c\xe3\xf0\xb3\x34\xf9\x3a\x5d\x56\x64\x07\xe4\xdb\x64\x0f\x65\xd7\x4c\x0f\x16\xb7\x9f\x92\x2b\xed\xa3\xce\x40\x67\xa8\x33\xd1\x19\xe9\xec\x64\x47\xc6\xe4\xcf\x33\x0f\x7f\xb6\x8c\xcd\x94\x7c\x9f\xd9\x75\x4c\x32\xa0\xb3\xd7\x99\x68\xbd\xe6\x3b\x87\x9f\xa3\x3d\x57\x41\x57\x56\xb7\x0f\xb2\x71\xf6\x9c\xa7\xeb\xc7\x20\x86\xd0\xde\xe8\xcc\xb4\xee\x35\x7b\xfc\xb0\x61\xb3\x3a\xfe\x45\x7a\x26\x3b\x63\xf6\x69\xf1\x67\x36\x1f\xb1\xfa\x35\x24\xe3\x7a\x3e\x3d\x8b\x9e\x5d\xf2\xa1\xeb\xcb\x4e\x2d\xc3\xaf\x23\xfb\x20\x7b\x2c\x1d\xb1\x35\x63\xff\x65\xef\x24\x2f\xa6\xdb\xda\xbb\xe4\x76\x7f\xbf\x5c\xa7\x24\x1b\x8a\x33\x74\xce\xb2\x7d\xe6\x7f\x0e\xff\x23\x99\x90\x9d\x4a\x3c\xa7\x9e\x61\xc3\x27\x2c\x7c\x6f\x9d\xb1\x9b\x9b\xcb\x84\xfc\x96\x7c\x8e\xce\x57\xcf\xa6\xfb\xe9\xdc\xae\xf0\xd5\xcd\x7d\x99\xae\x2b\x7f\x20\x99\xd6\xf9\xc8\x86\xc9\x2e\x9e\x6f\xe4\x40\xcf\x29\xf9\x90\x7f\x92\xff\xd5\xf9\xc9\x5e\x4f\xd8\x31\xf9\x80\x86\x5c\x4b\x56\x65\x77\xf4\xdc\x17\x31\x9c\xec\xa3\xce\x50\x72\x69\xb6\x17\x39\xd3\xfd\xb5\x5f\x75\xf6\xb3\x93\xff\x5c\x17\xb7\x89\xfa\x99\xec\x85\xf4\xc8\xec\xf4\xe4\xd7\xd7\xb9\xb5\xb7\x76\x76\xf1\x67\x33\xbb\x38\x7b\xec\x60\x32\x71\xb8\x3c\x9f\xf8\x28\xed\x8f\x6c\x9f\x7c\x76\xc3\xfe\xe8\x8c\x4d\x17\x17\xdf\x77\xc5\x10\xb2\x7d\x07\xf6\x57\x76\x41\x9f\x9d\xc8\xaa\xc5\x89\xd5\xcf\x46\x36\x5c\xf7\x36\xbd\x4d\x7e\x5d\xe9\xb4\xc9\x0a\x71\x8f\xee\xad\xeb\x9b\x8f\xc7\x37\xea\xba\xd2\x49\xad\x7d\xce\xee\x7b\xa5\x67\xb2\xb1\x92\x5d\xd9\x03\xf9\x40\xb3\xaf\xa7\xfb\x8c\x4c\x4c\xb8\x11\xc7\x4a\x1e\x64\xcf\xb4\x6f\x29\xf4\x6b\xf8\xef\xca\x96\x9c\xc8\x81\xce\x67\xc3\xa6\xc8\x9e\x6e\xc8\xa1\xec\xde\x44\x2c\x21\xff\x2a\xbb\xb5\xa1\x07\xa6\x93\x13\x31\x69\x73\x1f\xb5\x21\xf7\x92\xdd\x2d\xfb\x5e\x5d\xac\xe3\xa8\x2e\x17\xfa\xfe\xce\xb9\x9a\xdd\xc7\xee\x58\x0c\xba\xb8\x3f\xd6\xbe\x6a\x3d\xb2\x95\xfa\x4c\xff\x36\xfd\x28\xbe\x3e\xed\x67\xe3\x0c\xa5\x4f\x92\x6b\xfd\xae\xee\x6b\xf2\x30\xf9\xbe\x5a\xee\x70\xf9\xbd\x15\x9f\x37\xe2\x24\x9d\xa7\xc9\x13\x3e\xc0\xf6\x6f\x76\xfb\x2f\x79\xd0\xba\x1b\x39\xc4\x89\x9d\x94\x7d\x91\x1f\x91\x7c\x9b\x0d\x90\x0f\xe8\x1e\x53\xc8\x8e\xcb\x6e\xe8\xdf\xb2\x03\x1d\x9d\x92\xad\xd2\x9e\x49\xc7\xa4\x7f\x6d\x75\x5d\xd4\xb3\x8c\xee\xf9\x90\x74\x5d\xfa\xa4\xe7\x95\x0e\xca\x16\xe9\xd9\x2c\x8e\xc3\x8e\xc9\x6f\xc8\x3f\x58\x6c\x3c\xbb\xbd\x97\x3d\xd1\x73\x4b\xef\x74\x4f\xd9\xf5\x0d\xbf\xab\xdf\x5d\xd1\x1f\xf9\x19\xc9\x9c\xc5\x40\xa7\xdb\x61\xb3\x77\x8b\xdf\x5f\xd7\xd2\x3e\xe8\xfc\xa4\xd3\x33\x7e\x5c\xb1\xb8\x7e\x47\xb6\x5a\x7a\x24\xb9\xaa\x9c\xed\x82\x7e\x66\x7c\x9c\xbe\xa3\xb8\x51\x76\x50\xfb\xa0\x18\x45\x32\x35\xe5\xc7\x57\xeb\xff\xb5\xa7\xe6\x13\xab\x5f\x33\x77\xfc\x50\x7f\xf2\x0a\x7d\xbf\x12\x2f\xed\x11\x6b\x26\x6c\x66\x22\xd6\xc9\x2e\xfb\x92\x5f\xad\x4f\xf9\x8f\x62\x60\xc9\x83\xe4\x48\x36\x4b\xb6\x5f\x7e\x45\x6b\x91\xfd\xd4\xb3\x2b\xd7\x91\xbc\x98\x8d\xbb\xfc\x6c\xa5\x27\x33\x39\xe5\x40\x56\xa4\x67\xb2\x2f\xd2\x7d\xad\x25\x61\xe7\x75\x5f\x9d\x6b\x47\x97\xe4\x3b\x27\xf2\x45\xd9\x46\x9d\xb5\x7c\x9f\xfc\x9c\x3d\xf3\xe6\x32\xb5\x56\xf2\x2a\x72\x28\xf9\x01\xd9\x2e\xad\x3b\x63\xbb\xa4\x47\xba\x97\xe2\x8d\x8b\xfc\x38\x11\x3b\xca\xd7\x44\x4e\x30\xf3\x0c\xfa\x5c\x31\xa3\x72\x23\xf3\x35\xb3\xaf\x21\xf1\x33\xf9\x0b\xfd\xad\x35\x9b\xad\xba\x7c\x5d\x9d\x98\x54\xeb\xb4\x58\x7c\x77\xf9\xb0\xf8\x25\x7b\x2c\x50\xc8\xcf\x64\x8b\x33\x3a\x5a\xf0\x59\x92\x65\xdd\x57\x36\x5f\x36\xb6\x23\x03\x92\x75\x9d\x87\x72\xea\x09\x99\xb0\x18\x24\x3b\x1e\xa0\x7f\xeb\x99\x25\xd3\x13\xb9\xa3\x7c\x8a\xd6\x22\xdd\x95\xfc\xca\x2e\x4a\x4e\x95\xbb\x5a\x8e\xd0\x7c\x6f\xf5\xdc\xe5\xf0\x3d\xd5\xf7\x64\xe7\xa5\x9b\x83\xbc\x54\xe7\xa0\xfc\x50\xf2\xa1\xe7\xb8\xf0\xe7\x2b\x31\xa0\x9e\xdf\xf2\xaf\x99\xd8\x2b\xe3\x63\x92\xeb\xda\x0a\x06\xa1\xbd\x8a\x1c\x4e\x67\xa4\xbd\x0d\x9b\xa3\x18\xea\x64\xfd\x25\xf6\x8d\x98\x55\xfb\xb2\x12\xb3\x9a\x5e\x56\xf0\x83\xe1\x76\xdf\xfe\x26\x9f\x9a\xc9\x3d\x25\x4f\xf1\x6f\xfd\x6c\xc5\x76\xd4\xc9\xaf\xbd\x11\xdf\x5a\x1c\x53\xfd\x39\xf4\x33\xf9\x84\x09\xbf\x22\xdd\xb5\xe7\x1d\xae\x07\xb6\xff\xe1\x0f\x39\x7b\xed\x9d\xfc\x52\xe8\xab\x6c\x89\xc5\x5a\xf8\x23\xcb\x55\x16\xdf\x3f\xe5\x92\xf2\x5d\x1b\xfa\xae\xbd\xd0\xbf\xcd\xf6\x64\x8f\x47\xe4\xa7\xe4\xa7\xa5\x97\xd2\x2d\xc5\x89\x92\x47\xe9\xb2\x9d\x59\x27\x17\x4d\xee\xdf\x2d\x8e\xd3\x3e\xcd\x4f\xbe\xad\x3d\x93\x2c\xe8\x4c\x75\x1f\xd9\xac\x51\xdc\xf7\xea\x79\xb4\x87\x16\x7f\xcb\xa6\x92\xcb\xcf\xe4\xb9\x13\x3a\xa0\xf5\xca\xdf\x49\xd7\xb5\x0f\xfa\x3d\xbb\x3e\x31\xb8\xf9\xf0\xc9\xf5\x5b\x72\x7f\x12\x9b\x6d\xc8\xb6\x74\xdb\xe2\x9d\xd9\x65\x20\x91\x83\xce\x60\x10\x92\x19\xc9\x89\x74\x51\xf7\xd7\x5a\x07\x18\x86\xee\xb3\x20\x2f\xda\x4f\x3d\xb3\xd6\x23\x79\x94\x4c\xcb\x5f\x59\x5c\x5a\xfc\x39\x26\xf4\xd9\x72\x82\xe1\xb6\x49\x7f\x6b\x4f\xe4\x57\xcd\xd6\x74\xf2\xe1\xc9\xe5\x7e\x05\x9f\xc9\xc4\x3c\xe6\xd3\x87\x3f\xa7\x74\x45\x3f\x97\x5e\xad\xec\x9b\xe4\x48\xcf\x76\xce\x0f\xde\xa5\x75\x66\x62\x96\x85\x5c\xd8\x6c\x48\x71\x1b\x2e\x3b\xaf\xb5\xe7\xfd\xc9\x25\x25\x43\x17\x39\xc3\x89\x0f\xd6\x9e\xc8\xbe\x47\xcc\xa2\xeb\x4a\x6f\x65\x27\x6a\xec\xf5\xe2\xf9\xbe\xee\xaf\xe7\xcc\xf8\xfe\x99\x78\x5f\xfe\x48\xf6\xd6\xfc\xf7\x8e\x8c\x0e\x8f\x91\xb5\x67\x3a\x03\x9d\x45\x2f\xee\x27\x75\x3e\x07\xb6\xc8\x72\x4d\x3e\x97\x4d\xd1\x99\xdb\x33\x74\xf7\x9f\x27\xb9\xc9\xbe\x7b\xde\xa7\xb8\x42\xb2\x29\xdf\xa2\xf5\x6b\xff\xe5\x0b\xf6\xb0\x45\x03\xdd\xc6\xee\x58\xbc\x9d\xb1\x21\xf8\x74\xc9\xa3\x7e\xae\xf3\xb0\x38\x6b\xf8\xdf\xb6\xe7\xc3\xf7\x5d\x71\x91\xe5\x81\x2b\xba\xbc\xbb\xcc\xae\x60\x77\xd2\x83\x05\x39\x95\x3e\x5a\xec\x35\xb9\x6d\x96\x2d\xd3\xf9\x17\xfc\x9a\xbe\xab\x7b\xce\x60\x5a\xca\xef\xf5\x9c\x19\x1d\x93\x6c\x69\xef\xe4\xbb\x24\x03\xb6\xde\x0c\x56\xb9\xb8\x7e\x9b\x2e\x1d\x7e\x4f\x7d\x5f\x7b\x5b\xc1\x3c\x77\x9e\x2b\xf6\x6e\x25\x66\xb3\xb5\x5f\xbe\x1f\x99\xf8\x53\xfe\x58\x7e\x50\x36\x5e\x76\xf6\x62\xff\x65\xc7\x24\x3f\x5a\xb7\xe1\x1c\x87\xdb\x29\xf3\x75\xc5\xcf\xf0\x24\x9e\x49\x60\x40\x16\x9b\x80\x39\x1e\xe8\x4a\x02\xa3\xd1\xf5\xb4\x57\x5a\x8b\xe1\x55\x61\x73\x67\x8f\xb5\xf5\xbb\xda\x0b\xcb\x7f\x93\xfb\x5a\xe9\xa1\x62\x9e\x93\x98\x43\xf9\x85\xc5\x0e\x87\xcb\x93\xfc\x91\xf4\xe7\x22\xaf\x58\xfa\x63\x6f\x0c\x47\x98\xdc\xc7\x45\x4c\xac\x38\x4c\x71\x9b\xf9\xb8\xe5\x91\x17\xc9\xb4\x9e\x75\x03\x37\x3b\xf0\x3d\xb2\x2d\x5a\x53\x06\xe7\xd5\x7d\x94\x3f\xc8\x3e\x4b\x66\xf5\x7d\xad\xd7\x62\x83\x8b\xb5\x60\x6b\xe4\x1b\x75\x5f\x9d\x9d\xfc\xaf\xe4\xde\x72\x98\x95\x78\x04\xb9\x5a\x42\x7f\x9b\xeb\x94\x7c\x8b\x7c\x81\xd9\xd4\xe1\x31\x90\x61\x3a\xdd\x9f\xc5\xce\xb6\x91\x3f\x81\x9b\xc8\x96\xe9\x7b\x2b\x78\xde\x0c\x8e\x29\x3f\x37\xc0\xbc\x14\xcb\x18\xc6\x08\xbe\x75\x12\xf3\x49\x26\xa5\x2f\xba\xb7\xfe\xff\xea\x9e\x0f\xc8\xce\x4a\x47\x65\x1f\x64\x07\xf5\x9d\x81\x8e\x4a\x46\xa5\x6f\x86\x9d\x0c\x97\x31\xc9\x42\x22\x9e\x2c\xe0\x45\x86\xc9\xec\x1e\x93\x49\xde\x0f\x72\x44\xc9\x99\xe2\x2a\xc3\x10\xde\xfc\x4c\x7e\x66\x27\x06\x6d\xe0\xea\x6b\x60\x10\xf8\xd9\x90\x17\xcb\x15\xb2\xdb\x9c\x46\x1e\x51\x88\x8b\x37\x30\xb3\x8b\x5c\x44\xbe\x4c\xbe\x29\x05\x16\x0b\x8e\xa8\xb3\xdb\xc0\x2d\x67\xf6\x64\x0d\x0c\x71\x7f\x6c\xd3\x20\x1f\x94\xbc\xc9\x6e\x4a\xef\xe5\x07\x57\x74\x49\x67\xa8\x98\x48\xfe\x6e\x25\x07\x5d\xc0\xee\x2c\x96\xdb\xfd\x4c\x27\xce\xf1\xd8\xb0\x43\xd8\x41\xc3\x39\x2f\xf7\x79\xb2\x41\x96\x17\x91\x3b\x69\x1d\xb2\x27\x91\xd7\x6e\x60\x0a\x95\x5c\x4d\x3e\x47\xcf\x60\x3a\xcd\xf7\x94\x8b\xea\x3a\x27\xf8\xbe\xee\xa3\xdc\x4f\xf9\x92\x72\x48\xe9\xb7\xe5\x6e\xb3\x9f\xad\xe5\xc4\xe0\xda\x86\x29\x1c\x1e\x6b\x35\x9e\x53\xf1\xdc\x49\x0e\x6c\xd8\x6c\xf6\xcf\xad\xce\x52\x3d\xbe\xd2\xde\xe8\xda\x1b\x18\x65\x03\xeb\x94\xef\x90\x6e\x48\xcf\x06\x38\x63\xc8\x93\xee\x6b\xd8\xdc\xec\x7b\x62\xe7\x7e\x79\x6c\xa2\x67\x96\x3c\x1a\x8e\x03\x8e\xa6\x18\x59\x76\x41\x6b\x95\x7f\xd1\x7e\x0c\x74\xc0\x70\xb4\x06\xd6\x4b\x9c\xaf\x58\xca\xec\xfb\xec\x75\x02\xc9\x89\x9e\xcd\xf6\xf9\xf2\x6b\xca\x9e\x24\x30\xb3\xdc\x1e\x9b\xa0\x3c\x55\xcf\xa8\xb5\xea\xdc\x14\x33\x5c\xc4\xc4\xf2\x37\x92\x71\x9d\x5d\xc2\x77\xce\x91\xaf\x05\x5e\x90\xde\xe8\xee\x46\x1c\x4b\xde\x6c\x78\x6c\xa7\xd6\x13\xb8\x72\x71\x5c\xa1\xa1\xff\xa1\xa3\xb2\x7d\x1b\x76\xcb\x70\x18\x64\xcb\xf6\x33\xfb\xf7\x76\xf2\xc6\x81\x5d\xe8\xe0\x0e\x3b\xf6\x55\x39\x87\x64\x51\xb2\xad\x67\xd1\x7a\x25\x33\x92\x89\x95\xda\x83\xd6\x1d\x39\x9a\xf6\xcc\xb0\x3f\xf0\x93\x8d\x98\x50\x3f\x37\xdc\x65\xf7\xfd\x32\xbd\x00\xbf\x94\x9f\x3a\xc0\xda\x64\xa7\x0e\xe2\x52\xc5\xd4\x56\x17\x03\x63\xd5\x3e\xe9\x67\xed\x78\xf0\x3b\xd9\x4f\xfd\xd1\x75\x0d\x0b\xda\xdc\xe6\x36\xce\x57\xe7\xb8\x50\xbf\xd2\x19\xc8\x36\xea\x6f\xc5\xe6\x5a\xaf\xc9\x13\x39\x88\xe4\xda\x74\x2c\xfb\x19\x58\x7c\x0a\x36\x2b\xdb\x56\xc1\x85\x0f\xea\x31\x27\x58\xcc\x45\x6c\x3c\xc0\xe5\x77\xf0\x71\xf9\x02\xc3\xbb\x88\x23\xfb\x78\xea\x25\xf2\x37\x05\x5c\x6e\x0d\x7c\x39\x83\x3d\x4f\xd4\x01\xca\xa3\x03\x85\x5c\xc4\xe2\x10\xe2\xdd\x8d\x38\x40\xf7\xb4\x78\x07\x9b\x54\x91\x49\xc5\xd5\x17\x35\xc5\x84\xef\xb9\xb0\x93\x96\x73\x9f\x0f\xee\x2e\xdb\xa7\xf8\xdb\x30\x13\x70\x4c\xf9\xea\x89\x9a\x89\x72\x72\x3d\xb7\xe4\x2f\xe1\x1b\x14\xdf\x58\xcc\x9a\xfc\xf7\x2d\x2f\xcc\x6e\x83\x0a\xf6\xa1\x10\x9f\x9c\x81\x65\x75\x97\x99\x05\x4c\xc2\xe4\x68\xf5\xbd\x91\xad\xd5\xde\xeb\x0c\xa4\x83\xa6\x1f\xd5\x65\xe4\x00\x6b\xdf\xa8\xc9\x4a\xcf\xe7\xe3\x89\x6f\x2c\xfe\x05\xeb\x53\x1c\x3b\x81\xf5\x5b\x0d\x98\x98\xe9\x02\x33\x95\x1d\x31\x3c\x01\x5b\x55\xa9\x0f\x59\x5e\x11\x35\x28\xec\x95\xd9\x82\xe6\x58\xe7\x7c\x3e\xf5\x50\xc3\x9c\x2f\x8f\x37\xa2\x0e\x66\xf5\x2b\x9e\x4b\x7b\x5c\x88\xf9\x66\xbe\x3f\x51\x9b\xd1\x3e\x29\x5e\x33\x6c\xa7\xf8\xb3\x6b\x3f\xac\x3e\x95\xdc\x9e\x5b\x3d\xad\x52\x57\x89\xd8\x6c\xb8\xed\xb0\x7c\x61\x73\x3b\x6d\x72\x7a\x7a\xbd\xa5\x51\x57\xd6\xef\xca\xce\x1a\xee\x88\x8f\x53\x6c\x62\xba\x0c\x5e\xb8\x13\x7f\x9e\xd4\xe1\x65\x2b\xf5\x99\xce\x4c\x9f\xe9\x3a\x5a\xaf\xe5\x8a\xa7\xef\xb5\xf6\xb4\x51\xcf\x36\x3c\x2b\x6a\xc2\xbb\xdb\xb6\x95\xda\xaa\xd5\x55\xf1\xbb\xe6\xcf\xa9\x2d\x4a\x56\x24\x63\x03\xf9\xd4\xef\x8e\xf9\xc1\x0c\x2a\x78\xe5\x00\x53\xd9\xc0\x7a\x0d\x7f\xaa\xae\x9f\x99\xfa\x8b\xd5\x18\x4f\xbf\x87\xf4\xa1\x53\x0f\x94\x9f\x96\x8f\x3d\xc9\x9f\xa5\x43\x07\x7a\x79\xe0\x77\xb5\xb7\x53\x79\x70\x21\xe9\x94\xd9\xe6\xc9\xe5\x61\x23\x96\xb5\x35\xaf\x7e\x56\x66\xcb\xb2\x9f\xbf\xf9\xba\xdd\x6d\x61\xe3\x99\x64\x0b\x14\xaf\x4b\x1f\xe7\x90\xbb\xc9\x65\xa3\x80\xdb\x29\x8e\x54\x0c\x6c\x18\x2f\xb5\x10\xd9\xc5\x1d\xdd\xad\xe7\x83\xb5\x5c\xe4\x27\x86\x81\xcc\x6e\x6b\x2d\xbe\xc4\x6f\x5b\xed\x0d\xdb\xba\x70\xbe\x96\x6f\x13\x2b\xb7\xed\xd1\x07\xd9\x04\xc5\x02\x83\xb8\xb0\xe3\x1f\x2c\xc6\xa6\xb6\xbe\x53\x2f\xd7\x59\xef\xd4\x97\x13\xf1\xba\xd5\x5a\x0e\x97\x47\xf9\xb9\x46\xee\x37\xa2\x46\x42\x0d\x41\xb1\x85\xd5\x5e\xe1\x77\x68\xcf\x14\x5b\x18\x0e\x31\x63\x27\x89\xad\x14\x37\x4b\xee\xad\x26\xdd\x5c\x9f\x15\x13\xec\x60\x67\xba\x8f\xfc\xdf\x44\x2e\xa9\xfd\x95\xaf\xd7\x1e\x5b\x0e\x88\x6c\x4d\x70\x1d\x2a\x35\x73\xed\x83\xf1\x31\xf6\x37\xff\x9f\xdc\x8f\x54\x6a\xc1\x0b\xb1\xa8\x64\x5d\xb6\x20\xb0\x22\x3d\x93\x61\x27\x93\xc7\x62\x95\x9c\x79\x84\x7d\x9f\xc0\x4a\x13\xfe\x70\x78\x2e\x62\xba\xbd\xb9\x5c\x18\x4f\x62\x71\xff\x33\x51\x0b\xd1\xde\x59\x1e\x9f\xff\x94\xdf\x32\x42\x37\xa8\xd5\xdb\x79\x55\xbf\x96\xff\xde\x17\xc1\x56\xfa\x0d\x4a\xcd\x97\xbf\x49\x4e\x0a\x6e\xce\x5b\x76\xd3\xfb\x77\xef\x7e\x8b\x93\xf3\xf5\xfb\x77\xef\xbe\xf8\xd8\x3f\xfd\xe3\xf5\x53\xfb\x47\xff\xfc\x1b\x7d\xfe\xc5\xd7\xef\xdf\x7d\xf5\xef\x91\x79\xfa\x8f\x7f\x3f\x9f\xa7\xa1\x83\x17\x3a\x30\x91\x4f\x77\xec\x8c\xe1\x03\x5c\x6f\x50\xdf\x8b\x7c\x28\x21\xb3\x16\x4f\xf0\x7d\xe5\x96\x27\xb8\x91\xdd\x0f\x5b\x13\xb5\x22\xc3\x40\x66\x70\xef\xcb\x65\xec\x02\x1f\xd2\xba\x37\xce\xcc\x6a\x7e\x85\x78\x8e\x3a\x5a\xd4\xa4\x26\x70\xdb\x46\x2d\xb0\x13\x23\xc8\x66\x2a\x1e\x51\xbe\x67\xb5\x67\xb0\x22\xe9\x58\x70\x1e\xcc\xe6\x1c\x9e\x57\x29\x56\x32\xfd\x1a\x7e\xcd\x0a\xd7\x40\x31\x88\x62\xba\x15\x1b\xaf\x7f\xaf\xd4\xbb\x47\xd4\x78\x06\xb1\x77\xf6\x78\x6e\x83\x6b\x32\x13\xb7\x29\xd6\xb1\x3c\x69\xf5\x3d\xb3\xf8\x9f\xfc\x52\xfe\xdb\xea\xea\xd9\xd7\x6b\xf5\x8c\xec\x7b\x61\x7a\xd1\x5c\xaf\x64\x2b\x12\x78\xa0\xee\x31\xc0\x98\x4e\x30\x11\xab\xc3\x1e\x2e\xa7\x8a\x15\xa4\x9f\x33\x78\xda\x00\xf3\x35\x8e\x0d\x5c\x19\x5d\xdf\xf0\x52\xd6\x63\xb8\x44\x65\x8d\xd5\xf5\x51\xd7\x9f\xc0\xbc\x12\xf9\xb3\x6c\x6d\x02\x4b\x37\xbc\x80\x1c\xcc\xee\x3f\x81\x7f\x14\xb7\x67\x85\x58\xdb\xe2\xdd\x4a\x5e\xcc\xbf\xad\xee\x86\xfd\xdf\xc8\x83\x1b\x9c\x93\x15\xee\x56\xc3\x2e\x18\x46\x97\xbd\x2e\x2b\x7f\x6e\x35\xfa\xc3\xed\xb2\x64\xb4\x51\x03\x1a\xf0\x7c\xac\x46\x05\xce\x60\x7f\x37\xf7\x65\x8a\xd3\x15\x33\xcb\x8f\x77\xb0\x53\xd9\xb3\x8d\xba\x59\x82\x67\x21\x9b\x17\x79\x49\x49\x0f\x0e\xbd\x72\x4f\xdd\x43\x72\x3f\xe0\x6b\x59\xad\x19\xac\x65\x02\xdb\x56\x9c\x32\xb3\x8f\xa6\x87\x60\x02\x86\xb9\x6e\x1e\x37\xcb\x7e\x67\x62\x8b\x06\x56\x61\x3c\xa9\xd5\xf7\x4b\xbe\x52\x7e\xd4\x6a\x30\xb3\x7f\x77\x20\x2b\x4b\x22\x46\x1d\x8f\x7f\xdd\xc9\xbb\x8d\x9b\xb3\xf9\xde\x28\x86\xd4\x73\xca\x2f\x4f\x11\x57\x64\xd7\x41\xc3\xc9\xc9\x21\x13\x98\x47\x85\x3b\x67\x98\x41\xc4\xd4\x60\xb2\x9d\xb8\xc5\xb0\x70\xf4\x67\xa2\x5e\xaa\xfd\x34\x9c\x97\xfa\x8f\xfc\x9b\x64\xb0\xe1\x53\xf4\x79\xa3\xa6\x3a\xf5\x07\x23\x3e\xc1\xfd\xe4\x8b\x0f\x30\x04\xf9\xe6\x85\xdc\xa3\xa2\x33\x09\x8c\x64\x05\xf7\x9f\xa8\xd1\x6e\xd8\xff\x95\x38\xcd\xb0\x71\xea\x7c\x3a\xaf\x35\x38\x49\x95\x5a\x5b\x75\x5b\x67\x35\x80\xc3\xcf\x7a\x03\x13\xad\xf8\xa6\x0b\xce\xe1\x4c\x3e\xa3\xdc\x6f\xc3\xaf\x5b\x1d\x3f\xb9\x5c\x5d\xd4\x1f\x77\x72\x31\xe9\x6b\xa1\x16\x74\xc0\xf5\x91\x6d\xd2\x9e\x6d\xe0\x5d\x15\x0c\xd1\x6c\xc5\x4c\xed\xa1\x7b\x1c\x51\xb1\xa3\xf2\xa1\x07\x58\xe1\x0a\xfe\xb8\xc1\xb7\x5c\xe1\x50\x54\xec\x8d\x5d\x77\x87\xf3\x34\xe0\x6a\x10\x1f\xcc\xe4\x50\x8d\xba\xc3\x82\x4f\xdf\xd0\xbf\x01\x26\x23\xd9\x96\x2f\xb5\xb8\x18\xfb\x21\x9b\x92\xe1\x25\x4e\xe4\x64\x99\x18\x61\x27\x0f\x37\x2e\x55\xf6\x3d\xd2\x7a\x0c\xf3\x21\x2f\x30\x5d\x06\x6f\x38\xc8\x61\x0d\x7f\x3c\xdc\xa6\x59\x0d\xbc\xbb\x5c\xed\x70\x7a\x16\xf8\x0d\x86\xaf\x80\xad\xac\xd4\x44\x74\x06\xb2\x11\x56\x03\xcc\x6e\x57\x2c\x26\x4c\xbe\x06\xad\x5d\x76\x4b\xf7\xb4\x58\x7b\xf6\x3d\xdb\xa9\x89\x9a\x2e\x9f\xae\x93\x86\xe1\x24\x6a\xc1\xe4\xe9\xb2\x2f\x8d\xfa\xc9\x45\x8d\x43\xf6\xa6\x80\x41\x1b\x97\x08\x4c\xb4\xad\x7e\x5e\x03\x6e\x91\xe2\x58\xe3\xa2\x90\x87\xf5\xa8\x4b\x0d\xdf\x57\xf3\x31\xd7\x23\x93\x07\x7a\xaf\xff\xdf\xc8\xd5\xa4\x93\x27\x72\xd3\xd8\x67\xe9\x86\xc9\xea\xea\x72\xaa\x3d\xd9\xb1\x09\xca\x4b\x27\x6a\x1d\x83\xdf\x99\xc1\xfc\x36\xf8\x67\xb2\x5d\x66\xc7\xc9\x27\x1b\xd7\x4b\xf0\xaa\x66\xf6\x48\xf6\x4d\x3a\xa5\xe7\x54\x2c\xa0\x78\xd8\x62\x70\xb0\x03\xed\x8d\x61\xbd\xf0\xdd\x12\xf5\x52\xe3\x24\x34\x78\x12\xd4\x1c\xe6\xe0\x8e\xed\x0f\x4f\x57\x76\x42\xe7\xdd\xa9\xbf\x94\x88\xad\x33\xb6\x82\xba\x94\xc5\xf3\xbb\xcb\x95\xd5\x28\x76\x5f\xb7\xd6\x60\x75\xaf\x09\x19\xdf\xa8\xb7\x81\xd9\x77\x6c\x4e\x25\x16\xb7\xda\x1c\xbc\x60\x5d\xe7\x80\x33\x75\xc0\x07\x94\x0d\x34\xbb\x3f\xb9\x2f\xdd\xe1\x48\xe9\xde\x17\x1c\x19\xc5\x2d\x07\x38\x9c\x71\x72\x2b\xb1\xe5\xe2\xcf\x6c\xbf\xb7\x80\x99\x0c\x78\x0b\xc9\xed\x50\x26\xae\x3f\xa2\x9e\x0f\xae\x61\x5c\xdb\x09\x9e\xe3\x42\xfd\x6e\xf3\x6b\x1a\x6e\x4e\xec\xbe\xc3\x15\x3b\xe1\xc1\x4d\xf8\x31\xc3\x78\x1a\x76\xb7\x3c\xb1\xb4\xce\xc4\xce\x16\x2e\x9b\x64\x63\x81\x97\x97\xa8\xd9\xe8\x3e\x03\x3e\xc6\x8a\xdf\xbd\xc0\x42\x2e\x30\x02\xe5\xf4\x81\xcf\xaf\xd4\x63\x13\x36\xf5\x04\x5f\x38\xa3\xd6\x5c\x9d\x43\xba\x81\x21\x18\x8e\xbc\xba\x1e\x2a\xb6\x92\x8c\x4c\x9c\xd7\x8a\xcf\x5e\xc0\x70\x0c\x3f\x86\x3f\xbd\x10\x47\x55\xea\x5b\x13\xf5\xff\x8d\x7c\xd4\x7c\x6d\x82\x77\x48\x9c\x90\xd9\x9f\xa8\xa3\xcc\xc4\x6c\x16\x5b\xac\xf0\x60\xe1\xc9\x24\xfc\xae\xe9\x3a\xb9\xa8\xe4\x55\xe7\x60\x1c\x16\x78\xa3\x17\x71\xdc\x06\xfe\xd9\xe0\x89\x9c\xe4\xb1\xb2\x69\x56\xc7\xa5\x7e\x20\xfd\x59\x78\xee\x1c\x35\x36\x62\xb3\x02\x76\x61\xd8\x20\x9c\xac\xa8\xa5\xed\xe8\x93\xc5\xbb\x27\x7c\x2e\x6c\x9b\x71\x3b\x3a\x76\x82\xdc\xac\x51\xdb\xd5\x79\xac\xf8\x43\x3d\xcf\xa0\x86\x69\xb6\x0a\x6e\xa4\xc5\x40\xe4\x3e\x2d\x38\x4d\xd9\x65\x4b\x32\xaf\x38\x42\x7a\x24\x5f\x2b\xdb\xa3\xf3\x6b\xe4\x7f\xf9\x7a\xea\x7a\x3b\xb9\xee\x80\xef\x72\xc2\xd3\x19\xc4\x8c\x19\xae\x8d\xe9\xc8\xe5\xf1\xbe\xf1\xb2\xa8\x0d\x48\x5e\x0a\xf2\x58\xa2\xa6\x7b\xc0\x6b\x58\x5c\x66\x66\x6a\xda\x3b\xf9\xb7\xf1\x3c\xa9\x49\x6e\xf0\xd4\xb7\x37\xb5\x3c\xc9\xb1\xe5\x2b\x05\xbc\xb8\x79\x7e\x2c\x39\xca\xac\x73\x21\x2e\xa9\xc8\xa4\x6c\xbc\xd5\x63\x38\xd3\x8a\xff\x3b\xe1\xa8\x2b\xc6\x58\xe0\x71\x58\xbc\x02\x77\xd5\x62\x82\x8c\xfd\x85\x13\xdd\xe1\x5c\xcc\xf0\x8e\x66\x7c\x5d\x0e\xfc\x10\x8c\xb0\x51\x33\x33\x6e\x15\xf6\xcc\x9e\x17\x2e\x80\x71\xb8\xa8\xb3\x67\xec\xc0\x0a\xef\x64\xa7\xbe\x63\x75\x4f\x62\xc1\x84\x8d\x31\x5c\x89\x78\xa2\x07\x7f\x91\xf3\x96\x4c\x58\x0d\xeb\xf0\xb8\xaf\x11\x63\xcd\xf8\x8b\x1d\x1e\x86\x71\x3c\xa8\xbb\x2e\xd4\xd4\x07\x39\x47\x61\x5f\x74\x5e\x13\xb8\x7b\x86\xbb\xdb\xc0\x35\x3b\x3e\x72\x1e\xcf\xbe\x27\xb8\xd6\x8a\xed\x26\xce\x6a\xc0\xfb\x37\x0c\x96\xda\x9d\xe1\xea\x60\xe4\x16\x27\x1e\xd4\x22\xe1\xb4\x99\xcc\xe3\x53\x07\x31\x8e\xe4\x6e\xa7\xfe\x56\xf1\xc3\x92\x53\xed\x8d\xe2\x6f\xf9\x3b\x9d\x63\x86\x0b\xb9\x22\xf7\x7a\x8e\xc6\xba\x8c\xcb\x42\xae\x6a\xbc\xe9\xc3\xcf\xc9\xea\x31\x0b\x3c\x14\xf6\x6e\x81\xe7\x64\xf5\x5d\xf0\xae\x02\xf7\xd5\xfe\x0d\x5e\x6c\x38\x02\xb1\xb7\xd5\x81\xc0\xff\xa5\xf7\xda\xf7\x13\x2e\xc8\xc5\x73\x35\x64\x52\x32\x6c\x7b\x06\xc7\xc2\xe4\x83\x38\xad\xe2\xab\x2b\x1c\x79\xe9\xb2\xf6\xab\x51\x07\x8f\xff\x9f\xf9\x7f\xc3\xcf\xc8\xc5\x6d\xef\x76\xd7\xc5\x8d\xb8\xd2\xd6\xbc\x3f\x39\xf4\x0e\x46\x34\x51\x37\x34\x5f\xdd\xc8\xbd\xa8\x2d\x65\x62\xf6\x0a\x57\xc6\x6a\x77\xd4\x20\x77\xfe\x5f\xfa\x60\xbc\xf6\x4a\x0d\x0b\x2c\x4f\xba\x22\xbd\xdc\xa9\x41\x19\xde\x4e\x9e\xdf\xe1\xc4\x17\x78\x36\x16\x4b\x91\x8f\xcb\xf7\xac\x51\x5f\xde\xfd\xda\xa6\xeb\xe1\x9b\x2a\xf1\x73\xf3\x73\xb4\x3e\x9c\xe2\xdf\x35\x8c\x6e\xf5\xfd\x96\xdd\x4d\x70\x1b\xfb\x09\x9f\x0a\x1c\x29\x45\xed\xed\xa4\x2e\x32\x81\xaf\x63\x5f\x32\xdc\x37\xe9\xc8\x41\x5d\xd8\xb0\x9f\xfd\xa9\x5d\xeb\x39\x75\x4d\xc9\xbe\xe5\x8b\xe0\x10\x23\x6c\x68\xf0\xf6\x06\x7b\x41\x4d\xef\x22\x9e\xae\xd4\x8f\x7a\xa7\x0e\x50\x1e\x2e\x6a\x70\x73\x8d\x8b\xbe\x83\x81\x16\xb8\x59\xf8\x6f\xd9\x58\xe9\xa5\xee\xa3\x3c\x57\x3e\xa4\xd0\xcf\x51\xf0\x77\xe7\xfc\xf4\x68\x18\xe7\xae\xb9\xec\x6c\xf8\x90\x85\x3d\xb1\xf5\xc1\x53\x8a\x7a\x42\x23\x7f\x32\x1c\x8e\x3e\x92\x89\x38\xa3\x83\xff\x2d\xd4\x1d\x2c\x8e\x99\xe1\x94\x24\xf8\xf9\x6f\x6a\x81\x1b\x67\x69\x71\x72\x71\x9b\xfb\xb9\xc6\x75\x7a\x9e\x57\x89\x9f\x46\x7f\x70\xfd\x4e\xfe\xb4\xc1\xf7\x33\xfe\x13\xf5\x7b\xf3\x9f\xf4\x12\x0d\xf6\x76\xb0\xb7\xda\x0b\xc9\x8f\xe5\x81\xe1\xeb\x4e\xb7\xcb\x2b\x35\xa8\x04\x1f\x48\xb2\x50\xca\xc3\xb7\xd8\xb7\x87\xcb\x75\x61\x97\x8c\x5f\x0b\x8f\xd9\xb0\xec\xd3\xd7\x23\x1b\x97\xe1\x1a\xcc\xf0\xfe\x2a\xb5\xad\x79\x7e\xb8\xef\x33\xbc\x68\x9d\xcf\x72\x3d\xb1\xc8\x05\x3e\xa1\x78\xd2\x7a\xbd\xf2\x93\xcb\x58\x3d\x28\xfa\x1c\x9a\xef\x5d\x05\xd3\x3c\xc1\xae\x2d\xc6\xe6\x7a\x05\xce\xd9\x1e\x79\x20\x31\x44\x25\xee\x3a\xb0\x7b\x3b\x7c\x99\xc0\xd8\xca\x78\xe2\xbc\x09\x2e\xdf\x06\xd7\xc0\x64\x09\xdb\x98\x83\xf3\xdc\x3d\x5e\x3c\xa9\x1b\x58\x1f\x08\xfc\x58\xab\x9f\x97\x27\x76\x94\x8c\xd8\xd9\x12\xb3\xcf\xd8\x4e\xf9\x18\xc9\xd2\x01\x3e\x34\x88\x89\x17\x7c\xb3\xe4\x67\x85\x4f\xa2\xe7\xd4\xbe\x46\x0e\x5b\xe6\x27\x87\xe9\xe0\x2b\x33\xf8\xa2\xf1\xda\x77\xea\x8a\x2b\x32\xcb\xcf\x8c\xc7\x84\x4c\x47\x9c\x34\xda\x1b\x1e\xcc\x70\xbf\x2f\xbb\x5b\xa8\x07\x0e\xf8\xcf\x85\x9a\xbd\x3d\xc7\xe5\x58\x40\xc1\xaf\x74\x38\xb0\xfa\xbb\xc0\xc5\x32\x1c\x8d\xda\xcd\x85\xaf\x1b\xec\xaf\xe5\x09\xf4\x1a\x19\x1f\x88\x9e\x80\x0d\xde\x62\x70\x64\x8d\x23\x02\x17\xaf\x82\x4b\x2d\xe7\x83\xa7\x4a\x66\x2d\xf7\x83\x33\x66\xbe\x9e\x1a\xe8\xa0\xd6\xaf\x78\x7d\x07\xd7\xde\xf0\xbd\xb2\x9d\xf2\xd1\x0b\x75\x1a\xf9\xd3\x96\x7c\x5f\x4f\x70\x14\xad\x6f\x8d\x3e\x19\x6c\xd8\x11\xba\x35\x3b\x7e\x6e\xdc\x36\x62\xf8\x42\xef\x95\xfc\xae\x6c\x4c\xa6\x9f\xca\xb0\x85\x04\x46\x30\xc8\xbd\xd1\x85\xc1\x3d\x57\xfc\xeb\x05\x77\xc7\x38\xe7\x27\xbe\xbf\x92\x13\x6c\xd4\xd9\xd7\x87\x0b\x72\xa6\x47\xc7\x2c\xd6\xa6\xee\xb8\x52\x4f\xb3\xda\x19\x36\x25\x78\xcd\x85\x1c\x2a\xc1\x1f\x1b\xd8\xb9\x84\x0c\x59\xad\xba\xf9\xde\x5e\x70\x01\xe6\xf4\xf4\x30\xd4\xe5\xc1\x92\xcf\xfe\xf4\xa5\x9c\xd4\xe5\xe6\xb0\x57\xd8\xe6\x4c\x9f\xcf\x45\x1d\xb4\x44\xce\xbc\xfb\xba\x2d\xc7\x24\xce\x9f\xa9\x5b\x6e\xec\xf5\x04\x1e\xa7\x67\xde\xe1\x15\x57\xb8\x75\xda\x63\xed\x83\xe5\x27\xf0\xf3\x46\x70\x48\x62\x0f\xe8\xf7\x89\x7a\xcb\x44\x4e\x55\xc0\x4c\xac\xde\x34\xdc\xe6\x68\xef\x14\xc7\x0e\xfa\x52\x26\x30\xca\x02\x97\x70\x86\xef\xdc\xa2\x26\x0c\xaf\xda\xf8\xb1\xd7\xc3\x1f\x5f\xe1\x37\xc9\x27\x6d\x70\x3c\xb5\xbf\xc1\x1b\x31\xb9\xa4\xc7\x4b\xb6\xa1\xc3\x9b\x6a\xe4\x0f\x99\xbe\x55\xf3\xe9\xd1\x33\xb5\x80\xe9\xd5\xa7\x6e\x15\xdc\xa4\x2d\x7a\xec\xe0\x95\xcd\x60\xec\xd2\x75\xe5\xe7\x33\xba\x6e\x7d\x0a\xd8\xf2\x09\x1b\xdd\xe1\x34\x77\x72\x77\xe3\x78\x62\x9b\x76\xf2\xc0\x0c\xff\xc3\x30\x08\xfa\x00\x32\x78\x8d\xd6\x97\xc0\xea\xac\x0f\x0b\x3e\xbe\xe1\xb8\xd4\xbf\x06\xfd\x53\x99\x5e\xbd\x05\x7f\xa1\x78\xa2\x85\xdd\x61\x5f\x25\x1b\x05\x4c\xdf\x9e\xeb\x20\xcf\x1d\xc4\x8f\x70\xf5\x94\xcb\xa6\x01\xde\x37\x3f\x7c\x8a\x02\xa7\x39\x83\x65\x5c\x60\x47\x56\xc7\x67\xcd\x17\x1c\x21\xf3\xf3\xf4\xcb\x0e\x72\x9a\x09\x3e\x8d\xf5\xcb\xad\xe8\x06\x3c\x9f\x1d\x8e\x72\x06\x5b\xb0\x98\x94\xb8\x22\x6a\xeb\xb2\x09\xb2\x63\x27\xbc\xf8\xe0\x5d\xd6\xc0\x90\x8f\xa7\xce\x67\xf8\x32\xb5\xd5\x03\xac\x45\x31\x8c\xf1\x1a\x0e\x7a\xb2\xe9\xe5\xec\xe4\xfc\x9f\xf9\xab\xf4\x67\x18\x97\x2a\xc1\x53\x3a\x38\xc7\xeb\xe9\x3f\x5d\xc1\x15\x3e\x73\x96\x26\x97\x5b\xcb\x01\xa2\xcf\x01\x5f\xd2\xc0\x04\x2f\x70\x33\xc5\x30\x2b\xb8\x5b\xc2\xee\x9a\xac\xaf\x6e\x2b\xad\x8f\x6b\x7a\xea\x80\x86\x61\x10\x37\x9f\x60\xd0\x8d\xb8\x7f\x87\x83\xa7\xcf\xac\x1f\x87\x1a\xb0\xf5\x74\xd2\xb3\x66\x78\x1d\xd8\xc4\x5f\xd4\x1d\x2b\x7d\x12\xed\xc1\xa1\xa7\xf5\xff\x54\x77\xa4\xfa\xf7\x77\x95\x1e\xb9\xc6\x6f\x54\x1f\xbf\xed\x3f\xfe\x95\x02\xe4\xaf\x9f\xea\x77\xfd\xdb\x5f\xee\x5f\xfe\xf6\xda\x23\xf1\x47\x86\x4f\x91\xa9\xef\x5f\x70\xe4\x74\x9e\x17\xfc\xf4\x09\x7c\xc5\x7c\xc4\xe6\xf2\x64\x75\xbe\xf6\xc4\x5e\x1b\xb6\x73\x87\x3b\x74\x51\x43\x3c\xc0\xef\x2d\x97\x38\xc8\x93\x2f\xd7\x0b\xd9\x47\xd9\xd0\xe0\xd4\x5b\x2f\x53\x26\x06\x9f\xc1\x1e\xc1\xe2\x16\x7a\x7a\x8d\xdb\xb1\xba\x2d\xd9\xb1\xf9\xd1\x0b\x3c\x83\x2b\xf5\x37\x9c\x39\xcb\x21\xe8\x7b\x37\x8e\x33\xf7\x39\xc3\x66\x92\x23\xc9\xa6\x18\x1f\x79\xa5\xd7\x12\xee\xf6\x02\x6e\x91\xc9\xb5\x56\xe6\x1e\x1c\x70\x02\x4d\x77\x4e\xea\x52\x1d\x0e\x5b\xf3\x7d\x2b\xf4\xd4\xf5\x09\x7f\xd4\xb9\x16\x98\x78\x21\xaf\x9e\xe8\x27\x29\xd4\x08\x2a\x38\xdf\xa0\x6f\xd2\xb8\x4b\xe0\xfd\x1b\x78\x80\x7c\xa2\x9e\xe5\x62\xfe\x40\xa2\xef\x32\x23\xcb\x05\x9e\xec\x45\xde\x75\xd1\x73\x96\xe0\x29\x1b\x17\x8d\x1a\x5e\x21\xbe\x6f\xcc\x87\xe8\xf4\x2a\x9f\xe0\xa9\x2b\xfc\x8e\x0b\x6e\x96\xee\xbb\xc0\xdd\xd8\xd0\xd3\x0c\x1f\x6e\xa5\xfe\xb8\x10\x6b\xca\x57\x69\xdd\xa9\xb8\x6d\xe8\xe4\x9b\x53\xf4\xcc\xcf\x60\x20\xd8\x01\xe9\xf9\x4a\x9f\x51\xc1\x8f\x67\x38\x34\x83\x5a\xa9\xe4\xbb\x50\xfb\x31\x2e\x03\x7f\x14\xcf\x34\x9e\xb5\x5e\xf0\xa9\xb2\xc7\xf4\x86\xbf\xc0\xc9\xd2\xf3\xe8\x3a\x3a\xe3\x19\x5f\xad\x33\x32\xbe\x45\x71\xdf\x5a\x67\xb7\xdf\x13\xfc\x52\x8b\x6f\xd3\xc3\x97\xb4\xba\x6d\x71\xf9\x3b\xf6\xa7\x9f\x3b\x38\x1d\x0b\x79\xad\xed\xf5\x04\x17\x7b\x76\xf9\xb1\xeb\xb0\x86\x63\x7d\xb8\x59\x83\xe7\xdf\x83\xe3\xba\xd3\x7b\x05\xf7\xc2\xfa\xa6\xa8\x61\x07\xff\x7f\xd0\xf3\xd1\x91\xf3\x0c\x37\x33\xf8\x2e\x56\x9b\xda\xe8\x83\xbd\x9e\x3e\xf1\x06\x76\xd8\xa8\x71\x5c\xcc\xf6\x30\xee\x19\xbe\x36\xd3\xf7\x16\xdc\xfb\x78\xae\x12\x7d\x7c\x07\xf9\x1f\xf7\x5e\xa9\xf3\x9b\xac\x31\x23\x41\x76\xfe\x40\x3e\xa4\xbb\x92\x2d\xeb\x79\xdd\xdd\xbf\xe8\x79\xa5\xeb\xca\x8f\xb5\x57\x09\x1c\xc9\x72\x5e\x74\x62\x80\xc1\x1f\xd7\x13\xdf\x47\xaf\xa1\xcd\x05\x40\x4e\x37\x38\xab\x13\x35\xe7\x13\x3d\x2a\xf8\x3a\x8b\x1d\x2e\x8f\x05\x37\x6a\xf5\x16\x5b\x81\xeb\x4d\xf4\x47\x4a\x86\xe4\xff\x2d\xc6\x5b\xfd\x9e\x9d\xda\x44\xc5\x16\x29\x6e\xb5\xb8\x05\x1f\xd6\xe9\x2d\x3d\xe9\xad\xdf\xf1\x4d\xd6\x4f\xd2\xf1\xcf\xe0\xee\x92\xb5\x83\x7e\x82\x0c\xa6\xd9\xe1\xcb\x1c\xd8\x1b\xb3\x5d\x70\x11\x25\x0b\x83\x33\x5e\xc9\xc9\x1b\x35\xe9\x8b\x5a\xf5\x05\x3e\x57\xc8\x6b\x24\xf3\x0d\x3c\xd2\x6a\x4b\x9b\xeb\x84\x3e\xdb\x98\x33\xd0\xd1\x09\xab\xfd\x2e\x1e\x87\xcf\xf0\xd0\x12\xf5\xe7\x42\xcf\xb6\xe1\xfe\x2b\xf5\xc3\xe9\x89\xd5\x22\x87\x6f\x60\x5e\xd1\x5f\x3d\x51\xcb\x33\x0c\x9d\x3a\x82\xec\x5d\x82\xa3\x65\x9c\xb5\xe8\x15\xa1\x06\xbd\xd1\x7b\x6d\xf1\x28\xb3\x59\x32\x18\xc2\x0e\xd7\xd6\x62\x12\x6a\x73\xd6\x6b\x38\xe0\x16\x9c\xf4\xa8\x81\x79\x44\xce\x19\xfd\x64\xc6\x15\x66\x5f\x2b\xf9\x90\xe9\xd4\x0e\x56\x14\x3e\x90\x3e\x94\x46\x9f\xf4\x1a\xb5\x5c\x6c\xdf\x8c\x4f\x32\x8c\x9e\xde\x44\xc3\x08\xf2\x9b\xfe\x15\xec\x83\x61\x28\x70\xf3\x1a\x3d\xca\x56\x43\x24\xbe\x33\xdc\x18\x7e\xcc\xc9\xb9\x4d\xcc\x7a\x30\xfc\x3b\x3d\xf5\xcd\x01\x7f\xde\xfc\xe7\x4a\x9f\x57\x07\xcb\x67\x6e\x4f\x61\x7e\x86\x71\x61\xf6\xc7\x1f\x7c\x96\xff\xec\xf7\x3c\xc0\x68\x6a\x7e\x7a\xad\xa4\xe7\x85\x3a\x6d\x82\x5b\x78\x12\x37\x59\x6c\x04\x4f\x6e\x2b\x4f\x8f\xbc\xec\x76\x02\xcf\x5e\xc0\xc7\x65\x8f\x2c\x8e\xa5\x2e\xd6\xc8\xe7\xb4\x27\xc6\x29\x98\xe9\x41\xa0\x4f\xda\x7a\xcb\x88\x95\x75\x9e\x85\xbe\xea\x3d\xb8\xf6\x15\x0e\x39\x38\xdc\x09\xae\x7a\x81\xd1\x5d\xf4\xc4\x17\xb8\xa3\x89\xfc\xd6\xec\xc1\xe4\xf9\xd8\x82\xaf\x34\x1e\x77\xf4\xf9\x52\x13\xff\xcc\xd7\x3c\xdc\x76\xe9\x8f\xf9\xa8\x0d\x1e\xcd\xca\xd9\xe3\x6b\x12\x71\x8f\x71\x6b\x90\x2d\xe9\xcf\x20\x6e\xaa\xf4\x89\x35\x9e\xad\xc2\x5d\x0e\x5f\x67\x7a\x34\x3d\x9c\xeb\x7a\x3e\xf3\x4d\x16\x64\x63\x83\xc7\x1c\xd7\x37\x2e\xfd\xe2\xfb\xba\x92\x97\x0c\x6a\x26\xc1\xc7\xef\xe8\x4d\x05\xcb\x2a\xe5\xb1\xb5\x11\xab\x2d\x60\xa3\x27\xbd\xf2\x36\x6b\x81\x5a\xc0\x86\x1d\x5b\xa8\x1b\x19\x86\x02\xfe\x6f\xb5\xa8\x44\xfc\xc0\xdc\x83\x54\x9f\x5e\x93\x95\x5c\x53\x7e\x26\xb0\x10\x9b\x1d\x44\x1f\xfb\x06\xd6\x50\x88\x4f\x2b\x1c\x8a\x93\x38\x69\xc0\x09\x99\xf1\x37\x16\x3b\x52\x93\x90\xad\xb4\x9a\x56\xf6\xf8\x63\x8b\x5e\xf2\xe1\xb9\x44\x86\x73\x13\x7d\x8a\x15\x9e\x7d\x87\xf3\xba\x52\x6b\xd8\xc0\x59\x0f\xb8\x06\xc6\xd3\x81\x47\xbf\xd1\xab\x36\xa8\x0f\x1b\xf6\xb2\x7a\x2e\x78\x11\xdb\x1e\xd1\x17\x01\x66\x9f\xe1\x98\x54\x70\xdb\x4c\x7d\xa9\x33\x13\x6a\xa5\x0f\x60\x99\x89\x9f\xc1\x39\x56\xf2\x8f\x0b\x6e\xc7\x86\xed\xaa\x60\xdb\x07\x58\x74\x9e\x9f\x3e\xa8\x8b\x5a\xbc\xe9\x6d\xd4\x5b\xf0\x83\x27\xbd\x4e\xc6\x87\x85\xfb\x64\x7d\xa0\x95\x99\x46\xe8\x9b\xf1\xb5\xc9\x99\x0b\x5c\x7f\xb3\xe3\x0b\x73\x10\x88\x13\x66\xfa\x81\x13\xf6\xd1\xf2\xf0\xf3\x99\x4d\x60\xb9\x17\x39\x77\xa7\x5f\x69\x63\x8e\xd1\xce\xbc\x9f\x09\x9c\xca\xfa\xae\xc1\x73\x27\xfc\xf1\x0c\x7f\x6f\x63\x26\xd4\x19\x3c\x7b\x30\xac\x03\x7e\x9e\xf6\x5e\x9f\x7f\xe6\x08\x34\xf6\x84\x7c\xfc\x0a\x8c\x77\x01\xaf\x67\xc6\x4b\x86\xcb\x35\x82\xd7\x0f\x2f\x77\x62\x9e\x95\xec\xa1\xfe\x5e\xe8\x81\x3a\x83\xa3\x44\x1f\xa2\x61\xbd\xf4\x4e\x6b\x5f\x66\xfa\xfb\x96\xe0\xa8\x91\xaf\x0c\x62\x0f\xab\xb1\x73\x16\x3d\x3d\x73\x97\x4c\xcf\xb0\x95\x3b\x3d\x29\x86\xc1\x92\x0f\x18\x37\x60\xf3\x6b\x75\xfc\x79\x67\x16\xcf\x39\x9e\x39\x68\x95\xbe\xa3\x0c\xef\x66\xa6\x17\x2b\x64\xe4\x62\xb6\x41\x89\xbe\xc0\x02\x9e\x98\x89\x03\xb1\x1f\xa1\x73\x33\x73\x20\x0c\x6f\x28\xc4\x7c\x33\xdc\x6d\xe6\x6e\x5d\xcc\x8d\x6a\xf4\x29\xb6\xf5\xe9\x9b\x95\x7d\xd9\xe1\xe4\x65\xf6\x24\xc3\x81\x1a\xf4\x97\x58\x8f\x77\xe0\xe1\xc4\xce\x8d\x98\x70\x79\x93\x13\x36\xf0\x80\x89\x59\x49\xb2\xfb\x15\x6e\xe5\x36\x1e\x8e\x7e\x45\x9e\x77\x30\xb3\x0b\x3d\xb2\xd8\x66\x80\x0b\x2e\xe0\x09\xcc\xc1\x99\xb1\x87\x85\x3a\x95\xcd\x8a\x58\xc1\x23\x3a\xf1\x0e\xfd\xd9\xe1\xf3\x6c\x5e\x08\xfc\xfb\x44\xff\xe6\x00\xf3\xb1\xf8\x24\xbd\xe9\x8d\x61\xde\xd6\x09\x86\x50\xa8\x57\x6e\xf0\xb4\x12\xbe\xca\x62\x94\x88\x0d\x17\xbf\xc7\x09\xa7\xa2\xd0\x9f\xb9\xd2\x9f\x31\x83\xa1\xcb\x5e\x04\x67\x3f\xa1\xab\x33\x6b\x3f\xb8\x86\xc5\x5a\xc1\xc5\x82\x87\x74\xd2\xb7\x95\xc0\xd8\x16\xfa\xee\x3b\xf5\x9c\x41\x3f\xa5\xfc\x62\xc4\xb8\x3a\x83\x1d\x1c\x71\x25\x06\x5d\x88\x5f\x37\xea\xc9\x6b\x7d\xf6\xee\x73\xef\x39\x31\x85\xf9\x77\xec\x72\xf4\x7c\x37\x7a\x1e\x0f\x72\xcd\x83\xd9\x4f\x75\x79\x66\x03\x46\xad\x2b\xe6\x59\x1d\xc4\x3a\x56\xff\x9d\xe0\x67\x31\xe3\x70\x21\x97\xb7\xfe\x0a\xea\x69\xa3\x3f\x33\x3e\x2e\x7a\x66\x62\x36\x9a\xdd\x13\xdc\xcd\xfc\x59\x76\xbd\x9f\xc1\x15\x66\x66\xd3\x4c\x61\xcb\xe9\x15\xb4\x98\x11\x6e\x84\x7e\x6e\xb3\xde\x98\x89\xa3\xb3\x4d\xcc\x6b\x32\x7f\x05\x9f\x31\xfa\xfa\x15\xcb\x18\x3e\x98\xfd\x67\x0b\xf6\x2b\x81\x7f\xcf\xd8\xed\x95\xf9\x61\x95\x7c\xe2\xcc\xcf\x4c\x84\x1e\x7d\x79\x3b\xb5\x09\x78\x21\x33\xba\x29\xd9\xd4\x3d\x64\x37\x1b\x7d\x61\x66\x37\xb0\xa3\x09\xdb\xd2\xc8\xc1\x8c\xef\x47\x0d\xfa\x02\x67\xae\xc1\xb3\x65\x6e\xc0\x06\x6f\x60\xb0\xee\xcc\x6c\x94\xc0\xa9\x07\x7d\x18\x83\x5e\x3f\xe3\xd9\x11\x4b\x19\xef\x09\xfe\x73\x82\xef\x60\x71\x27\x39\xb7\x71\x52\xc0\x18\x3a\x76\x22\x7c\xf6\x16\xb3\x18\x03\xab\x81\x8b\x2e\x5b\x6c\x73\xc5\x98\xa7\x56\xe8\x39\x9c\x98\x97\x68\xfd\x51\xf3\x33\xbb\x27\x23\x9f\x3b\x3e\xc2\xf2\xaf\x98\x2f\xb6\x50\x83\x62\xbe\x5b\xc7\x56\x1f\xd4\xf1\x1a\x18\xff\x0c\xcf\xc0\x70\xd2\xfe\xd4\xe0\x1b\x98\x4b\x85\x97\x12\x35\x1c\xe3\x86\x20\xd7\x9d\x7e\xff\x3d\x66\x57\xc2\x8d\x3e\xce\x27\x67\x1b\xcc\xea\xb1\x1e\x11\xf8\x69\xc6\x35\xd9\xd1\x75\x66\x53\x1d\x6f\xfa\xfc\x3a\xfd\x98\x27\x3d\x2f\x13\x7d\x8f\x8a\x53\x76\xd6\xb2\xd0\x67\x62\xbc\xe7\xe3\xe1\x19\x5b\x9e\x00\x27\x2b\x91\x0b\xaf\xc4\x97\x91\x2b\x0f\xfa\x1a\x03\x8b\x2e\xf0\x66\x2e\xe6\x64\x9c\xe4\x65\x1b\xfd\x25\x83\x79\x32\x39\x62\x77\xe6\xa5\x48\x9e\x2b\xfd\xd7\x33\xb6\xa6\x72\x7e\x13\xb5\x9e\xd8\x4f\xc3\xb1\x99\xc7\xd4\xa2\x0e\xd7\xe9\x61\x67\xd6\x9d\x3e\x4b\xe0\x7b\x86\xd5\x5d\x1e\xff\x14\xb8\xb3\x05\x9e\xda\x86\x1d\xe9\xcc\x9b\xdb\xd2\xa3\xc3\xd6\xe3\x43\xbc\xf4\xe7\xd8\xe7\x08\x8c\x70\x21\x8f\x86\xef\x98\xda\xbf\x8b\xf7\x7e\x06\x5b\xff\x36\xa8\xf7\xf3\xd7\xff\x04\xe5\xb5\x4f\xbf\xf9\xe5\xfe\xe5\xaf\x01\xbc\xfd\xc7\xbf\x19\xe3\x8d\xbc\x25\xf2\x41\xc3\x50\x0b\x3d\x7a\xf4\xda\x59\xef\x3d\xcf\xde\xa9\x51\xce\x51\xc7\xc9\xc4\x58\xb3\x5f\xd3\xae\x31\x3d\xf9\x9e\xf6\xcc\x30\x25\x74\x4f\xe7\x54\xe1\x1b\x15\xf0\xb4\xc0\xf6\x4c\x77\xe9\x17\x3c\xe1\xe4\x19\x07\x3d\x78\x9e\xc4\x9e\xd1\x47\x54\x89\xbd\xac\xc6\xfc\x66\x76\x6d\xcc\x84\x34\x1c\x60\x86\xb3\xff\x26\xcf\xb5\x5a\xf9\x02\xae\x1a\x32\x46\x3d\x7c\x21\xff\x18\xc1\x87\xa6\x17\x2e\x70\xd6\xb1\x3f\xb3\x74\x56\xe4\x57\xd7\x3e\xe0\x7a\xc7\xdc\x89\x44\xff\xf4\xc9\xcf\x2f\xea\xd8\xd1\x0f\x1d\x33\xb6\x66\x66\x90\x18\x3e\x34\x51\x3f\x66\xee\xc4\x84\x3d\x1b\xe8\xd2\x60\x86\xc9\x08\x1d\x26\x97\x39\xc9\x15\x77\x7c\xed\xc4\xfc\xbb\x0b\x5f\x26\x1d\x9f\xc1\xdd\x0f\xfa\xdc\x06\xdc\x2c\xc3\x6a\x12\x73\x24\xe9\xcb\x4d\xd8\x11\xc3\x18\x98\x11\x32\xc3\x49\x36\x9c\x95\xfe\xa3\x4e\xef\xe9\x60\xf6\x42\x63\x0f\x16\x66\xc9\x1a\x77\x85\xd9\x40\xda\x8b\x19\x0c\x52\xfe\x7a\x0a\xac\xf9\x8d\x8c\x46\x3f\xc7\x8e\xef\xb4\xd9\xa7\xe4\xf0\x9d\xfc\xa6\x31\x8b\x66\x01\xf3\x34\xbe\x7c\x85\x7f\xb6\xc3\x7f\x4c\xf8\x31\x78\x4c\xfa\x9d\x0e\xce\x74\xc1\xc1\xb6\x99\x6b\x83\xd9\x66\xd8\x94\x13\xde\xa1\xe1\xd3\x60\xf6\x27\x33\xa6\x4e\x66\x53\xcd\xcc\xb7\xca\xf0\x10\x17\xe2\xa8\x36\x3f\x78\xf1\xce\x1c\x8e\xcc\x7c\xa2\xf3\x7c\x62\xa5\xfd\x6d\xdd\x34\xbb\x8e\x76\xf0\xdf\x75\x79\x66\xef\x59\xbc\x4c\x1f\x73\xd4\xa0\xb5\x17\x36\x1f\x8a\xd9\x58\x85\xb5\x37\x7c\xf3\x46\x1d\xef\x62\x6e\x62\x27\x6f\xbd\x98\x91\x1b\x1c\xb4\x05\xdc\xc2\xb8\x14\xe9\xe1\x48\x0e\xe6\xf8\x15\xce\xa6\x6c\xbe\x4f\x1d\x0e\x53\x87\xb7\x94\xa2\x76\x79\xf9\xcf\x0a\x18\xb3\xe5\x1a\xcc\x9d\x34\x1e\x3f\x6b\xd8\xf0\x83\xc1\xe3\xb2\x38\x84\x1c\xe7\xa2\x96\x69\x72\xc9\xbc\x87\x95\x18\xb3\xd2\x93\xbc\x52\xd7\xb3\x79\x4d\xd4\x9b\x6d\xbe\x46\x7d\xfa\xfb\x1b\x3d\xcb\x15\xec\x4c\xb2\x62\xd8\xda\x05\xa7\x97\x3e\x8a\x4e\x2f\x55\xcc\xdd\x89\x98\xc3\x66\x18\x25\x8f\x33\x2e\x6a\x43\x92\xc9\x83\x39\x5b\x47\x7e\xe2\x65\xf9\x2b\xe3\xb0\xc3\x75\x0e\x2e\x45\xe5\x8c\x56\x7a\x11\x2a\x35\xca\x98\x95\x78\x4c\x7e\xfe\x95\x1e\x8e\x02\xce\x12\x33\x61\xa5\x17\x09\x7d\x58\x63\x66\xe6\x02\xe7\x19\x3e\xeb\x09\xce\x35\xd1\xd3\x95\xa8\x2d\x1b\xef\x7b\x83\x57\x15\x72\x0b\xc7\x7f\xc7\xe6\x46\x2f\xac\xf9\x6f\x62\xfd\x95\x59\x6b\x86\x8f\x82\x89\x6e\x60\xb7\x85\x99\xa7\x03\x7e\x84\xf5\x80\xc2\x13\xda\xa9\x7d\xb6\xe8\xad\x62\x9e\xf2\x46\x7f\xf0\x05\xee\x9e\xe9\xa5\xaf\xcc\xa4\x5a\x97\x67\x96\xe7\x09\xd7\x70\x21\x0e\xcd\xed\xe1\xf8\x58\xec\xd9\x9f\x3a\x5f\x07\xb3\xb1\xb9\x57\xcc\x0d\x9d\xc8\x4d\x4c\xa6\xa9\x19\x6c\xc8\xd6\x12\xf3\x37\x2f\x66\x19\x81\x2f\x1e\x31\x07\xeb\x60\x3e\x45\x82\x9b\x70\x81\x6d\x12\xf7\x9c\xc4\xda\x85\xfa\x4d\x42\x4f\x2c\x66\x1b\x2e\xfb\x99\x99\x36\x86\x27\xc6\xac\x9f\x37\x3c\xc2\x85\xb9\x51\xb2\xe1\x95\x3a\x40\x25\x5f\x95\x3d\x3e\xe9\x21\x5e\x99\xa3\xad\x35\xeb\xb3\xc2\x3c\xee\x04\xf7\xb4\xd2\xbf\x6b\xb3\xa0\x02\x8f\x8e\xd9\x81\xf8\x3c\xfd\x9d\x58\xb7\x6c\x47\xf4\x64\xdb\x6c\x37\x70\x95\x83\x99\x08\xd6\xe7\x86\xff\x5e\xe9\x87\x49\xf4\xf9\x77\xb0\xf2\x19\x4c\x67\x70\x96\xe5\x78\xb8\x24\x17\x7d\xef\x13\x3d\xcc\x96\x8f\xd2\xbf\xd2\xc1\x99\x56\xe6\xf5\x34\xf8\xa3\x57\x79\x66\x63\xac\xe7\x53\xdf\xcd\x6f\xe6\x80\x4d\xcc\x09\xb2\x5e\xbc\xe1\xf7\x5e\x89\x23\x2c\xd6\xe5\x8f\xae\x67\xfd\x0b\x89\x3e\x13\x6a\x26\x09\xcc\x69\x23\xde\x0b\x5c\x6a\xd0\x63\x7e\x31\x4b\xc6\x62\x65\x7a\xbd\x63\xfe\x74\x81\xf7\x32\xa1\x93\x15\xae\x58\xd4\x92\x8c\xbf\x45\xbe\x1d\x73\xbf\x33\xf5\x98\xad\x3f\x33\x37\x0d\x2f\xd9\x98\x3d\x4f\x8e\xbb\xc4\xbc\x01\x6a\xc8\x0b\x38\xf2\x02\x26\xb3\x06\x1e\xb5\xbb\x7c\x26\x7a\x0c\x57\x74\xfd\x02\xd7\x6e\xe7\x13\x1f\x19\x17\x89\x7e\xff\xce\x2c\xc3\xe9\x4d\xbf\xe9\x02\x7f\x72\x07\x7f\xfc\x3c\xff\x6b\x73\xff\x93\xa9\x83\x16\x66\xee\x37\x62\x9c\x03\x3e\xec\x46\x8e\x3b\xe0\x6a\xc4\x1c\xd7\x42\xde\x1d\x75\xd8\x41\x2d\xf8\x84\x4f\x3a\xc1\x1b\x9a\xc2\x5f\xc0\xbf\x9a\xe1\xe0\x5c\xc4\x60\xc6\xaf\xef\xcf\x8c\x4b\x9b\xe5\x88\x6d\xb6\x99\x2c\x9c\xeb\x0c\x7f\xfa\x84\x2b\x12\x38\xd2\x46\x2d\xc6\x66\xb0\x06\x06\xc9\x4c\xce\xa5\x3f\xcf\x53\x98\xd3\xb2\xc5\x1c\xbf\xe4\xf7\x9d\xa2\x06\x0e\x8e\x37\x13\xb7\x58\x3d\x89\x99\x00\x1b\xf5\xbc\x0b\x1f\x7a\xc4\xac\xbd\xc6\xec\xf3\x46\x2f\x18\xb5\x9d\xa5\x3f\x7d\xc3\x0b\xb9\x56\x26\xb6\x3d\xe9\x07\x5a\x99\x1d\x18\xf5\xfd\x15\xde\x77\x70\x6e\x0b\xfa\x5b\xe8\x8b\x36\x8e\xdd\x8e\xbd\x00\x2b\x6d\xd4\x61\x2f\x70\x91\x41\xff\x54\xe8\x69\x82\x9f\xb1\x30\xff\x7f\x82\x13\x36\xe8\x8d\x6e\xd1\x07\x49\xff\x70\x26\x47\x0d\xbc\x77\xe2\xdd\x09\x86\xf3\x33\x0b\x3a\xc3\x75\xba\xe0\x97\x1e\xdb\xc3\x8b\xde\xeb\x53\x57\x95\x7e\x64\xfa\x41\x4e\x66\xb8\x6d\xf0\xa5\x6c\xf6\x55\xe0\xd0\x91\x1b\xf3\x7e\x01\xb3\xdf\x31\x47\xe8\x82\xa3\x9f\x99\x49\x58\xe0\x79\x30\x6f\xd1\xae\x99\xdd\x8f\xc8\x3f\xe8\x79\x3a\xfd\xd6\x75\x79\x62\x9d\x46\xce\xb0\x30\xa7\xd0\x66\x77\x83\xf9\xd8\x6c\xcb\xf9\xd1\xf7\x4c\x3f\x55\x23\x47\x6c\xd4\x61\x3a\x75\x39\xd9\x20\xb3\x37\xf0\xf2\xad\x77\x8d\x79\xb6\x76\x56\x07\x3d\x7b\xf9\xe1\x36\x18\x9e\x12\x7d\xd6\xe0\x47\x95\x78\x6f\xa7\x47\x22\x66\x85\x1e\x70\x9d\x62\x0e\xfd\x5c\x9e\xba\x4e\xa5\x8e\x32\x98\x3f\x72\x81\x4b\x6d\xc4\xe0\x19\xfe\xc2\x41\x5f\xd9\x16\x35\x73\xf2\x8c\x0e\x6f\x7b\xc0\x29\xc8\xc7\x33\xd7\x52\xf9\xc8\x0a\xc7\xb7\x93\x8b\x0f\x7a\x98\x4f\xe6\x5d\x9b\x1c\xc4\xf3\x14\x7c\x62\x7a\xfa\x66\x6c\xee\x5b\xd4\x84\xe9\x47\x32\xae\x1d\x73\x34\x2b\x35\xe7\x46\x5e\xb1\xd0\xaf\x3e\xc1\xaf\x3e\x82\xc3\x82\x0f\xb2\xfc\xe5\x0d\xaf\x34\x66\x65\x36\xea\x72\x9d\xdf\x4d\xf4\x1f\x5c\xd8\x97\x89\xfc\xa3\xc2\x37\xb6\xfe\xfd\x98\xc7\xb5\x80\xc9\xc1\xd5\x3e\x79\xbf\x44\x5a\x9e\x79\x22\x92\x7f\x9d\x79\x83\xf7\x32\x91\xdf\xb6\xe0\x53\x77\xb0\xae\x89\xfc\x93\xf9\x3b\x56\xff\x49\xf4\x61\xcf\xe4\x33\x83\xb5\x16\xf8\x64\xe5\xc1\x3b\x1a\x98\xe2\xa0\x1e\x6f\xef\x71\x00\xb3\x98\xe0\x8f\xef\x60\xbf\x95\x7d\xd8\xa9\xcb\xcd\xf0\xd6\xad\x6f\x90\xb8\x35\xd1\xf3\xb0\x46\xbf\x1f\xb1\xeb\x09\x97\x72\x61\x16\xd4\xc1\x6c\xac\x4c\xbd\x64\x85\x53\x61\xbd\x6f\xf5\xa9\x07\x9a\x7d\x04\xef\x39\xae\x07\xc7\xa9\xe8\xb3\xc5\x16\xc4\x20\x13\x9c\x75\xcb\xe3\xe9\x47\x3b\xa8\x01\x2e\x7c\x1e\x18\xea\x02\x77\x63\x62\xa6\xe9\x05\x36\x6f\xbc\x0d\xe6\xd4\x59\xfd\x7e\xf1\x67\x3c\xe1\xca\x04\xef\x5f\xdf\x8f\xf9\x97\x1d\x19\x8e\x1a\x62\xf4\x42\xe4\xfe\xcc\x31\xb8\xc8\x83\x25\x8f\x0b\xbd\x9b\x81\x45\x87\x8f\x5b\x22\xde\x26\xef\x0c\xdc\xb1\x30\xa3\x27\x13\xe3\x34\xe6\xa3\x34\x70\xef\x42\xbe\x5d\x97\x67\x56\xf0\x19\xb5\x21\x7a\x42\xe7\x37\x35\xc4\x44\x7d\xea\x73\xcf\x61\x7e\x38\x0c\x36\x37\xf8\x82\xf3\x48\x8d\xa4\x32\xa7\x52\xb6\x34\xde\x79\xb2\xc3\x27\x5e\x83\xe7\x72\xbc\xe9\x23\xa3\xce\xb4\x31\xcb\x62\x62\xfe\x56\x89\xd9\x91\xbc\x4b\xa5\x82\x75\x5a\x8f\x1d\x7d\x8a\x89\xf9\xea\x95\xde\xd3\xb2\x3e\xf6\x7a\xe5\x1c\xac\xa7\x17\x9c\x37\xe6\xc4\x45\xcf\xe8\x41\xfd\x23\x74\xa6\x62\x27\xad\xdf\x11\xce\x7c\xcc\xe9\x9f\xc8\xf3\xcf\xe8\x15\x22\xa7\x30\x7b\x48\xbf\xe8\x7a\x3e\xf9\xf7\x8e\x2d\xda\xa9\xa9\x6f\x60\xf8\xd6\xab\x74\x3c\x33\xe1\xd7\x98\x63\x4b\x4d\xc7\x70\x02\xe6\x74\x77\x38\xd3\xb5\xf2\x8e\x19\x7a\xe9\x0e\xf2\xc1\x8b\xf9\x47\x0b\x9c\x9f\x8a\x9d\xdb\xa8\xe7\x9f\xed\x99\x6d\x3b\xa3\x4b\x27\xb3\x4b\x3a\xfb\x74\x30\xd3\x6b\x46\x4f\x0d\xc3\x3d\x1f\x9e\xbb\xcd\x53\x69\xc4\xcd\xfd\xe9\xe5\xca\xf0\x82\x3f\x73\xcf\x13\xb3\x43\xe0\x14\x0e\xe6\x61\xed\xe4\x77\xb6\xf7\xf4\xfc\x5a\xed\x38\xea\x42\x0b\xd8\xfb\x78\x66\x71\x4f\x60\x65\x56\x6b\xe1\x3a\x27\xf9\x72\xbc\xaf\x49\x3e\xb0\x31\xbb\xc7\x6a\xf1\x83\x99\xe6\x70\xb6\x37\x7a\x68\x96\xe8\xc3\x23\xe7\x33\x2e\x0e\xf1\xe2\xca\x1c\xe5\x06\xf6\xb2\xc2\xf3\x4e\xcc\x0c\x2a\xf4\xb0\x5f\x51\x57\x21\x4f\xdd\x99\x61\x34\xd7\x67\x1e\x62\xa5\x96\x52\xc1\xf7\x1a\xb1\x74\x9a\xff\x12\x9f\x2d\x60\x29\x19\x4e\xcf\x4a\xff\xde\x5f\xc5\x67\x1d\x2b\xfd\x7b\x20\x5a\xbf\xc2\x5f\xa2\xb4\xdf\xf6\x1f\x7f\x1b\xa8\xfd\xa1\x7f\xd2\xcf\x3f\xe9\x9b\xff\xed\xd3\x4f\x3f\xfe\x6d\x64\xdc\xf5\x19\xda\xb8\xbd\x69\x44\x9e\x48\xb4\x3b\x4d\x02\x3b\x03\xec\x56\x9a\x55\x27\x84\xa5\x32\xdc\xbf\x30\x80\x70\xc6\xf1\x37\xc8\x4d\x31\x94\x26\x51\xac\x3f\x20\x76\x35\x08\x8e\xf6\x12\x1a\x06\xb9\x1d\x0c\x56\xac\x34\xbe\x17\x06\xc2\xda\x40\xdd\xe5\x8d\x01\xa4\x41\x25\x01\x8c\x4d\x0c\x14\x8e\x06\xdc\xc2\xa0\xc7\xcf\x81\x4b\x7e\x06\xf4\x4c\x0c\xf0\xdf\x20\x0e\x5a\x11\x05\xa2\x5d\x2e\x1e\x70\x58\x93\x16\xc5\x42\x1b\x2a\x1b\x85\xc7\xdd\x83\x95\x0c\x08\x6a\x4d\x3b\xe3\x11\x9c\x8b\xc4\x53\x4e\xd7\x5e\x6c\x46\x43\x48\x22\xf8\xdb\x78\xf9\xc9\x0c\x01\x37\x53\xd0\x9a\x63\xf8\xfc\x04\x69\x30\x08\x3f\x14\x4f\x24\xd8\x0b\xc3\xfb\x56\x1a\x17\x33\x83\x2f\xad\x99\x03\x52\x42\x04\x68\xf1\x92\x82\x48\x52\x12\xc5\xb5\x83\x62\xd7\x85\x32\x29\x78\x9a\x82\x60\xb9\x40\x92\xa0\xb8\x5b\x19\x9a\x5d\x18\x64\x7f\x91\xa0\x4e\xf3\x9f\x0e\x4c\x95\x21\xd9\xa2\x30\xc5\x70\xf0\x85\x66\xc1\x01\xe9\xea\x8c\xc6\x17\xc8\x74\x83\x61\xd8\x3b\x83\xf3\x13\x8d\x71\x35\x5e\x92\xc5\x10\xce\x04\xd1\xbe\x43\xf6\xd9\xa6\xe7\x05\x09\xe7\xf6\x34\xa2\xd8\x75\x26\xae\xcd\x4b\x37\x3a\xc6\xc0\x48\xdc\x90\x8f\x57\x12\xb3\x06\xd9\xed\xa2\x69\x63\x60\xe0\x57\x86\xf2\x4c\x31\x3c\x06\xd0\xda\x8a\x7a\x80\xd3\x15\x39\x3a\x18\x1c\x14\x2f\x73\x38\xdb\xd3\x64\x21\x79\x2e\x0c\xf9\x97\x21\x59\x82\x70\x91\x1f\x10\xed\xc2\x79\x2c\x24\x3c\x0d\xf2\x62\xa7\x11\x2d\x03\x0a\x65\x5e\xb0\x14\x83\xa8\x06\xc3\x9d\x1a\xc3\x73\x3b\xd7\x3c\x20\x19\x0f\x5e\x22\x10\x03\xb8\x2f\x86\x03\x84\xe3\x8c\x17\xa2\xe9\x7b\x01\x48\x0e\x12\x92\x41\x83\x5d\x90\x67\x63\x00\xd6\x42\xf1\xce\xbe\x4f\x50\xfb\xf9\xfb\x5c\xab\xe3\x74\x16\x00\x96\xc1\x4b\x65\x46\xbc\x20\x86\xc0\xb5\x50\x78\x18\x24\x52\x07\xcf\x99\x18\x22\x75\x45\x51\x99\x00\xf8\xa4\xe9\x62\xbd\xde\xe8\x3b\xc1\x66\x62\xa8\xd2\x8c\x1d\x92\x6c\x57\x48\x25\x17\x45\x84\x09\xc2\xfa\x4a\x52\x1b\x04\x1b\x6b\xe6\x2c\x34\xfe\xd0\xb8\xd1\xb8\x57\x0c\xe4\x4a\x90\x03\x4f\x1a\x2a\x97\x78\xb9\x05\x64\xb3\x0e\xf1\xc1\x82\x45\xce\x32\x93\x84\xef\x90\x16\x76\x64\x2e\x01\xe4\xda\xa0\xe9\xed\x29\xea\x1f\xcb\x33\x34\x3a\xd1\x84\x2c\xbb\x7a\xe1\xe0\x26\x74\xcb\x88\x5a\xc8\x70\x66\x30\x51\x0c\x3c\x1e\x34\x0f\x2c\x90\x7a\x6c\x08\x38\xc0\xc2\x0e\x80\xb6\x02\x84\x25\x9a\x5f\x17\x86\x78\x2f\xbc\x48\x25\x33\xa8\x39\x86\x99\x57\x5e\x02\xd2\xdf\xd8\x88\x96\x9f\xc1\x2e\x1b\x2f\x64\x33\x7d\xc2\xfe\xed\xbc\x04\xf2\x22\xd8\xe8\x34\xc7\x2c\xbc\xcc\x69\x81\xd0\xa3\xf3\xd2\x19\x1d\xfd\x79\xb9\xd4\xc6\x70\x8a\x93\xc6\xb5\x18\x68\x7d\x00\x64\x37\x6c\xb6\x74\xc3\x02\x35\x5e\xde\x94\x68\x86\xbe\x18\x0c\x66\xa4\x71\x88\x31\x8d\x62\xc0\x4a\x43\xdf\x0a\x39\xb6\x92\x68\x56\x8a\x2c\x99\xc2\xd7\x60\xe8\x62\x42\xd6\x3a\x83\x5f\xa6\xfa\x34\x3e\xda\x7a\x20\x14\xef\xd8\xd1\x02\xa9\x28\xb1\x1e\xb3\x5f\x93\x3f\x8f\x05\x5d\xf8\x82\x03\x82\x4d\x05\xa0\xdb\x78\x01\xc4\xc2\x40\xe0\xc2\x0b\x75\x36\x9e\xc3\xc0\x42\x48\x69\x09\xdd\x5b\xb1\x43\x0d\x1f\xbd\xc6\x0b\x02\x20\x6f\x1c\x24\x2b\x0b\x49\xba\x02\xc0\x8e\xac\x4f\x80\xc6\x27\xf6\x7b\x67\xd0\xea\x1a\x41\x23\x05\xd9\x32\x9e\x01\x0c\x99\xef\x56\x1a\x4c\xc6\xf4\x10\x4e\xac\xb9\x76\x02\xe4\xa0\xa1\x39\x41\xd2\x1a\xf8\x35\x6b\xd8\xa5\x31\x27\x40\xe2\x78\xa1\xc6\x0a\x21\x21\x64\xe2\x22\xb9\x1f\x0c\x6c\xd9\x20\x96\x5c\x80\xd7\x0d\xd9\x8f\x86\xdb\x58\x7b\xa6\x89\xd8\x02\x4d\xf4\xc5\xfc\xff\x4a\x90\x88\x1d\xae\x34\x65\x6e\x10\x5f\x2d\x61\xa7\x71\x5e\x89\xf1\xc2\x0b\x0e\x23\xa8\xed\x34\x34\x48\x2e\x8e\x68\xdc\xc3\x0f\x5a\xf3\xf1\xf5\x0c\xbd\x6d\x34\x2b\x5d\x14\x30\x0e\x86\xda\xda\x0b\x89\x20\x3b\xc7\xe0\x8c\x09\x50\xfd\x58\x9f\x86\xb9\x8b\x17\x97\x24\x9a\x2f\x65\x33\xe7\x48\x44\x21\x82\x4c\x04\xbc\x27\x05\x6d\xed\x5b\x89\x61\x61\xed\x49\x64\x0d\x00\x47\x4e\x2c\xc1\x41\x8e\xed\x25\x77\x1b\x43\x60\x20\xc3\x9f\x80\x68\x13\x20\xdf\x00\xb8\xb5\x82\x3a\xc4\xbb\x8d\xfd\x33\xd0\x82\x61\x2f\x47\x80\x12\x2b\x45\x38\xc0\x8a\xce\xcb\x43\x6c\x20\x11\x2f\xb9\xda\x28\xb0\xf7\x48\x24\xe3\xc5\x15\x00\xb9\xe6\xb7\x00\x6e\x1a\x03\xb1\x13\x00\x7f\x63\x10\xf0\x1c\x2f\x4d\x83\x54\x9f\xe3\xa5\x9e\xf1\x82\x82\xf6\x0c\xa4\x4c\x24\x67\x53\x0c\x3e\x5d\x9f\x61\x68\x85\x81\x2e\x1b\x60\xc1\x00\x68\x3d\x28\xf6\xd9\x0b\x34\x03\x00\x61\xb8\x76\x85\xa4\xd6\x69\xde\xdd\x68\x40\x8e\x01\x01\xd6\x74\x70\x41\x64\x28\x1e\x77\x19\x29\x3b\x5e\xbc\x42\x12\x71\x12\x3b\x9e\x10\x82\x0b\x49\xfb\xc1\x80\xaf\x4c\x3c\x31\x11\x3f\x55\x48\x2e\x41\x9e\x38\x29\xe8\x17\x48\xce\xfb\xf5\xa6\xa1\x8c\x44\x37\x41\xc0\xae\x80\x79\x66\xdf\x56\x40\x49\x64\x2b\xd3\x98\x7e\x2d\x0f\x10\xbf\xf1\x12\x99\x09\xe2\x65\x00\xd9\x85\x61\x43\xd2\x87\x15\x70\x7a\x30\xa8\xab\x40\xbc\xdf\xf9\xbc\xf1\x72\x94\x8b\xa1\xa9\x0b\x67\x53\xa2\x19\xbc\xfc\x36\x21\x66\x61\xd8\xd3\x20\x8e\x8d\x17\x93\xfc\x46\xc2\xf5\xe7\x39\xcf\xff\x7d\xc2\xf5\xe7\x57\xf8\x9c\x70\xbd\xf9\xc1\x37\xfa\xc1\x5f\x49\xb8\xfe\xf8\x5f\xff\xfe\x84\x6b\x45\xc9\xa7\xfa\xbc\x99\x24\x12\xae\x41\x26\x3f\xc3\xb0\xb7\xdf\xc9\xcf\x9b\xa1\x96\x78\x8b\xcc\xf9\x20\xe8\x39\xde\x26\x4b\x15\x65\x83\xa5\x6c\xcc\x60\x58\x2b\x27\x4a\x34\xf5\x67\xba\x55\x8f\x37\x04\xc1\xbe\x9f\x41\x15\x2a\xcc\x03\xeb\x36\x26\xf3\x36\x14\x25\x31\x01\x19\x25\x88\xa9\x1f\x51\x7d\xd8\x09\xb6\x82\xe9\x7c\xa0\xc8\x27\xd3\xb3\x66\x3a\xf3\x5b\xbc\xf9\x82\x67\x37\xb4\x01\x76\xfd\xc6\xb4\x8a\x93\xc0\xbd\xc1\x44\x6d\x54\x04\x8d\x25\xce\x1b\xd1\x3a\x95\x8a\x02\xe2\xb1\x51\x49\x6d\xa0\x1e\x13\x08\xb8\x94\x60\xe2\x0d\x2a\x15\xe4\x30\xf1\xe6\x0a\x43\x91\x13\x6f\x55\xe2\xad\x67\x15\xd4\x32\x12\x0d\x7b\x23\x03\x15\xc2\x08\x8e\x56\x12\x8e\x81\x81\x5d\x41\x69\xad\xd3\x30\xa6\xc4\x46\x35\x00\x67\x7d\x30\x79\x2b\xa6\xd2\x75\x26\x9c\x0e\x0c\x97\x9c\x78\xe6\x2d\x34\x0b\x9d\x2c\x15\xd6\xe0\xc5\x34\xcf\x0e\x9a\x3e\xd7\x67\x82\xd8\x45\x95\x53\x6b\xdd\x41\xa2\x1b\xd3\xc7\xae\x98\x9c\x8a\x83\xab\x24\x1d\xd6\xe1\x0e\x7b\x7b\x0f\xf6\x25\x81\xb8\xbd\xb9\x88\xe9\x77\x33\xc1\xd7\x01\x6b\xcd\xd0\x6f\xa6\xdf\x27\xde\xc0\x3b\x51\xa9\xb3\x20\xab\x92\x38\xaf\xcf\xdb\x9f\x16\x82\xa8\x05\x14\x71\x67\xe2\xe3\x0e\x3a\x99\x99\xd6\xd6\xe8\xcc\x9f\x98\x46\x32\x62\x0f\xca\x33\x45\x2d\x10\xe6\xd2\x9e\x09\x9b\x47\xbc\xb1\x02\xd6\x8b\x55\xf3\x63\xa2\x04\x4c\xd6\x0d\xc4\xd6\x0c\x13\x80\xc1\x49\xe2\xbd\x91\x50\x98\xa1\x3e\x9e\xae\xd3\x83\x60\xba\x91\xf8\xce\x04\x54\x17\x13\x64\x4e\x2a\x8d\xd6\xc5\x49\xd7\xde\x09\xe3\x76\xe7\x6c\x0a\x6f\xbf\xee\x04\x8e\x27\xdd\x44\xc6\xca\xa4\x63\xaf\xf3\x06\xee\x19\xe4\x69\xe1\xcd\xb9\x9d\xb7\x33\xcc\x4c\x47\x2e\xe5\x79\xfb\x59\x4c\xd4\x9d\xcb\x83\xea\x37\x7e\x37\xa6\x1c\x28\x89\xcb\xb0\x1f\x26\x92\x86\xb3\x3f\x6f\x9b\x58\xca\x33\x89\x34\x2a\x96\x13\x8c\x97\x05\xd6\x6f\xc6\xa0\xef\xfe\x56\x88\xff\x1d\x00\x00\xff\xff\x2e\xdf\x36\x7f\x00\x80\x00\x00") func res_res_go() ([]byte, error) { return bindata_read( @@ -92,8 +110,10 @@ func AssetNames() []string { // _bindata is a table, holding each asset generator, mapped to its name. var _bindata = map[string]func() ([]byte, error){ - "res/doc/sample.txt": res_doc_sample_txt, + "res/doc/sample.yaml": res_doc_sample_yaml, + "res/doc/sample_en.yaml": res_doc_sample_en_yaml, "res/doc/usage.txt": res_doc_usage_txt, + "res/doc/usage_en.txt": res_doc_usage_en_txt, "res/messages_en.json": res_messages_en_json, "res/messages_zh.json": res_messages_zh_json, "res/res.go": res_res_go, @@ -140,10 +160,14 @@ type _bintree_t struct { var _bintree = &_bintree_t{nil, map[string]*_bintree_t{ "res": &_bintree_t{nil, map[string]*_bintree_t{ "doc": &_bintree_t{nil, map[string]*_bintree_t{ - "sample.txt": &_bintree_t{res_doc_sample_txt, map[string]*_bintree_t{ + "sample.yaml": &_bintree_t{res_doc_sample_yaml, map[string]*_bintree_t{ + }}, + "sample_en.yaml": &_bintree_t{res_doc_sample_en_yaml, map[string]*_bintree_t{ }}, "usage.txt": &_bintree_t{res_doc_usage_txt, map[string]*_bintree_t{ }}, + "usage_en.txt": &_bintree_t{res_doc_usage_en_txt, map[string]*_bintree_t{ + }}, }}, "messages_en.json": &_bintree_t{res_messages_en_json, map[string]*_bintree_t{ }}, diff --git a/src/gen/analyse.go b/src/gen/analyse.go deleted file mode 100644 index c8c73f9..0000000 --- a/src/gen/analyse.go +++ /dev/null @@ -1,61 +0,0 @@ -package gen - -import ( - "encoding/json" - fileUtils "github.com/easysoft/zendata/src/utils/file" - "github.com/easysoft/zendata/src/utils/vari" - "strings" -) - -const ( - -) - -func Analyse(output, fieldsToExportStr, configFile, defaultFile string) { - fieldsToExport := make([]string, 0) - if fieldsToExportStr != "" { - fieldsToExport = strings.Split(fieldsToExportStr, ",") - } - - vari.Def = LoadConfigDef(defaultFile, configFile, &fieldsToExport) - vari.Res = LoadResDef(fieldsToExport) - - data := fileUtils.ReadFile(output) - - mapArr := LinesToMap(data, fieldsToExport) - jsonObj, _ := json.Marshal(mapArr) - respJson := string(jsonObj) - - path := output[:strings.LastIndex(output, ".")] + ".json" - fileUtils.WriteFile(path, respJson) -} - -func LinesToMap(str string, fieldsToExport []string) (ret []map[string]string) { - start := 0 - if vari.WithHead { - start = 1 - } - - ret = []map[string]string{} - - for index, line := range strings.Split(str, "\n") { - if index < start { - continue - } - - rowMap := map[string]string{} - left := line - - for j, field := range vari.Def.Fields { - col := "" // TODO: use post/pre fix to seperate - - col = left[:field.Width] - left = left[field.Width:] - - rowMap[fieldsToExport[j]] = col - } - - ret = append(ret, rowMap) - } - return -} \ No newline at end of file diff --git a/src/gen/decode.go b/src/gen/decode.go new file mode 100644 index 0000000..08bd9a6 --- /dev/null +++ b/src/gen/decode.go @@ -0,0 +1,102 @@ +package gen + +import ( + "encoding/json" + "github.com/easysoft/zendata/src/model" + fileUtils "github.com/easysoft/zendata/src/utils/file" + i118Utils "github.com/easysoft/zendata/src/utils/i118" + logUtils "github.com/easysoft/zendata/src/utils/log" + "github.com/easysoft/zendata/src/utils/vari" + "github.com/mattn/go-runewidth" + "strings" +) + +const ( + +) + +func Decode(defaultFile, configFile, fieldsToExportStr, input, output string) { + fieldsToExport := make([]string, 0) + if fieldsToExportStr != "" { + fieldsToExport = strings.Split(fieldsToExportStr, ",") + } + + vari.Def = LoadConfigDef(defaultFile, configFile, &fieldsToExport) + vari.Res = LoadResDef(fieldsToExport) + + data := fileUtils.ReadFile(input) + + ret := []map[string]interface{}{} + LinesToMap(data, fieldsToExport, &ret) + jsonObj, _ := json.Marshal(ret) + respJson := string(jsonObj) + + fileUtils.WriteFile(output, respJson) + logUtils.Screen(i118Utils.I118Prt.Sprintf("analyse_success", output )) +} + +func LinesToMap(str string, fieldsToExport []string, ret *[]map[string]interface{}) { + start := 0 + if vari.WithHead { + start = 1 + } + + for index, line := range strings.Split(str, "\n") { + if index < start { + continue + } + + rowMap := decodeOnLevel(line, fieldsToExport, vari.Def.Fields) + *ret = append(*ret, rowMap) + } + return +} + +func decodeOnLevel(line string, fieldsToExport []string, fields []model.DefField) (ret map[string]interface{}) { + ret = map[string]interface{}{} + left := []rune(line) + + for j, field := range fields { + col := "" + if field.Width > 0 { + col = string(left[:field.Width]) + left = left[field.Width:] + } else { + sepStr := "" + if j < len(vari.Def.Fields) - 1 { + sepStr = field.Postfix + vari.Def.Fields[j+1].Prefix + } else { + sepStr = field.Postfix + } + sep := []rune(sepStr) + + if len(sep) > 0 { + index := searchRune(left, sep) + if index > -1 { + col = string(left[: index+runewidth.StringWidth(field.Postfix)]) + left = left[index+runewidth.StringWidth(field.Postfix) :] + } + } + } + + ret[fieldsToExport[j]] = col + } + + return +} + +func searchRune(text []rune, what []rune) int { + for i := range text { + found := true + for j := range what { + if i+j < len(text) && text[i+j] != what[j] { + found = false + break + } + } + if found { + return i + } + } + return -1 +} \ No newline at end of file diff --git a/src/utils/common/utils.go b/src/utils/common/utils.go index 8725aca..d6dda96 100644 --- a/src/utils/common/utils.go +++ b/src/utils/common/utils.go @@ -25,7 +25,7 @@ func RemoveBlankLine(str string) string { ret := myExp.ReplaceAllString(str, "\n\n") ret = strings.Trim(ret, "\n") - ret = strings.TrimSpace(ret) + //ret = strings.TrimSpace(ret) return ret } diff --git a/src/zd.go b/src/zd.go index 4989e27..438eecd 100644 --- a/src/zd.go +++ b/src/zd.go @@ -35,7 +35,7 @@ var ( output string table string format = constant.FormatText - analyse string + decode bool listRes bool viewRes string @@ -91,8 +91,8 @@ func main() { flagSet.StringVar(&vari.HeadSep, "H", "", "") flagSet.StringVar(&vari.HeadSep, "human", "", "") - flagSet.StringVar(&analyse, "a", "", "") - flagSet.StringVar(&analyse, "analyse", "", "") + flagSet.BoolVar(&decode, "D", false, "") + flagSet.BoolVar(&decode, "decode", false, "") flagSet.StringVar(&vari.Ip, "b", "", "") flagSet.StringVar(&vari.Ip, "bind", "", "") @@ -130,8 +130,8 @@ func main() { } else if md5 != "" { service.AddMd5(md5) return - } else if analyse != "" { - gen.Analyse(output, fields, analyse, defaultFile) + } else if decode { + gen.Decode(defaultFile, configFile, fields, input, output) return } diff --git a/test/unit/test.go b/test/unit/test.go index 594d783..25324c6 100644 --- a/test/unit/test.go +++ b/test/unit/test.go @@ -1,19 +1,22 @@ package main import ( - "github.com/easysoft/zendata/src/gen" - httpUtils "github.com/easysoft/zendata/src/utils/http" - "io/ioutil" - "net/url" + "fmt" + "strings" ) func main() { - urlStr := "http://127.0.0.1:8848/?F=field3&lines=12" - file := "test/code/test.yaml" + //urlStr := "http://127.0.0.1:8848/?F=field3&lines=12" + //file := "test/code/test.yaml" + // + //yamlContent, _ := ioutil.ReadFile(file) + //yamlContent = gen.ReplaceSpecialChars(yamlContent) + // + //data := url.Values{"config": {string(yamlContent)}} + //httpUtils.PostForm(urlStr, data) - yamlContent, _ := ioutil.ReadFile(file) - yamlContent = gen.ReplaceSpecialChars(yamlContent) - - data := url.Values{"config": {string(yamlContent)}} - httpUtils.PostForm(urlStr, data) + a := "我的" + b := "dsfdsfdf是我的吗" + index := strings.Index(a, b) + fmt.Println(index) } diff --git a/xdoc/4-build.sh b/xdoc/4-build.sh index ed3c203..e4e3397 100755 --- a/xdoc/4-build.sh +++ b/xdoc/4-build.sh @@ -1,19 +1,19 @@ cd build cp zd-x86.exe zd.exe -zip -r zd-win-x86-1.1.zip zd.exe conf data demo +zip -r zd-win-x86-1.1.zip zd.exe data demo rm zd.exe cp zd-amd64.exe zd.exe -zip -r zd-win-amd64-1.1.zip zd.exe conf data demo +zip -r zd-win-amd64-1.1.zip zd.exe data demo rm zd.exe cp zd-linux zd -tar -zcvf zd-linux-1.1.tar.gz zd conf data demo +tar -zcvf zd-linux-1.1.tar.gz zd data demo rm zd cp zd-mac zd -zip -r zd-mac-1.1.zip zd conf data demo +zip -r zd-mac-1.1.zip zd data demo rm zd cd .. \ No newline at end of file -- GitLab