@port-labs/jq-node-bindings 0.0.14 → 0.0.15-dev1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -1
- package/binding.gyp +41 -19
- package/configure +1 -1
- package/deps/jq/.gitattributes +12 -0
- package/deps/jq/AUTHORS +149 -43
- package/deps/jq/COPYING +75 -1
- package/deps/jq/ChangeLog +2 -2
- package/deps/jq/Makefile.am +106 -65
- package/deps/jq/NEWS.md +391 -0
- package/deps/jq/README.md +54 -52
- package/deps/jq/SECURITY.md +7 -0
- package/deps/jq/compile-ios.sh +106 -102
- package/deps/jq/configure.ac +72 -59
- package/deps/jq/docs/Pipfile +14 -0
- package/deps/jq/docs/Pipfile.lock +415 -0
- package/deps/jq/docs/README.md +15 -14
- package/deps/jq/docs/build_manpage.py +251 -0
- package/deps/jq/docs/build_mantests.py +21 -0
- package/deps/jq/docs/build_website.py +95 -0
- package/deps/jq/docs/content/download/default.yml +249 -0
- package/deps/jq/docs/content/index.yml +83 -0
- package/deps/jq/docs/content/{3.manual/v1.6 → manual/dev}/manual.yml +992 -452
- package/deps/jq/docs/content/{3.manual → manual}/v1.3/manual.yml +105 -116
- package/deps/jq/docs/content/{3.manual → manual}/v1.4/manual.yml +122 -129
- package/deps/jq/docs/content/{3.manual → manual}/v1.5/manual.yml +313 -262
- package/deps/jq/docs/content/{3.manual → manual/v1.6}/manual.yml +407 -332
- package/deps/jq/docs/content/manual/v1.7/manual.yml +3697 -0
- package/deps/jq/docs/content/tutorial/default.yml +337 -0
- package/deps/jq/docs/manual_schema.yml +60 -0
- package/deps/jq/docs/public/css/style.css +99 -0
- package/deps/jq/docs/public/icon.png +0 -0
- package/deps/jq/docs/public/icon.svg +1 -0
- package/deps/jq/docs/public/jq.svg +1 -0
- package/deps/jq/docs/public/js/manual-search.js +31 -49
- package/deps/jq/docs/templates/default.html.j2 +31 -0
- package/deps/jq/docs/templates/index.html.j2 +58 -0
- package/deps/jq/docs/templates/manual.html.j2 +120 -0
- package/deps/jq/docs/templates/shared/_footer.html.j2 +14 -0
- package/deps/jq/docs/templates/shared/_head.html.j2 +23 -0
- package/deps/jq/docs/templates/shared/_navbar.html.j2 +40 -0
- package/deps/jq/docs/validate_manual_schema.py +19 -0
- package/deps/jq/jq.1.prebuilt +1102 -294
- package/deps/jq/jq.spec +2 -3
- package/deps/jq/libjq.pc.in +11 -0
- package/deps/jq/m4/ax_pthread.m4 +522 -0
- package/deps/jq/modules/oniguruma/.travis.yml +17 -0
- package/deps/jq/modules/oniguruma/CMakeLists.txt +206 -41
- package/deps/jq/modules/oniguruma/COPYING +23 -25
- package/deps/jq/modules/oniguruma/HISTORY +368 -23
- package/deps/jq/modules/oniguruma/Makefile.am +61 -7
- package/deps/jq/modules/oniguruma/README +34 -20
- package/deps/jq/modules/oniguruma/README.md +106 -33
- package/deps/jq/modules/oniguruma/README_japanese +183 -0
- package/deps/jq/modules/oniguruma/autogen.sh +9 -0
- package/deps/jq/modules/oniguruma/cmake/Config.cmake.in +4 -0
- package/deps/jq/modules/oniguruma/configure.ac +66 -55
- package/deps/jq/modules/oniguruma/doc/API +485 -42
- package/deps/jq/modules/oniguruma/doc/API.ja +732 -293
- package/deps/jq/modules/oniguruma/doc/CALLOUTS.API +397 -0
- package/deps/jq/modules/oniguruma/doc/CALLOUTS.API.ja +393 -0
- package/deps/jq/modules/oniguruma/doc/CALLOUTS.BUILTIN +95 -0
- package/deps/jq/modules/oniguruma/doc/CALLOUTS.BUILTIN.ja +93 -0
- package/deps/jq/modules/oniguruma/doc/FAQ +3 -3
- package/deps/jq/modules/oniguruma/doc/FAQ.ja +8 -8
- package/deps/jq/modules/oniguruma/doc/RE +223 -63
- package/deps/jq/modules/oniguruma/doc/RE.ja +420 -265
- package/deps/jq/modules/oniguruma/doc/SYNTAX.md +1091 -0
- package/deps/jq/modules/oniguruma/doc/UNICODE_PROPERTIES +840 -697
- package/deps/jq/modules/oniguruma/harnesses/ascii_compatible.dict +113 -0
- package/deps/jq/modules/oniguruma/harnesses/base.c +749 -0
- package/deps/jq/modules/oniguruma/harnesses/deluxe.c +206 -0
- package/deps/jq/modules/oniguruma/harnesses/dict_conv.py +72 -0
- package/deps/jq/modules/oniguruma/harnesses/fuzzer.options +2 -0
- package/deps/jq/modules/oniguruma/harnesses/libfuzzer-onig.cpp +45 -0
- package/deps/jq/modules/oniguruma/harnesses/regset.c +392 -0
- package/deps/jq/modules/oniguruma/index.html +16 -5
- package/deps/jq/modules/oniguruma/index_ja.html +16 -5
- package/deps/jq/modules/oniguruma/make_win.bat +5 -0
- package/deps/jq/modules/oniguruma/make_win32.bat +5 -3
- package/deps/jq/modules/oniguruma/make_win64.bat +5 -3
- package/deps/jq/modules/oniguruma/onig-config.cmake.in +80 -0
- package/deps/jq/modules/oniguruma/onig-config.in +1 -1
- package/deps/jq/modules/oniguruma/oniguruma.pc.cmake.in +1 -1
- package/deps/jq/modules/oniguruma/oniguruma.pc.in +0 -1
- package/deps/jq/modules/oniguruma/sample/CMakeLists.txt +9 -2
- package/deps/jq/modules/oniguruma/sample/Makefile.am +24 -5
- package/deps/jq/modules/oniguruma/sample/bug_fix.c +13 -51
- package/deps/jq/modules/oniguruma/sample/callback_each_match.c +168 -0
- package/deps/jq/modules/oniguruma/sample/callout.c +268 -0
- package/deps/jq/modules/oniguruma/sample/count.c +125 -0
- package/deps/jq/modules/oniguruma/sample/crnl.c +6 -4
- package/deps/jq/modules/oniguruma/sample/echo.c +136 -0
- package/deps/jq/modules/oniguruma/sample/encode.c +53 -146
- package/deps/jq/modules/oniguruma/sample/listcap.c +18 -10
- package/deps/jq/modules/oniguruma/sample/names.c +10 -6
- package/deps/jq/modules/oniguruma/sample/posix.c +13 -2
- package/deps/jq/modules/oniguruma/sample/regset.c +95 -0
- package/deps/jq/modules/oniguruma/sample/scan.c +20 -6
- package/deps/jq/modules/oniguruma/sample/simple.c +8 -4
- package/deps/jq/modules/oniguruma/sample/sql.c +13 -8
- package/deps/jq/modules/oniguruma/sample/syntax.c +11 -10
- package/deps/jq/modules/oniguruma/sample/user_property.c +12 -7
- package/deps/jq/modules/oniguruma/src/Makefile.am +41 -15
- package/deps/jq/modules/oniguruma/src/Makefile.windows +196 -183
- package/deps/jq/modules/oniguruma/src/ascii.c +64 -7
- package/deps/jq/modules/oniguruma/src/big5.c +25 -15
- package/deps/jq/modules/oniguruma/src/config.h.cmake.in +7 -22
- package/deps/jq/modules/oniguruma/src/config.h.win32 +56 -84
- package/deps/jq/modules/oniguruma/src/config.h.win64 +56 -84
- package/deps/jq/modules/oniguruma/src/config.h.windows.in +62 -0
- package/deps/jq/modules/oniguruma/src/cp1251.c +14 -8
- package/deps/jq/modules/oniguruma/src/euc_jp.c +28 -30
- package/deps/jq/modules/oniguruma/src/euc_jp_prop.c +25 -32
- package/deps/jq/modules/oniguruma/src/euc_jp_prop.gperf +1 -2
- package/deps/jq/modules/oniguruma/src/euc_kr.c +27 -15
- package/deps/jq/modules/oniguruma/src/euc_tw.c +40 -17
- package/deps/jq/modules/oniguruma/src/gb18030.c +177 -119
- package/deps/jq/modules/oniguruma/src/gperf_fold_key_conv.py +12 -8
- package/deps/jq/modules/oniguruma/src/gperf_unfold_key_conv.py +8 -6
- package/deps/jq/modules/oniguruma/src/iso8859_1.c +92 -91
- package/deps/jq/modules/oniguruma/src/iso8859_10.c +13 -29
- package/deps/jq/modules/oniguruma/src/iso8859_11.c +4 -2
- package/deps/jq/modules/oniguruma/src/iso8859_13.c +13 -33
- package/deps/jq/modules/oniguruma/src/iso8859_14.c +13 -30
- package/deps/jq/modules/oniguruma/src/iso8859_15.c +13 -34
- package/deps/jq/modules/oniguruma/src/iso8859_16.c +13 -29
- package/deps/jq/modules/oniguruma/src/iso8859_2.c +13 -29
- package/deps/jq/modules/oniguruma/src/iso8859_3.c +13 -33
- package/deps/jq/modules/oniguruma/src/iso8859_4.c +13 -32
- package/deps/jq/modules/oniguruma/src/iso8859_5.c +16 -23
- package/deps/jq/modules/oniguruma/src/iso8859_6.c +4 -2
- package/deps/jq/modules/oniguruma/src/iso8859_7.c +14 -29
- package/deps/jq/modules/oniguruma/src/iso8859_8.c +4 -2
- package/deps/jq/modules/oniguruma/src/iso8859_9.c +13 -33
- package/deps/jq/modules/oniguruma/src/koi8.c +14 -27
- package/deps/jq/modules/oniguruma/src/koi8_r.c +12 -19
- package/deps/jq/modules/oniguruma/src/make_property.sh +21 -0
- package/deps/jq/modules/oniguruma/src/make_unicode_egcb.sh +7 -0
- package/deps/jq/modules/oniguruma/src/make_unicode_egcb_data.py +267 -0
- package/deps/jq/modules/oniguruma/src/make_unicode_fold.sh +25 -11
- package/deps/jq/modules/oniguruma/src/make_unicode_fold_data.py +206 -26
- package/deps/jq/modules/oniguruma/src/make_unicode_property.sh +19 -10
- package/deps/jq/modules/oniguruma/src/make_unicode_property_data.py +474 -375
- package/deps/jq/modules/oniguruma/src/make_unicode_wb.sh +7 -0
- package/deps/jq/modules/oniguruma/src/make_unicode_wb_data.py +267 -0
- package/deps/jq/modules/oniguruma/src/mktable.c +28 -24
- package/deps/jq/modules/oniguruma/src/onig_init.c +2 -2
- package/deps/jq/modules/oniguruma/src/oniggnu.h +7 -5
- package/deps/jq/modules/oniguruma/src/onigposix.h +40 -16
- package/deps/jq/modules/oniguruma/src/oniguruma.h +357 -107
- package/deps/jq/modules/oniguruma/src/regcomp.c +6214 -3933
- package/deps/jq/modules/oniguruma/src/regenc.c +197 -120
- package/deps/jq/modules/oniguruma/src/regenc.h +106 -63
- package/deps/jq/modules/oniguruma/src/regerror.c +112 -91
- package/deps/jq/modules/oniguruma/src/regexec.c +4876 -2010
- package/deps/jq/modules/oniguruma/src/regext.c +8 -8
- package/deps/jq/modules/oniguruma/src/reggnu.c +13 -17
- package/deps/jq/modules/oniguruma/src/regint.h +757 -491
- package/deps/jq/modules/oniguruma/src/regparse.c +7204 -3240
- package/deps/jq/modules/oniguruma/src/regparse.h +361 -218
- package/deps/jq/modules/oniguruma/src/regposerr.c +49 -9
- package/deps/jq/modules/oniguruma/src/regposix.c +106 -24
- package/deps/jq/modules/oniguruma/src/regsyntax.c +66 -13
- package/deps/jq/modules/oniguruma/src/regtrav.c +1 -1
- package/deps/jq/modules/oniguruma/src/regversion.c +6 -4
- package/deps/jq/modules/oniguruma/src/sjis.c +23 -52
- package/deps/jq/modules/oniguruma/src/sjis_prop.c +25 -32
- package/deps/jq/modules/oniguruma/src/sjis_prop.gperf +1 -2
- package/deps/jq/modules/oniguruma/src/st.c +248 -249
- package/deps/jq/modules/oniguruma/src/st.h +4 -5
- package/deps/jq/modules/oniguruma/src/unicode.c +869 -294
- package/deps/jq/modules/oniguruma/src/unicode_egcb_data.c +1419 -0
- package/deps/jq/modules/oniguruma/src/unicode_fold1_key.c +1829 -1300
- package/deps/jq/modules/oniguruma/src/unicode_fold2_key.c +32 -9
- package/deps/jq/modules/oniguruma/src/unicode_fold3_key.c +32 -9
- package/deps/jq/modules/oniguruma/src/unicode_fold_data.c +1210 -984
- package/deps/jq/modules/oniguruma/src/unicode_property_data.c +22480 -15198
- package/deps/jq/modules/oniguruma/src/unicode_property_data_posix.c +1463 -591
- package/deps/jq/modules/oniguruma/src/unicode_unfold_key.c +1958 -1418
- package/deps/jq/modules/oniguruma/src/unicode_wb_data.c +1106 -0
- package/deps/jq/modules/oniguruma/src/utf16_be.c +90 -49
- package/deps/jq/modules/oniguruma/src/utf16_le.c +80 -49
- package/deps/jq/modules/oniguruma/src/utf32_be.c +14 -42
- package/deps/jq/modules/oniguruma/src/utf32_le.c +13 -40
- package/deps/jq/modules/oniguruma/src/utf8.c +33 -78
- package/deps/jq/modules/oniguruma/test/CMakeLists.txt +55 -0
- package/deps/jq/modules/oniguruma/test/Makefile.am +65 -10
- package/deps/jq/modules/oniguruma/test/test.sh +17 -0
- package/deps/jq/modules/oniguruma/test/test_back.c +1450 -0
- package/deps/jq/modules/oniguruma/test/test_options.c +228 -0
- package/deps/jq/modules/oniguruma/test/test_regset.c +466 -0
- package/deps/jq/modules/oniguruma/test/test_syntax.c +365 -0
- package/deps/jq/modules/oniguruma/test/test_utf8.c +1761 -0
- package/deps/jq/modules/oniguruma/test/testc.c +128 -88
- package/deps/jq/modules/oniguruma/test/testp.c +613 -0
- package/deps/jq/modules/oniguruma/test/testu.c +75 -28
- package/deps/jq/modules/oniguruma/tis-ci/stub.c +3 -0
- package/deps/jq/modules/oniguruma/tis-ci/test_back.config +26 -0
- package/deps/jq/modules/oniguruma/tis-ci/test_regset.config +20 -0
- package/deps/jq/modules/oniguruma/tis-ci/test_syntax.config +26 -0
- package/deps/jq/modules/oniguruma/tis-ci/test_utf8.config +25 -0
- package/deps/jq/modules/oniguruma/tis-ci/testc.config +26 -0
- package/deps/jq/modules/oniguruma/tis-ci/testu.config +24 -0
- package/deps/jq/modules/oniguruma/tis.config +1336 -0
- package/deps/jq/modules/oniguruma/windows/CMakeLists.txt +8 -0
- package/deps/jq/modules/oniguruma/windows/testc.c +865 -869
- package/deps/jq/scripts/update-website +6 -5
- package/deps/jq/scripts/version +10 -7
- package/deps/jq/sig/jq-release-new.key +29 -0
- package/deps/jq/sig/v1.4/sha256sum.txt +1 -0
- package/deps/jq/sig/v1.5/sha256sum.txt +2 -0
- package/deps/jq/sig/v1.5rc1/sha256sum.txt +1 -0
- package/deps/jq/sig/v1.5rc2/sha256sum.txt +2 -0
- package/deps/jq/sig/v1.6/sha256sum.txt +2 -0
- package/deps/jq/sig/v1.7/jq-1.7.tar.gz.asc +16 -0
- package/deps/jq/sig/v1.7/jq-1.7.zip.asc +16 -0
- package/deps/jq/sig/v1.7/jq-linux-amd64.asc +16 -0
- package/deps/jq/sig/v1.7/jq-linux-arm64.asc +16 -0
- package/deps/jq/sig/v1.7/jq-linux-armel.asc +16 -0
- package/deps/jq/sig/v1.7/jq-linux-armhf.asc +16 -0
- package/deps/jq/sig/v1.7/jq-linux-i386.asc +16 -0
- package/deps/jq/sig/v1.7/jq-linux-mips.asc +16 -0
- package/deps/jq/sig/v1.7/jq-linux-mips64.asc +16 -0
- package/deps/jq/sig/v1.7/jq-linux-mips64el.asc +16 -0
- package/deps/jq/sig/v1.7/jq-linux-mips64r6.asc +16 -0
- package/deps/jq/sig/v1.7/jq-linux-mips64r6el.asc +16 -0
- package/deps/jq/sig/v1.7/jq-linux-mipsel.asc +16 -0
- package/deps/jq/sig/v1.7/jq-linux-mipsr6.asc +16 -0
- package/deps/jq/sig/v1.7/jq-linux-mipsr6el.asc +16 -0
- package/deps/jq/sig/v1.7/jq-linux-powerpc.asc +16 -0
- package/deps/jq/sig/v1.7/jq-linux-ppc64el.asc +16 -0
- package/deps/jq/sig/v1.7/jq-linux-riscv64.asc +16 -0
- package/deps/jq/sig/v1.7/jq-linux-s390x.asc +16 -0
- package/deps/jq/sig/v1.7/jq-macos-amd64.asc +16 -0
- package/deps/jq/sig/v1.7/jq-macos-arm64.asc +16 -0
- package/deps/jq/sig/v1.7/jq-windows-amd64.exe.asc +16 -0
- package/deps/jq/sig/v1.7/jq-windows-i386.exe.asc +16 -0
- package/deps/jq/sig/v1.7/sha256sum.txt +23 -0
- package/deps/jq/sig/v1.7.1/jq-1.7.1.tar.gz.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-1.7.1.zip.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-linux-amd64.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-linux-arm64.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-linux-armel.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-linux-armhf.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-linux-i386.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-linux-mips.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-linux-mips64.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-linux-mips64el.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-linux-mips64r6.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-linux-mips64r6el.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-linux-mipsel.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-linux-mipsr6.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-linux-mipsr6el.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-linux-powerpc.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-linux-ppc64el.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-linux-riscv64.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-linux-s390x.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-linux64.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-macos-amd64.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-macos-arm64.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-osx-amd64.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-win64.exe.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-windows-amd64.exe.asc +16 -0
- package/deps/jq/sig/v1.7.1/jq-windows-i386.exe.asc +16 -0
- package/deps/jq/sig/v1.7.1/sha256sum.txt +26 -0
- package/deps/jq/sig/v1.7rc1/jq-1.7rc1.tar.gz.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-1.7rc1.zip.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-linux-amd64.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-linux-arm64.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-linux-armel.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-linux-armhf.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-linux-i386.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-linux-mips.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-linux-mips64.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-linux-mips64el.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-linux-mips64r6.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-linux-mips64r6el.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-linux-mipsel.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-linux-mipsr6.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-linux-mipsr6el.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-linux-powerpc.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-linux-ppc64el.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-linux-riscv64.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-linux-s390x.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-macos-amd64.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-macos-arm64.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-windows-amd64.exe.asc +16 -0
- package/deps/jq/sig/v1.7rc1/jq-windows-i386.exe.asc +16 -0
- package/deps/jq/sig/v1.7rc1/sha256sum.txt +23 -0
- package/deps/jq/sig/v1.7rc2/jq-1.7rc2.tar.gz.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-1.7rc2.zip.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-linux-amd64.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-linux-arm64.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-linux-armel.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-linux-armhf.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-linux-i386.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-linux-mips.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-linux-mips64.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-linux-mips64el.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-linux-mips64r6.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-linux-mips64r6el.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-linux-mipsel.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-linux-mipsr6.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-linux-mipsr6el.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-linux-powerpc.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-linux-ppc64el.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-linux-riscv64.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-linux-s390x.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-macos-amd64.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-macos-arm64.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-windows-amd64.exe.asc +16 -0
- package/deps/jq/sig/v1.7rc2/jq-windows-i386.exe.asc +16 -0
- package/deps/jq/sig/v1.7rc2/sha256sum.txt +23 -0
- package/deps/jq/src/builtin.c +537 -343
- package/deps/jq/src/builtin.h +18 -0
- package/deps/jq/src/builtin.jq +116 -143
- package/deps/jq/src/bytecode.h +8 -4
- package/deps/jq/src/compile.c +157 -143
- package/deps/jq/src/compile.h +3 -4
- package/deps/jq/src/decNumber/ICU-license.html +45 -0
- package/deps/jq/src/decNumber/decBasic.c +3908 -0
- package/deps/jq/src/decNumber/decCommon.c +1835 -0
- package/deps/jq/src/decNumber/decContext.c +437 -0
- package/deps/jq/src/decNumber/decContext.h +254 -0
- package/deps/jq/src/decNumber/decDPD.h +1185 -0
- package/deps/jq/src/decNumber/decDouble.c +140 -0
- package/deps/jq/src/decNumber/decDouble.h +155 -0
- package/deps/jq/src/decNumber/decNumber.c +8143 -0
- package/deps/jq/src/decNumber/decNumber.h +182 -0
- package/deps/jq/src/decNumber/decNumberLocal.h +757 -0
- package/deps/jq/src/decNumber/decPacked.c +220 -0
- package/deps/jq/src/decNumber/decPacked.h +52 -0
- package/deps/jq/src/decNumber/decQuad.c +135 -0
- package/deps/jq/src/decNumber/decQuad.h +177 -0
- package/deps/jq/src/decNumber/decSingle.c +71 -0
- package/deps/jq/src/decNumber/decSingle.h +86 -0
- package/deps/jq/src/decNumber/decimal128.c +553 -0
- package/deps/jq/src/decNumber/decimal128.h +81 -0
- package/deps/jq/src/decNumber/decimal32.c +476 -0
- package/deps/jq/src/decNumber/decimal32.h +81 -0
- package/deps/jq/src/decNumber/decimal64.c +839 -0
- package/deps/jq/src/decNumber/decimal64.h +83 -0
- package/deps/jq/src/decNumber/decnumber.pdf +0 -0
- package/deps/jq/src/decNumber/example1.c +38 -0
- package/deps/jq/src/decNumber/example2.c +52 -0
- package/deps/jq/src/decNumber/example3.c +64 -0
- package/deps/jq/src/decNumber/example4.c +61 -0
- package/deps/jq/src/decNumber/example5.c +36 -0
- package/deps/jq/src/decNumber/example6.c +61 -0
- package/deps/jq/src/decNumber/example7.c +35 -0
- package/deps/jq/src/decNumber/example8.c +39 -0
- package/deps/jq/src/decNumber/readme.txt +81 -0
- package/deps/jq/src/exec_stack.h +5 -3
- package/deps/jq/src/execute.c +126 -44
- package/deps/jq/src/inject_errors.c +0 -2
- package/deps/jq/src/jq.h +10 -1
- package/deps/jq/src/jq_test.c +222 -11
- package/deps/jq/src/jv.c +807 -176
- package/deps/jq/src/jv.h +22 -1
- package/deps/jq/src/jv_alloc.c +33 -26
- package/deps/jq/src/jv_alloc.h +0 -11
- package/deps/jq/src/jv_aux.c +153 -67
- package/deps/jq/src/jv_dtoa.c +12 -2
- package/deps/jq/src/jv_dtoa_tsd.c +51 -0
- package/deps/jq/src/jv_dtoa_tsd.h +4 -0
- package/deps/jq/src/jv_parse.c +70 -15
- package/deps/jq/src/jv_print.c +56 -60
- package/deps/jq/src/jv_private.h +7 -0
- package/deps/jq/src/jv_thread.h +76 -0
- package/deps/jq/src/jv_unicode.c +18 -0
- package/deps/jq/src/jv_unicode.h +2 -0
- package/deps/jq/src/lexer.c +782 -543
- package/deps/jq/src/lexer.h +438 -64
- package/deps/jq/src/lexer.l +10 -3
- package/deps/jq/src/libm.h +16 -6
- package/deps/jq/src/linker.c +97 -40
- package/deps/jq/src/locfile.c +2 -1
- package/deps/jq/src/main.c +384 -336
- package/deps/jq/src/opcode_list.h +5 -2
- package/deps/jq/src/parser.c +2260 -1898
- package/deps/jq/src/parser.h +115 -98
- package/deps/jq/src/parser.y +124 -89
- package/deps/jq/src/util.c +854 -55
- package/deps/jq/src/util.h +6 -4
- package/deps/jq/tests/jq.test +762 -26
- package/deps/jq/tests/jq_fuzz_compile.c +27 -0
- package/deps/jq/tests/jq_fuzz_execute.cpp +42 -0
- package/deps/jq/tests/jq_fuzz_fixed.cpp +297 -0
- package/deps/jq/tests/jq_fuzz_load_file.c +28 -0
- package/deps/jq/tests/jq_fuzz_parse.c +21 -0
- package/deps/jq/tests/jq_fuzz_parse_extended.c +36 -0
- package/deps/jq/tests/jq_fuzz_parse_stream.c +21 -0
- package/deps/jq/tests/local.supp +14 -0
- package/deps/jq/tests/man.test +979 -0
- package/deps/jq/tests/manonig.test +76 -0
- package/deps/jq/tests/manonigtest +5 -0
- package/deps/jq/tests/mantest +1 -2
- package/deps/jq/tests/modules/home2/.jq/g.jq +1 -0
- package/deps/jq/tests/modules/shadow1.jq +2 -0
- package/deps/jq/tests/modules/shadow2.jq +1 -0
- package/deps/jq/tests/modules/test_bind_order0.jq +1 -0
- package/deps/jq/tests/modules/test_bind_order1.jq +1 -1
- package/deps/jq/tests/modules/test_bind_order2.jq +0 -1
- package/deps/jq/tests/no-main-program.jq +1 -0
- package/deps/jq/tests/onig.test +77 -2
- package/deps/jq/tests/setup +7 -2
- package/deps/jq/tests/shtest +478 -59
- package/deps/jq/tests/uri.test +38 -0
- package/deps/jq/tests/uritest +5 -0
- package/deps/jq/tests/yes-main-program.jq +2 -0
- package/lib/index.js +3 -0
- package/lib/jq.js +15 -1
- package/lib/templateAsync.js +137 -0
- package/package.json +4 -3
- package/src/binding.cc +623 -146
- package/src/binding.h +3 -4
- package/test/santiy-async.test.js +171 -0
- package/test/santiy.test.js +2 -2
- package/test/template-async.test.js +182 -0
- package/test/template.test.js +3 -3
- package/deps/jq/.travis.yml +0 -202
- package/deps/jq/NEWS +0 -89
- package/deps/jq/appveyor.yml +0 -53
- package/deps/jq/docs/Gemfile +0 -7
- package/deps/jq/docs/Gemfile.lock +0 -63
- package/deps/jq/docs/Rakefile +0 -24
- package/deps/jq/docs/Rakefile.manual +0 -49
- package/deps/jq/docs/Rakefile.website +0 -76
- package/deps/jq/docs/content/1.tutorial/default.yml +0 -327
- package/deps/jq/docs/content/2.download/default.yml +0 -193
- package/deps/jq/docs/content/index/index.yml +0 -73
- package/deps/jq/docs/public/css/base.scss +0 -181
- package/deps/jq/docs/public/jq.png +0 -0
- package/deps/jq/docs/site.yml +0 -9
- package/deps/jq/docs/templates/default.liquid +0 -34
- package/deps/jq/docs/templates/index.liquid +0 -73
- package/deps/jq/docs/templates/manual.liquid +0 -99
- package/deps/jq/docs/templates/shared/_footer.liquid +0 -10
- package/deps/jq/docs/templates/shared/_head.liquid +0 -17
- package/deps/jq/docs/templates/shared/_navbar.liquid +0 -27
- package/deps/jq/modules/oniguruma/README.ja +0 -195
- package/deps/jq/modules/oniguruma/cmake/dist.cmake +0 -321
- package/deps/jq/modules/oniguruma/contributed/libfuzzer-onig.cpp +0 -31
- package/deps/jq/modules/oniguruma/dist.info +0 -10
- package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_fold1_key.c +0 -2250
- package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_fold2_key.c +0 -203
- package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_fold3_key.c +0 -113
- package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_fold_data.c +0 -1225
- package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_property_data.c +0 -24742
- package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_property_data_posix.c +0 -4846
- package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_unfold_key.c +0 -2571
- /package/deps/jq/sig/{jq-release.key → jq-release-old.key} +0 -0
- /package/deps/jq/tests/modules/{.jq → home1/.jq} +0 -0
|
@@ -1,698 +1,841 @@
|
|
|
1
|
-
Unicode Properties (
|
|
1
|
+
Unicode Properties (Unicode Version: 15.0.0, Emoji: 15.0)
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
3
|
+
ASCII_Hex_Digit
|
|
4
|
+
Adlam
|
|
5
|
+
Ahom
|
|
6
|
+
Alphabetic
|
|
7
|
+
Anatolian_Hieroglyphs
|
|
8
|
+
Any
|
|
9
|
+
Arabic
|
|
10
|
+
Armenian
|
|
11
|
+
Assigned
|
|
12
|
+
Avestan
|
|
13
|
+
Balinese
|
|
14
|
+
Bamum
|
|
15
|
+
Bassa_Vah
|
|
16
|
+
Batak
|
|
17
|
+
Bengali
|
|
18
|
+
Bhaiksuki
|
|
19
|
+
Bidi_Control
|
|
20
|
+
Bopomofo
|
|
21
|
+
Brahmi
|
|
22
|
+
Braille
|
|
23
|
+
Buginese
|
|
24
|
+
Buhid
|
|
25
|
+
C
|
|
26
|
+
Canadian_Aboriginal
|
|
27
|
+
Carian
|
|
28
|
+
Case_Ignorable
|
|
29
|
+
Cased
|
|
30
|
+
Caucasian_Albanian
|
|
31
|
+
Cc
|
|
32
|
+
Cf
|
|
33
|
+
Chakma
|
|
34
|
+
Cham
|
|
35
|
+
Changes_When_Casefolded
|
|
36
|
+
Changes_When_Casemapped
|
|
37
|
+
Changes_When_Lowercased
|
|
38
|
+
Changes_When_Titlecased
|
|
39
|
+
Changes_When_Uppercased
|
|
40
|
+
Cherokee
|
|
41
|
+
Chorasmian
|
|
42
|
+
Cn
|
|
43
|
+
Co
|
|
44
|
+
Common
|
|
45
|
+
Coptic
|
|
46
|
+
Cs
|
|
47
|
+
Cuneiform
|
|
48
|
+
Cypriot
|
|
49
|
+
Cypro_Minoan
|
|
50
|
+
Cyrillic
|
|
51
|
+
Dash
|
|
52
|
+
Default_Ignorable_Code_Point
|
|
53
|
+
Deprecated
|
|
54
|
+
Deseret
|
|
55
|
+
Devanagari
|
|
56
|
+
Diacritic
|
|
57
|
+
Dives_Akuru
|
|
58
|
+
Dogra
|
|
59
|
+
Duployan
|
|
60
|
+
Egyptian_Hieroglyphs
|
|
61
|
+
Elbasan
|
|
62
|
+
Elymaic
|
|
63
|
+
Emoji
|
|
64
|
+
Emoji_Component
|
|
65
|
+
Emoji_Modifier
|
|
66
|
+
Emoji_Modifier_Base
|
|
67
|
+
Emoji_Presentation
|
|
68
|
+
Ethiopic
|
|
69
|
+
Extended_Pictographic
|
|
70
|
+
Extender
|
|
71
|
+
Georgian
|
|
72
|
+
Glagolitic
|
|
73
|
+
Gothic
|
|
74
|
+
Grantha
|
|
75
|
+
Grapheme_Base
|
|
76
|
+
Grapheme_Extend
|
|
77
|
+
Grapheme_Link
|
|
78
|
+
Greek
|
|
79
|
+
Gujarati
|
|
80
|
+
Gunjala_Gondi
|
|
81
|
+
Gurmukhi
|
|
82
|
+
Han
|
|
83
|
+
Hangul
|
|
84
|
+
Hanifi_Rohingya
|
|
85
|
+
Hanunoo
|
|
86
|
+
Hatran
|
|
87
|
+
Hebrew
|
|
88
|
+
Hex_Digit
|
|
89
|
+
Hiragana
|
|
90
|
+
Hyphen
|
|
91
|
+
IDS_Binary_Operator
|
|
92
|
+
IDS_Trinary_Operator
|
|
93
|
+
ID_Continue
|
|
94
|
+
ID_Start
|
|
95
|
+
Ideographic
|
|
96
|
+
Imperial_Aramaic
|
|
97
|
+
Inherited
|
|
98
|
+
Inscriptional_Pahlavi
|
|
99
|
+
Inscriptional_Parthian
|
|
100
|
+
Javanese
|
|
101
|
+
Join_Control
|
|
102
|
+
Kaithi
|
|
103
|
+
Kannada
|
|
104
|
+
Katakana
|
|
105
|
+
Kawi
|
|
106
|
+
Kayah_Li
|
|
107
|
+
Kharoshthi
|
|
108
|
+
Khitan_Small_Script
|
|
109
|
+
Khmer
|
|
110
|
+
Khojki
|
|
111
|
+
Khudawadi
|
|
112
|
+
L
|
|
113
|
+
LC
|
|
114
|
+
Lao
|
|
115
|
+
Latin
|
|
116
|
+
Lepcha
|
|
117
|
+
Limbu
|
|
118
|
+
Linear_A
|
|
119
|
+
Linear_B
|
|
120
|
+
Lisu
|
|
121
|
+
Ll
|
|
122
|
+
Lm
|
|
123
|
+
Lo
|
|
124
|
+
Logical_Order_Exception
|
|
125
|
+
Lowercase
|
|
126
|
+
Lt
|
|
127
|
+
Lu
|
|
128
|
+
Lycian
|
|
129
|
+
Lydian
|
|
130
|
+
M
|
|
131
|
+
Mahajani
|
|
132
|
+
Makasar
|
|
133
|
+
Malayalam
|
|
134
|
+
Mandaic
|
|
135
|
+
Manichaean
|
|
136
|
+
Marchen
|
|
137
|
+
Masaram_Gondi
|
|
138
|
+
Math
|
|
139
|
+
Mc
|
|
140
|
+
Me
|
|
141
|
+
Medefaidrin
|
|
142
|
+
Meetei_Mayek
|
|
143
|
+
Mende_Kikakui
|
|
144
|
+
Meroitic_Cursive
|
|
145
|
+
Meroitic_Hieroglyphs
|
|
146
|
+
Miao
|
|
147
|
+
Mn
|
|
148
|
+
Modi
|
|
149
|
+
Mongolian
|
|
150
|
+
Mro
|
|
151
|
+
Multani
|
|
152
|
+
Myanmar
|
|
153
|
+
N
|
|
154
|
+
Nabataean
|
|
155
|
+
Nag_Mundari
|
|
156
|
+
Nandinagari
|
|
157
|
+
Nd
|
|
158
|
+
New_Tai_Lue
|
|
159
|
+
Newa
|
|
160
|
+
Nko
|
|
161
|
+
Nl
|
|
162
|
+
No
|
|
163
|
+
Noncharacter_Code_Point
|
|
164
|
+
Nushu
|
|
165
|
+
Nyiakeng_Puachue_Hmong
|
|
166
|
+
Ogham
|
|
167
|
+
Ol_Chiki
|
|
168
|
+
Old_Hungarian
|
|
169
|
+
Old_Italic
|
|
170
|
+
Old_North_Arabian
|
|
171
|
+
Old_Permic
|
|
172
|
+
Old_Persian
|
|
173
|
+
Old_Sogdian
|
|
174
|
+
Old_South_Arabian
|
|
175
|
+
Old_Turkic
|
|
176
|
+
Old_Uyghur
|
|
177
|
+
Oriya
|
|
178
|
+
Osage
|
|
179
|
+
Osmanya
|
|
180
|
+
Other_Alphabetic
|
|
181
|
+
Other_Default_Ignorable_Code_Point
|
|
182
|
+
Other_Grapheme_Extend
|
|
183
|
+
Other_ID_Continue
|
|
184
|
+
Other_ID_Start
|
|
185
|
+
Other_Lowercase
|
|
186
|
+
Other_Math
|
|
187
|
+
Other_Uppercase
|
|
188
|
+
P
|
|
189
|
+
Pahawh_Hmong
|
|
190
|
+
Palmyrene
|
|
191
|
+
Pattern_Syntax
|
|
192
|
+
Pattern_White_Space
|
|
193
|
+
Pau_Cin_Hau
|
|
194
|
+
Pc
|
|
195
|
+
Pd
|
|
196
|
+
Pe
|
|
197
|
+
Pf
|
|
198
|
+
Phags_Pa
|
|
199
|
+
Phoenician
|
|
200
|
+
Pi
|
|
201
|
+
Po
|
|
202
|
+
Prepended_Concatenation_Mark
|
|
203
|
+
Ps
|
|
204
|
+
Psalter_Pahlavi
|
|
205
|
+
Quotation_Mark
|
|
206
|
+
Radical
|
|
207
|
+
Regional_Indicator
|
|
208
|
+
Rejang
|
|
209
|
+
Runic
|
|
210
|
+
S
|
|
211
|
+
Samaritan
|
|
212
|
+
Saurashtra
|
|
213
|
+
Sc
|
|
214
|
+
Sentence_Terminal
|
|
215
|
+
Sharada
|
|
216
|
+
Shavian
|
|
217
|
+
Siddham
|
|
218
|
+
SignWriting
|
|
219
|
+
Sinhala
|
|
220
|
+
Sk
|
|
221
|
+
Sm
|
|
222
|
+
So
|
|
223
|
+
Soft_Dotted
|
|
224
|
+
Sogdian
|
|
225
|
+
Sora_Sompeng
|
|
226
|
+
Soyombo
|
|
227
|
+
Sundanese
|
|
228
|
+
Syloti_Nagri
|
|
229
|
+
Syriac
|
|
230
|
+
Tagalog
|
|
231
|
+
Tagbanwa
|
|
232
|
+
Tai_Le
|
|
233
|
+
Tai_Tham
|
|
234
|
+
Tai_Viet
|
|
235
|
+
Takri
|
|
236
|
+
Tamil
|
|
237
|
+
Tangsa
|
|
238
|
+
Tangut
|
|
239
|
+
Telugu
|
|
240
|
+
Terminal_Punctuation
|
|
241
|
+
Thaana
|
|
242
|
+
Thai
|
|
243
|
+
Tibetan
|
|
244
|
+
Tifinagh
|
|
245
|
+
Tirhuta
|
|
246
|
+
Toto
|
|
247
|
+
Ugaritic
|
|
248
|
+
Unified_Ideograph
|
|
249
|
+
Unknown
|
|
250
|
+
Uppercase
|
|
251
|
+
Vai
|
|
252
|
+
Variation_Selector
|
|
253
|
+
Vithkuqi
|
|
254
|
+
Wancho
|
|
255
|
+
Warang_Citi
|
|
256
|
+
White_Space
|
|
257
|
+
XID_Continue
|
|
258
|
+
XID_Start
|
|
259
|
+
Yezidi
|
|
260
|
+
Yi
|
|
261
|
+
Z
|
|
262
|
+
Zanabazar_Square
|
|
263
|
+
Zl
|
|
264
|
+
Zp
|
|
265
|
+
Zs
|
|
266
|
+
Adlm
|
|
267
|
+
Aghb
|
|
268
|
+
AHex
|
|
269
|
+
Arab
|
|
270
|
+
Armi
|
|
271
|
+
Armn
|
|
272
|
+
Avst
|
|
273
|
+
Bali
|
|
274
|
+
Bamu
|
|
275
|
+
Bass
|
|
276
|
+
Batk
|
|
277
|
+
Beng
|
|
278
|
+
Bhks
|
|
279
|
+
Bidi_C
|
|
280
|
+
Bopo
|
|
281
|
+
Brah
|
|
282
|
+
Brai
|
|
283
|
+
Bugi
|
|
284
|
+
Buhd
|
|
285
|
+
Cakm
|
|
286
|
+
Cans
|
|
287
|
+
Cari
|
|
288
|
+
Cased_Letter
|
|
289
|
+
Cher
|
|
290
|
+
Chrs
|
|
291
|
+
CI
|
|
292
|
+
Close_Punctuation
|
|
293
|
+
Combining_Mark
|
|
294
|
+
Connector_Punctuation
|
|
295
|
+
Control
|
|
296
|
+
Copt
|
|
297
|
+
Cpmn
|
|
298
|
+
Cprt
|
|
299
|
+
Currency_Symbol
|
|
300
|
+
CWCF
|
|
301
|
+
CWCM
|
|
302
|
+
CWL
|
|
303
|
+
CWT
|
|
304
|
+
CWU
|
|
305
|
+
Cyrl
|
|
306
|
+
Dash_Punctuation
|
|
307
|
+
Decimal_Number
|
|
308
|
+
Dep
|
|
309
|
+
Deva
|
|
310
|
+
DI
|
|
311
|
+
Dia
|
|
312
|
+
Diak
|
|
313
|
+
Dogr
|
|
314
|
+
Dsrt
|
|
315
|
+
Dupl
|
|
316
|
+
EBase
|
|
317
|
+
EComp
|
|
318
|
+
Egyp
|
|
319
|
+
Elba
|
|
320
|
+
Elym
|
|
321
|
+
EMod
|
|
322
|
+
Enclosing_Mark
|
|
323
|
+
EPres
|
|
324
|
+
Ethi
|
|
325
|
+
Ext
|
|
326
|
+
ExtPict
|
|
327
|
+
Final_Punctuation
|
|
328
|
+
Format
|
|
329
|
+
Geor
|
|
330
|
+
Glag
|
|
331
|
+
Gong
|
|
332
|
+
Gonm
|
|
333
|
+
Goth
|
|
334
|
+
Gran
|
|
335
|
+
Gr_Base
|
|
336
|
+
Grek
|
|
337
|
+
Gr_Ext
|
|
338
|
+
Gr_Link
|
|
339
|
+
Gujr
|
|
340
|
+
Guru
|
|
341
|
+
Hang
|
|
342
|
+
Hani
|
|
343
|
+
Hano
|
|
344
|
+
Hatr
|
|
345
|
+
Hebr
|
|
346
|
+
Hex
|
|
347
|
+
Hira
|
|
348
|
+
Hluw
|
|
349
|
+
Hmng
|
|
350
|
+
Hmnp
|
|
351
|
+
Hung
|
|
352
|
+
IDC
|
|
353
|
+
Ideo
|
|
354
|
+
IDS
|
|
355
|
+
IDSB
|
|
356
|
+
IDST
|
|
357
|
+
Initial_Punctuation
|
|
358
|
+
Ital
|
|
359
|
+
Java
|
|
360
|
+
Join_C
|
|
361
|
+
Kali
|
|
362
|
+
Kana
|
|
363
|
+
Khar
|
|
364
|
+
Khmr
|
|
365
|
+
Khoj
|
|
366
|
+
Kits
|
|
367
|
+
Knda
|
|
368
|
+
Kthi
|
|
369
|
+
Lana
|
|
370
|
+
Laoo
|
|
371
|
+
Latn
|
|
372
|
+
Lepc
|
|
373
|
+
Letter
|
|
374
|
+
Letter_Number
|
|
375
|
+
Limb
|
|
376
|
+
Lina
|
|
377
|
+
Linb
|
|
378
|
+
Line_Separator
|
|
379
|
+
LOE
|
|
380
|
+
Lowercase_Letter
|
|
381
|
+
Lyci
|
|
382
|
+
Lydi
|
|
383
|
+
Mahj
|
|
384
|
+
Maka
|
|
385
|
+
Mand
|
|
386
|
+
Mani
|
|
387
|
+
Marc
|
|
388
|
+
Mark
|
|
389
|
+
Math_Symbol
|
|
390
|
+
Medf
|
|
391
|
+
Mend
|
|
392
|
+
Merc
|
|
393
|
+
Mero
|
|
394
|
+
Mlym
|
|
395
|
+
Modifier_Letter
|
|
396
|
+
Modifier_Symbol
|
|
397
|
+
Mong
|
|
398
|
+
Mroo
|
|
399
|
+
Mtei
|
|
400
|
+
Mult
|
|
401
|
+
Mymr
|
|
402
|
+
Nagm
|
|
403
|
+
Nand
|
|
404
|
+
Narb
|
|
405
|
+
Nbat
|
|
406
|
+
NChar
|
|
407
|
+
Nkoo
|
|
408
|
+
Nonspacing_Mark
|
|
409
|
+
Nshu
|
|
410
|
+
Number
|
|
411
|
+
OAlpha
|
|
412
|
+
ODI
|
|
413
|
+
Ogam
|
|
414
|
+
OGr_Ext
|
|
415
|
+
OIDC
|
|
416
|
+
OIDS
|
|
417
|
+
Olck
|
|
418
|
+
OLower
|
|
419
|
+
OMath
|
|
420
|
+
Open_Punctuation
|
|
421
|
+
Orkh
|
|
422
|
+
Orya
|
|
423
|
+
Osge
|
|
424
|
+
Osma
|
|
425
|
+
Other
|
|
426
|
+
Other_Letter
|
|
427
|
+
Other_Number
|
|
428
|
+
Other_Punctuation
|
|
429
|
+
Other_Symbol
|
|
430
|
+
Ougr
|
|
431
|
+
OUpper
|
|
432
|
+
Palm
|
|
433
|
+
Paragraph_Separator
|
|
434
|
+
Pat_Syn
|
|
435
|
+
Pat_WS
|
|
436
|
+
Pauc
|
|
437
|
+
PCM
|
|
438
|
+
Perm
|
|
439
|
+
Phag
|
|
440
|
+
Phli
|
|
441
|
+
Phlp
|
|
442
|
+
Phnx
|
|
443
|
+
Plrd
|
|
444
|
+
Private_Use
|
|
445
|
+
Prti
|
|
446
|
+
punct
|
|
447
|
+
Punctuation
|
|
448
|
+
Qaac
|
|
449
|
+
Qaai
|
|
450
|
+
QMark
|
|
451
|
+
RI
|
|
452
|
+
Rjng
|
|
453
|
+
Rohg
|
|
454
|
+
Runr
|
|
455
|
+
Samr
|
|
456
|
+
Sarb
|
|
457
|
+
Saur
|
|
458
|
+
SD
|
|
459
|
+
Separator
|
|
460
|
+
Sgnw
|
|
461
|
+
Shaw
|
|
462
|
+
Shrd
|
|
463
|
+
Sidd
|
|
464
|
+
Sind
|
|
465
|
+
Sinh
|
|
466
|
+
Sogd
|
|
467
|
+
Sogo
|
|
468
|
+
Sora
|
|
469
|
+
Soyo
|
|
470
|
+
Space_Separator
|
|
471
|
+
Spacing_Mark
|
|
472
|
+
STerm
|
|
473
|
+
Sund
|
|
474
|
+
Surrogate
|
|
475
|
+
Sylo
|
|
476
|
+
Symbol
|
|
477
|
+
Syrc
|
|
478
|
+
Tagb
|
|
479
|
+
Takr
|
|
480
|
+
Tale
|
|
481
|
+
Talu
|
|
482
|
+
Taml
|
|
483
|
+
Tang
|
|
484
|
+
Tavt
|
|
485
|
+
Telu
|
|
486
|
+
Term
|
|
487
|
+
Tfng
|
|
488
|
+
Tglg
|
|
489
|
+
Thaa
|
|
490
|
+
Tibt
|
|
491
|
+
Tirh
|
|
492
|
+
Titlecase_Letter
|
|
493
|
+
Tnsa
|
|
494
|
+
Ugar
|
|
495
|
+
UIdeo
|
|
496
|
+
Unassigned
|
|
497
|
+
Uppercase_Letter
|
|
498
|
+
Vaii
|
|
499
|
+
Vith
|
|
500
|
+
VS
|
|
501
|
+
Wara
|
|
502
|
+
Wcho
|
|
503
|
+
WSpace
|
|
504
|
+
XIDC
|
|
505
|
+
XIDS
|
|
506
|
+
Xpeo
|
|
507
|
+
Xsux
|
|
508
|
+
Yezi
|
|
509
|
+
Yiii
|
|
510
|
+
Zanb
|
|
511
|
+
Zinh
|
|
512
|
+
Zyyy
|
|
513
|
+
Zzzz
|
|
514
|
+
In_Basic_Latin
|
|
515
|
+
In_Latin_1_Supplement
|
|
516
|
+
In_Latin_Extended_A
|
|
517
|
+
In_Latin_Extended_B
|
|
518
|
+
In_IPA_Extensions
|
|
519
|
+
In_Spacing_Modifier_Letters
|
|
520
|
+
In_Combining_Diacritical_Marks
|
|
521
|
+
In_Greek_and_Coptic
|
|
522
|
+
In_Cyrillic
|
|
523
|
+
In_Cyrillic_Supplement
|
|
524
|
+
In_Armenian
|
|
525
|
+
In_Hebrew
|
|
526
|
+
In_Arabic
|
|
527
|
+
In_Syriac
|
|
528
|
+
In_Arabic_Supplement
|
|
529
|
+
In_Thaana
|
|
530
|
+
In_NKo
|
|
531
|
+
In_Samaritan
|
|
532
|
+
In_Mandaic
|
|
533
|
+
In_Syriac_Supplement
|
|
534
|
+
In_Arabic_Extended_B
|
|
535
|
+
In_Arabic_Extended_A
|
|
536
|
+
In_Devanagari
|
|
537
|
+
In_Bengali
|
|
538
|
+
In_Gurmukhi
|
|
539
|
+
In_Gujarati
|
|
540
|
+
In_Oriya
|
|
541
|
+
In_Tamil
|
|
542
|
+
In_Telugu
|
|
543
|
+
In_Kannada
|
|
544
|
+
In_Malayalam
|
|
545
|
+
In_Sinhala
|
|
546
|
+
In_Thai
|
|
547
|
+
In_Lao
|
|
548
|
+
In_Tibetan
|
|
549
|
+
In_Myanmar
|
|
550
|
+
In_Georgian
|
|
551
|
+
In_Hangul_Jamo
|
|
552
|
+
In_Ethiopic
|
|
553
|
+
In_Ethiopic_Supplement
|
|
554
|
+
In_Cherokee
|
|
555
|
+
In_Unified_Canadian_Aboriginal_Syllabics
|
|
556
|
+
In_Ogham
|
|
557
|
+
In_Runic
|
|
558
|
+
In_Tagalog
|
|
559
|
+
In_Hanunoo
|
|
560
|
+
In_Buhid
|
|
561
|
+
In_Tagbanwa
|
|
562
|
+
In_Khmer
|
|
563
|
+
In_Mongolian
|
|
564
|
+
In_Unified_Canadian_Aboriginal_Syllabics_Extended
|
|
565
|
+
In_Limbu
|
|
566
|
+
In_Tai_Le
|
|
567
|
+
In_New_Tai_Lue
|
|
568
|
+
In_Khmer_Symbols
|
|
569
|
+
In_Buginese
|
|
570
|
+
In_Tai_Tham
|
|
571
|
+
In_Combining_Diacritical_Marks_Extended
|
|
572
|
+
In_Balinese
|
|
573
|
+
In_Sundanese
|
|
574
|
+
In_Batak
|
|
575
|
+
In_Lepcha
|
|
576
|
+
In_Ol_Chiki
|
|
577
|
+
In_Cyrillic_Extended_C
|
|
578
|
+
In_Georgian_Extended
|
|
579
|
+
In_Sundanese_Supplement
|
|
580
|
+
In_Vedic_Extensions
|
|
581
|
+
In_Phonetic_Extensions
|
|
582
|
+
In_Phonetic_Extensions_Supplement
|
|
583
|
+
In_Combining_Diacritical_Marks_Supplement
|
|
584
|
+
In_Latin_Extended_Additional
|
|
585
|
+
In_Greek_Extended
|
|
586
|
+
In_General_Punctuation
|
|
587
|
+
In_Superscripts_and_Subscripts
|
|
588
|
+
In_Currency_Symbols
|
|
589
|
+
In_Combining_Diacritical_Marks_for_Symbols
|
|
590
|
+
In_Letterlike_Symbols
|
|
591
|
+
In_Number_Forms
|
|
592
|
+
In_Arrows
|
|
593
|
+
In_Mathematical_Operators
|
|
594
|
+
In_Miscellaneous_Technical
|
|
595
|
+
In_Control_Pictures
|
|
596
|
+
In_Optical_Character_Recognition
|
|
597
|
+
In_Enclosed_Alphanumerics
|
|
598
|
+
In_Box_Drawing
|
|
599
|
+
In_Block_Elements
|
|
600
|
+
In_Geometric_Shapes
|
|
601
|
+
In_Miscellaneous_Symbols
|
|
602
|
+
In_Dingbats
|
|
603
|
+
In_Miscellaneous_Mathematical_Symbols_A
|
|
604
|
+
In_Supplemental_Arrows_A
|
|
605
|
+
In_Braille_Patterns
|
|
606
|
+
In_Supplemental_Arrows_B
|
|
607
|
+
In_Miscellaneous_Mathematical_Symbols_B
|
|
608
|
+
In_Supplemental_Mathematical_Operators
|
|
609
|
+
In_Miscellaneous_Symbols_and_Arrows
|
|
610
|
+
In_Glagolitic
|
|
611
|
+
In_Latin_Extended_C
|
|
612
|
+
In_Coptic
|
|
613
|
+
In_Georgian_Supplement
|
|
614
|
+
In_Tifinagh
|
|
615
|
+
In_Ethiopic_Extended
|
|
616
|
+
In_Cyrillic_Extended_A
|
|
617
|
+
In_Supplemental_Punctuation
|
|
618
|
+
In_CJK_Radicals_Supplement
|
|
619
|
+
In_Kangxi_Radicals
|
|
620
|
+
In_Ideographic_Description_Characters
|
|
621
|
+
In_CJK_Symbols_and_Punctuation
|
|
622
|
+
In_Hiragana
|
|
623
|
+
In_Katakana
|
|
624
|
+
In_Bopomofo
|
|
625
|
+
In_Hangul_Compatibility_Jamo
|
|
626
|
+
In_Kanbun
|
|
627
|
+
In_Bopomofo_Extended
|
|
628
|
+
In_CJK_Strokes
|
|
629
|
+
In_Katakana_Phonetic_Extensions
|
|
630
|
+
In_Enclosed_CJK_Letters_and_Months
|
|
631
|
+
In_CJK_Compatibility
|
|
632
|
+
In_CJK_Unified_Ideographs_Extension_A
|
|
633
|
+
In_Yijing_Hexagram_Symbols
|
|
634
|
+
In_CJK_Unified_Ideographs
|
|
635
|
+
In_Yi_Syllables
|
|
636
|
+
In_Yi_Radicals
|
|
637
|
+
In_Lisu
|
|
638
|
+
In_Vai
|
|
639
|
+
In_Cyrillic_Extended_B
|
|
640
|
+
In_Bamum
|
|
641
|
+
In_Modifier_Tone_Letters
|
|
642
|
+
In_Latin_Extended_D
|
|
643
|
+
In_Syloti_Nagri
|
|
644
|
+
In_Common_Indic_Number_Forms
|
|
645
|
+
In_Phags_pa
|
|
646
|
+
In_Saurashtra
|
|
647
|
+
In_Devanagari_Extended
|
|
648
|
+
In_Kayah_Li
|
|
649
|
+
In_Rejang
|
|
650
|
+
In_Hangul_Jamo_Extended_A
|
|
651
|
+
In_Javanese
|
|
652
|
+
In_Myanmar_Extended_B
|
|
653
|
+
In_Cham
|
|
654
|
+
In_Myanmar_Extended_A
|
|
655
|
+
In_Tai_Viet
|
|
656
|
+
In_Meetei_Mayek_Extensions
|
|
657
|
+
In_Ethiopic_Extended_A
|
|
658
|
+
In_Latin_Extended_E
|
|
659
|
+
In_Cherokee_Supplement
|
|
660
|
+
In_Meetei_Mayek
|
|
661
|
+
In_Hangul_Syllables
|
|
662
|
+
In_Hangul_Jamo_Extended_B
|
|
663
|
+
In_High_Surrogates
|
|
664
|
+
In_High_Private_Use_Surrogates
|
|
665
|
+
In_Low_Surrogates
|
|
666
|
+
In_Private_Use_Area
|
|
667
|
+
In_CJK_Compatibility_Ideographs
|
|
668
|
+
In_Alphabetic_Presentation_Forms
|
|
669
|
+
In_Arabic_Presentation_Forms_A
|
|
670
|
+
In_Variation_Selectors
|
|
671
|
+
In_Vertical_Forms
|
|
672
|
+
In_Combining_Half_Marks
|
|
673
|
+
In_CJK_Compatibility_Forms
|
|
674
|
+
In_Small_Form_Variants
|
|
675
|
+
In_Arabic_Presentation_Forms_B
|
|
676
|
+
In_Halfwidth_and_Fullwidth_Forms
|
|
677
|
+
In_Specials
|
|
678
|
+
In_Linear_B_Syllabary
|
|
679
|
+
In_Linear_B_Ideograms
|
|
680
|
+
In_Aegean_Numbers
|
|
681
|
+
In_Ancient_Greek_Numbers
|
|
682
|
+
In_Ancient_Symbols
|
|
683
|
+
In_Phaistos_Disc
|
|
684
|
+
In_Lycian
|
|
685
|
+
In_Carian
|
|
686
|
+
In_Coptic_Epact_Numbers
|
|
687
|
+
In_Old_Italic
|
|
688
|
+
In_Gothic
|
|
689
|
+
In_Old_Permic
|
|
690
|
+
In_Ugaritic
|
|
691
|
+
In_Old_Persian
|
|
692
|
+
In_Deseret
|
|
693
|
+
In_Shavian
|
|
694
|
+
In_Osmanya
|
|
695
|
+
In_Osage
|
|
696
|
+
In_Elbasan
|
|
697
|
+
In_Caucasian_Albanian
|
|
698
|
+
In_Vithkuqi
|
|
699
|
+
In_Linear_A
|
|
700
|
+
In_Latin_Extended_F
|
|
701
|
+
In_Cypriot_Syllabary
|
|
702
|
+
In_Imperial_Aramaic
|
|
703
|
+
In_Palmyrene
|
|
704
|
+
In_Nabataean
|
|
705
|
+
In_Hatran
|
|
706
|
+
In_Phoenician
|
|
707
|
+
In_Lydian
|
|
708
|
+
In_Meroitic_Hieroglyphs
|
|
709
|
+
In_Meroitic_Cursive
|
|
710
|
+
In_Kharoshthi
|
|
711
|
+
In_Old_South_Arabian
|
|
712
|
+
In_Old_North_Arabian
|
|
713
|
+
In_Manichaean
|
|
714
|
+
In_Avestan
|
|
715
|
+
In_Inscriptional_Parthian
|
|
716
|
+
In_Inscriptional_Pahlavi
|
|
717
|
+
In_Psalter_Pahlavi
|
|
718
|
+
In_Old_Turkic
|
|
719
|
+
In_Old_Hungarian
|
|
720
|
+
In_Hanifi_Rohingya
|
|
721
|
+
In_Rumi_Numeral_Symbols
|
|
722
|
+
In_Yezidi
|
|
723
|
+
In_Arabic_Extended_C
|
|
724
|
+
In_Old_Sogdian
|
|
725
|
+
In_Sogdian
|
|
726
|
+
In_Old_Uyghur
|
|
727
|
+
In_Chorasmian
|
|
728
|
+
In_Elymaic
|
|
729
|
+
In_Brahmi
|
|
730
|
+
In_Kaithi
|
|
731
|
+
In_Sora_Sompeng
|
|
732
|
+
In_Chakma
|
|
733
|
+
In_Mahajani
|
|
734
|
+
In_Sharada
|
|
735
|
+
In_Sinhala_Archaic_Numbers
|
|
736
|
+
In_Khojki
|
|
737
|
+
In_Multani
|
|
738
|
+
In_Khudawadi
|
|
739
|
+
In_Grantha
|
|
740
|
+
In_Newa
|
|
741
|
+
In_Tirhuta
|
|
742
|
+
In_Siddham
|
|
743
|
+
In_Modi
|
|
744
|
+
In_Mongolian_Supplement
|
|
745
|
+
In_Takri
|
|
746
|
+
In_Ahom
|
|
747
|
+
In_Dogra
|
|
748
|
+
In_Warang_Citi
|
|
749
|
+
In_Dives_Akuru
|
|
750
|
+
In_Nandinagari
|
|
751
|
+
In_Zanabazar_Square
|
|
752
|
+
In_Soyombo
|
|
753
|
+
In_Unified_Canadian_Aboriginal_Syllabics_Extended_A
|
|
754
|
+
In_Pau_Cin_Hau
|
|
755
|
+
In_Devanagari_Extended_A
|
|
756
|
+
In_Bhaiksuki
|
|
757
|
+
In_Marchen
|
|
758
|
+
In_Masaram_Gondi
|
|
759
|
+
In_Gunjala_Gondi
|
|
760
|
+
In_Makasar
|
|
761
|
+
In_Kawi
|
|
762
|
+
In_Lisu_Supplement
|
|
763
|
+
In_Tamil_Supplement
|
|
764
|
+
In_Cuneiform
|
|
765
|
+
In_Cuneiform_Numbers_and_Punctuation
|
|
766
|
+
In_Early_Dynastic_Cuneiform
|
|
767
|
+
In_Cypro_Minoan
|
|
768
|
+
In_Egyptian_Hieroglyphs
|
|
769
|
+
In_Egyptian_Hieroglyph_Format_Controls
|
|
770
|
+
In_Anatolian_Hieroglyphs
|
|
771
|
+
In_Bamum_Supplement
|
|
772
|
+
In_Mro
|
|
773
|
+
In_Tangsa
|
|
774
|
+
In_Bassa_Vah
|
|
775
|
+
In_Pahawh_Hmong
|
|
776
|
+
In_Medefaidrin
|
|
777
|
+
In_Miao
|
|
778
|
+
In_Ideographic_Symbols_and_Punctuation
|
|
779
|
+
In_Tangut
|
|
780
|
+
In_Tangut_Components
|
|
781
|
+
In_Khitan_Small_Script
|
|
782
|
+
In_Tangut_Supplement
|
|
783
|
+
In_Kana_Extended_B
|
|
784
|
+
In_Kana_Supplement
|
|
785
|
+
In_Kana_Extended_A
|
|
786
|
+
In_Small_Kana_Extension
|
|
787
|
+
In_Nushu
|
|
788
|
+
In_Duployan
|
|
789
|
+
In_Shorthand_Format_Controls
|
|
790
|
+
In_Znamenny_Musical_Notation
|
|
791
|
+
In_Byzantine_Musical_Symbols
|
|
792
|
+
In_Musical_Symbols
|
|
793
|
+
In_Ancient_Greek_Musical_Notation
|
|
794
|
+
In_Kaktovik_Numerals
|
|
795
|
+
In_Mayan_Numerals
|
|
796
|
+
In_Tai_Xuan_Jing_Symbols
|
|
797
|
+
In_Counting_Rod_Numerals
|
|
798
|
+
In_Mathematical_Alphanumeric_Symbols
|
|
799
|
+
In_Sutton_SignWriting
|
|
800
|
+
In_Latin_Extended_G
|
|
801
|
+
In_Glagolitic_Supplement
|
|
802
|
+
In_Cyrillic_Extended_D
|
|
803
|
+
In_Nyiakeng_Puachue_Hmong
|
|
804
|
+
In_Toto
|
|
805
|
+
In_Wancho
|
|
806
|
+
In_Nag_Mundari
|
|
807
|
+
In_Ethiopic_Extended_B
|
|
808
|
+
In_Mende_Kikakui
|
|
809
|
+
In_Adlam
|
|
810
|
+
In_Indic_Siyaq_Numbers
|
|
811
|
+
In_Ottoman_Siyaq_Numbers
|
|
812
|
+
In_Arabic_Mathematical_Alphabetic_Symbols
|
|
813
|
+
In_Mahjong_Tiles
|
|
814
|
+
In_Domino_Tiles
|
|
815
|
+
In_Playing_Cards
|
|
816
|
+
In_Enclosed_Alphanumeric_Supplement
|
|
817
|
+
In_Enclosed_Ideographic_Supplement
|
|
818
|
+
In_Miscellaneous_Symbols_and_Pictographs
|
|
819
|
+
In_Emoticons
|
|
820
|
+
In_Ornamental_Dingbats
|
|
821
|
+
In_Transport_and_Map_Symbols
|
|
822
|
+
In_Alchemical_Symbols
|
|
823
|
+
In_Geometric_Shapes_Extended
|
|
824
|
+
In_Supplemental_Arrows_C
|
|
825
|
+
In_Supplemental_Symbols_and_Pictographs
|
|
826
|
+
In_Chess_Symbols
|
|
827
|
+
In_Symbols_and_Pictographs_Extended_A
|
|
828
|
+
In_Symbols_for_Legacy_Computing
|
|
829
|
+
In_CJK_Unified_Ideographs_Extension_B
|
|
830
|
+
In_CJK_Unified_Ideographs_Extension_C
|
|
831
|
+
In_CJK_Unified_Ideographs_Extension_D
|
|
832
|
+
In_CJK_Unified_Ideographs_Extension_E
|
|
833
|
+
In_CJK_Unified_Ideographs_Extension_F
|
|
834
|
+
In_CJK_Compatibility_Ideographs_Supplement
|
|
835
|
+
In_CJK_Unified_Ideographs_Extension_G
|
|
836
|
+
In_CJK_Unified_Ideographs_Extension_H
|
|
837
|
+
In_Tags
|
|
838
|
+
In_Variation_Selectors_Supplement
|
|
839
|
+
In_Supplementary_Private_Use_Area_A
|
|
840
|
+
In_Supplementary_Private_Use_Area_B
|
|
841
|
+
In_No_Block
|