@react-native-quickjs/quickjs 1.0.0-alpha.0

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.
Files changed (84) hide show
  1. package/CHANGELOG.md +36 -0
  2. package/LICENSE +21 -0
  3. package/NOTICE +31 -0
  4. package/README.md +217 -0
  5. package/ReactNativeQuickJS.podspec +197 -0
  6. package/android/CMakeLists.txt +134 -0
  7. package/android/build.gradle +214 -0
  8. package/android/quickjs.gradle +39 -0
  9. package/android/src/main/AndroidManifest.xml +2 -0
  10. package/android/src/main/java/com/reactnativequickjs/quickjs/QuickJSInstance.kt +39 -0
  11. package/android/src/main/java/com/reactnativequickjs/quickjs/QuickJSPackage.kt +32 -0
  12. package/android/src/main/jni/JJSRuntimeFactory.h +37 -0
  13. package/android/src/main/jni/JQuickJSInstance.cpp +27 -0
  14. package/android/src/main/jni/JQuickJSInstance.h +46 -0
  15. package/android/src/main/jni/OnLoad.cpp +15 -0
  16. package/app.plugin.js +11 -0
  17. package/apple/RCTQuickJSInstanceFactory.h +32 -0
  18. package/apple/RCTQuickJSInstanceFactory.mm +16 -0
  19. package/bin/qjsc/darwin-arm64/qjsc +0 -0
  20. package/bin/qjsc/darwin-x64/qjsc +0 -0
  21. package/bin/qjsc/linux-arm64/qjsc +0 -0
  22. package/bin/qjsc/linux-x64/qjsc +0 -0
  23. package/bin/qjsc/manifest.json +11 -0
  24. package/bin/qjsc/win32-x64/qjsc.exe +0 -0
  25. package/bin/react-native-quickjs.js +28 -0
  26. package/cmake/jsi.cmake +24 -0
  27. package/cmake/quickjs.cmake +125 -0
  28. package/engine/quickjs-rel/LICENSE +24 -0
  29. package/engine/quickjs-rel/MANIFEST.json +55 -0
  30. package/engine/quickjs-rel/builtin-array-fromasync.h +120 -0
  31. package/engine/quickjs-rel/builtin-iterator-zip-keyed.h +332 -0
  32. package/engine/quickjs-rel/builtin-iterator-zip.h +337 -0
  33. package/engine/quickjs-rel/cutils.h +1998 -0
  34. package/engine/quickjs-rel/dtoa.c +1619 -0
  35. package/engine/quickjs-rel/dtoa.h +87 -0
  36. package/engine/quickjs-rel/libregexp-opcode.h +73 -0
  37. package/engine/quickjs-rel/libregexp.c +3478 -0
  38. package/engine/quickjs-rel/libregexp.h +101 -0
  39. package/engine/quickjs-rel/libunicode-table.h +5173 -0
  40. package/engine/quickjs-rel/libunicode.c +2069 -0
  41. package/engine/quickjs-rel/libunicode.h +172 -0
  42. package/engine/quickjs-rel/list.h +107 -0
  43. package/engine/quickjs-rel/quickjs-atom.h +280 -0
  44. package/engine/quickjs-rel/quickjs-c-atomics.h +54 -0
  45. package/engine/quickjs-rel/quickjs-opcode.h +385 -0
  46. package/engine/quickjs-rel/quickjs.c +64854 -0
  47. package/engine/quickjs-rel/quickjs.h +1577 -0
  48. package/modules/cdp/quickjs-cdp.c +1386 -0
  49. package/modules/cdp/quickjs-cdp.h +122 -0
  50. package/modules/cdp/react/QuickJSInspector.cpp +322 -0
  51. package/modules/cdp/react/QuickJSInspector.h +114 -0
  52. package/modules/hermes-compat/include/hermes/DebuggerAPI.h +20 -0
  53. package/modules/hermes-compat/include/hermes/Public/CrashManager.h +47 -0
  54. package/modules/hermes-compat/include/hermes/Public/CtorConfig.h +88 -0
  55. package/modules/hermes-compat/include/hermes/Public/GCConfig.h +83 -0
  56. package/modules/hermes-compat/include/hermes/Public/HermesExport.h +17 -0
  57. package/modules/hermes-compat/include/hermes/Public/RuntimeConfig.h +66 -0
  58. package/modules/hermes-compat/include/hermes/Public/SamplingProfiler.h +22 -0
  59. package/modules/hermes-compat/include/hermes/hermes.h +195 -0
  60. package/modules/hermes-compat/include/hermes/inspector/RuntimeAdapter.h +43 -0
  61. package/modules/hermes-compat/include/hermes/inspector-modern/chrome/Registration.h +31 -0
  62. package/modules/hermes-compat/include/hermes-compat/Diagnostics.h +35 -0
  63. package/modules/hermes-compat/src/HermesCompat.cpp +557 -0
  64. package/package.json +104 -0
  65. package/scripts/bytecode/compile.js +99 -0
  66. package/scripts/expo/plugin.js +231 -0
  67. package/scripts/postinstall.js +74 -0
  68. package/scripts/react_native_quickjs_pods.rb +237 -0
  69. package/scripts/setup/edits.js +311 -0
  70. package/scripts/setup/run.js +121 -0
  71. package/src/bytecode/QuickJSBytecode.cpp +50 -0
  72. package/src/bytecode/QuickJSBytecode.h +50 -0
  73. package/src/module/QuickJSCompat.cpp +92 -0
  74. package/src/module/QuickJSCompat.h +19 -0
  75. package/src/module/QuickJSModule.cpp +70 -0
  76. package/src/module/QuickJSModule.h +108 -0
  77. package/src/module/QuickJSModuleNative.h +93 -0
  78. package/src/runtime/QuickJSInstance.cpp +37 -0
  79. package/src/runtime/QuickJSInstance.h +74 -0
  80. package/src/runtime/QuickJSRuntime.cpp +1864 -0
  81. package/src/runtime/QuickJSRuntime.h +529 -0
  82. package/src/runtime/QuickJSRuntimeConfig.h +103 -0
  83. package/src/runtime/QuickJSRuntimeFactory.cpp +34 -0
  84. package/src/runtime/QuickJSRuntimeFactory.h +24 -0
@@ -0,0 +1,125 @@
1
+ # Copyright (c) Ammar Ahmed.
2
+ #
3
+ # This source code is licensed under the MIT license found in the
4
+ # LICENSE file in the root directory of this source tree.
5
+ #
6
+ # Defines the `quickjs` static library.
7
+ #
8
+ # It compiles engine/quickjs-rel, the committed pre-patched copy, not the
9
+ # engine/quickjs-ng submodule -- see the header of scripts/sync-quickjs-rel.js
10
+ # for why the submodule cannot be the thing that ships.
11
+ #
12
+ # Upstream's own CMakeLists is deliberately not used: it also declares qjs,
13
+ # qjsc and api-test, none of which link for Android or iOS, and we want direct
14
+ # control over the compile flags. The source list below mirrors upstream's
15
+ # `qjs_sources`; keep it in sync when bumping the submodule.
16
+
17
+ set(QUICKJS_DIR "${CMAKE_CURRENT_LIST_DIR}/../engine/quickjs-rel")
18
+
19
+ if(NOT EXISTS "${QUICKJS_DIR}/quickjs.c")
20
+ message(FATAL_ERROR
21
+ "engine/quickjs-rel is missing.\n"
22
+ "Run: node scripts/sync-quickjs-rel.js")
23
+ endif()
24
+
25
+ # Patch development edits the submodule in place, but this target compiles the
26
+ # projection, so an unsynced edit would be silently ignored. In a source
27
+ # checkout -- never in a consumer's node_modules -- fail instead, and name the
28
+ # command that fixes it.
29
+ if(EXISTS "${CMAKE_CURRENT_LIST_DIR}/../engine/quickjs-ng/quickjs.c"
30
+ AND EXISTS "${CMAKE_CURRENT_LIST_DIR}/../scripts/sync-quickjs-rel.js")
31
+ find_program(QUICKJS_NODE_EXECUTABLE node)
32
+ if(QUICKJS_NODE_EXECUTABLE)
33
+ execute_process(
34
+ COMMAND "${QUICKJS_NODE_EXECUTABLE}"
35
+ "${CMAKE_CURRENT_LIST_DIR}/../scripts/sync-quickjs-rel.js" --check
36
+ RESULT_VARIABLE QUICKJS_REL_STALE
37
+ OUTPUT_QUIET
38
+ ERROR_VARIABLE QUICKJS_REL_ERROR)
39
+ if(NOT QUICKJS_REL_STALE EQUAL 0)
40
+ message(FATAL_ERROR "${QUICKJS_REL_ERROR}")
41
+ endif()
42
+ else()
43
+ message(STATUS
44
+ "quickjs: node not found, skipping the projection staleness check. "
45
+ "Engine edits made in engine/quickjs-ng will NOT be compiled until you "
46
+ "run scripts/sync-quickjs-rel.js.")
47
+ endif()
48
+ endif()
49
+
50
+ add_library(quickjs STATIC
51
+ "${QUICKJS_DIR}/quickjs.c"
52
+ "${QUICKJS_DIR}/libregexp.c"
53
+ "${QUICKJS_DIR}/libunicode.c"
54
+ "${QUICKJS_DIR}/dtoa.c"
55
+ )
56
+
57
+ target_include_directories(quickjs PUBLIC "${QUICKJS_DIR}")
58
+ target_compile_definitions(quickjs PRIVATE _GNU_SOURCE)
59
+
60
+ # The maths functions are in libSystem on Apple and in a separate libm
61
+ # elsewhere, so a macOS host build links clean while Linux fails at the link
62
+ # step on round, floor, pow and friends. Detected rather than assumed, the way
63
+ # quickjs-ng's own CMakeLists does it.
64
+ find_library(QUICKJS_M_LIBRARY m)
65
+ if(QUICKJS_M_LIBRARY)
66
+ target_link_libraries(quickjs PUBLIC m)
67
+ endif()
68
+
69
+ find_package(Threads)
70
+ target_link_libraries(quickjs PUBLIC ${CMAKE_DL_LIBS} ${CMAKE_THREAD_LIBS_INIT})
71
+
72
+ # The debugger interface added by engine/patches/0003. It costs nothing at
73
+ # runtime with no trace handler installed, because the per-statement traps are
74
+ # emitted at parse time only when there is one. PUBLIC because embedders
75
+ # calling the JS_* debugger entry points must see the value the engine was
76
+ # built with.
77
+ option(QUICKJS_ENABLE_DEBUGGER "Compile in the engine-level debugger interface" ON)
78
+ if(QUICKJS_ENABLE_DEBUGGER)
79
+ target_compile_definitions(quickjs PUBLIC JS_ENABLE_DEBUGGER=1)
80
+ else()
81
+ target_compile_definitions(quickjs PUBLIC JS_ENABLE_DEBUGGER=0)
82
+ endif()
83
+
84
+ # The interpreter recurses on the native stack: one JavaScript call is one
85
+ # JS_CallInternal frame. Unoptimized that frame is around 10 KB, so on React
86
+ # Native's roughly 1 MB JavaScript thread only about 80 JavaScript calls fit --
87
+ # far too few for React to render, and a debug app comes up blank with nothing
88
+ # in the log but "Maximum call stack size exceeded". Optimized the same frame is
89
+ # a small fraction of that.
90
+ #
91
+ # So an app build compiles the engine optimized whatever the app itself is
92
+ # built as. It is a dependency rather than the code an app author steps
93
+ # through, and -g is kept, so a stack trace through it still resolves.
94
+ #
95
+ # Host builds are left alone: they are this project's own tests, they run on a
96
+ # far larger stack than a React Native JavaScript thread, and the third-party
97
+ # JSI conformance suite measures stack-overflow behaviour that this changes.
98
+ if(ANDROID AND NOT MSVC)
99
+ target_compile_options(quickjs PRIVATE $<$<CONFIG:Debug>:-O2>)
100
+ endif()
101
+
102
+ set_target_properties(quickjs PROPERTIES
103
+ C_STANDARD 11
104
+ C_STANDARD_REQUIRED ON
105
+ POSITION_INDEPENDENT_CODE ON
106
+ )
107
+
108
+ # Upstream builds cleanly, but not warning-free under React Native's flags.
109
+ # MSVC rejects these outright -- `cl` reads -Wn as the numeric warning level
110
+ # and stops with D8021 -- and it is only reached by the bytecode compiler,
111
+ # which is built for Windows too.
112
+ if(MSVC)
113
+ # engine/patches/0005 stores the debug-trace arming flag in an `_Atomic bool`,
114
+ # because it is written from a thread other than the one running JavaScript.
115
+ # MSVC treats _Atomic as C11 it does not implement by default, and the first
116
+ # error cascades into a hundred more. quickjs-ng passes the same flag.
117
+ target_compile_options(quickjs PRIVATE /experimental:c11atomics)
118
+ else()
119
+ target_compile_options(quickjs PRIVATE
120
+ -Wno-unused-parameter
121
+ -Wno-unused-variable
122
+ -Wno-sign-compare
123
+ -Wno-implicit-fallthrough
124
+ )
125
+ endif()
@@ -0,0 +1,24 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017-2026 Fabrice Bellard
4
+ Copyright (c) 2017-2024 Charlie Gordon
5
+ Copyright (c) 2023-2026 Ben Noordhuis
6
+ Copyright (c) 2023-2026 Saúl Ibarra Corretgé
7
+
8
+ Permission is hereby granted, free of charge, to any person obtaining a copy
9
+ of this software and associated documentation files (the "Software"), to deal
10
+ in the Software without restriction, including without limitation the rights
11
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12
+ copies of the Software, and to permit persons to whom the Software is
13
+ furnished to do so, subject to the following conditions:
14
+
15
+ The above copyright notice and this permission notice shall be included in
16
+ all copies or substantial portions of the Software.
17
+
18
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21
+ THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24
+ THE SOFTWARE.
@@ -0,0 +1,55 @@
1
+ {
2
+ "_comment": "Generated by scripts/sync-quickjs-rel.js. Do not edit. These files are engine/quickjs-ng at the commit below, with the patches below applied.",
3
+ "upstreamCommit": "3d3cf3d86b66551403745a5b06acbed2b0f31dfd",
4
+ "patches": [
5
+ {
6
+ "name": "0001-runtime-malloc-size-accessor.patch",
7
+ "sha256": "3363c69a862424eac718788c3b03031192bf9c50e6f1669704c48398f7cbe77d"
8
+ },
9
+ {
10
+ "name": "0002-deferred-gc-control.patch",
11
+ "sha256": "e2711c7c181ffcce8d0dcf746b2c133929c76d52d63c4c92ed4ab354d9a91319"
12
+ },
13
+ {
14
+ "name": "0003-debugger-interface.patch",
15
+ "sha256": "eb0e05d2449685768cdd44c8458c3ffb13efa47a92994363ba040ecef46b22e4"
16
+ },
17
+ {
18
+ "name": "0004-debugger-frame-info.patch",
19
+ "sha256": "32b24f70ae7159bf187ecd8ac0119588f3f87929ab306ae92217258561d9bee3"
20
+ },
21
+ {
22
+ "name": "0005-debug-trace-arming.patch",
23
+ "sha256": "6633129288091f711ec6749ef0eaf3f36e9934948ccdab138ef48a556bb78958"
24
+ },
25
+ {
26
+ "name": "0006-private-symbol-keys.patch",
27
+ "sha256": "cf4ba5df3779f81c1721abab677381de5174ed34323bcb5cee68f2f5cf572edd"
28
+ },
29
+ {
30
+ "name": "9999-bc-version-bump.patch",
31
+ "sha256": "1a89bc63c09a7411d3f5d8cacbccbb7c525ad37ec4f7f07ee130f5ade736d428"
32
+ }
33
+ ],
34
+ "files": {
35
+ "quickjs.c": "e59a0172640094f35db7238cb9a0b4ed38152b7388142cdc9a4aa53447cfa80f",
36
+ "libregexp.c": "27cd5fb4f4f0d8c05fea4cb0ddcd4dede7f39364e87f0f5610cfc25a89908158",
37
+ "libunicode.c": "d88f53190ad772dd09b2beb93ffb8fc3097852f4987485aac8663a00189c43eb",
38
+ "dtoa.c": "a8d2cf2d04db406e0c16acdd95ab0e709d309902865722f41dac07a1ba5676af",
39
+ "builtin-array-fromasync.h": "f41eb2eb028832cff9a5f8d8d2cb438c27771a9d7d85c30dfd16aa78f34fe6de",
40
+ "builtin-iterator-zip-keyed.h": "b44cb8065f2eb2d4689b426bbc08fdf24ac996065cd909a09748566ce0b6a446",
41
+ "builtin-iterator-zip.h": "8d30bc2ebbc77f18754059444ee1e2686a6b2229cedfadcc0c593baa656acec2",
42
+ "cutils.h": "810709e35fe0ece09321ad4c207dba9973aa19f91fa909e00754896b39cc3201",
43
+ "dtoa.h": "1c4a4540c0038632c8a4c225472fbc21bd476fb35c4da4a857a11965b58231b9",
44
+ "libregexp-opcode.h": "2a98d646089f3a72f25480116297c5fdb5b28fd9f815447273951f4ade4a115e",
45
+ "libregexp.h": "53ff95a038f7001b752c455d195d998e2955f0ae4ed62a002c13eca798db3ceb",
46
+ "libunicode-table.h": "2ec1c935e1268c1bd76ac10cad63e6e0f1f4bb3f125e69ddcfc2b9123582b8db",
47
+ "libunicode.h": "ad13f66aaea3fab1616e84b9c048f2a315e1bdbab628b966617a7a3e55bcba2b",
48
+ "list.h": "cb6e24e8ee54bccdd66234fe54cd702d1160b9841db2b9b9adeb5003afe301d5",
49
+ "quickjs-atom.h": "66654ae6533d15073ea527979c453709d7ed83162142c656095a10dcef737a60",
50
+ "quickjs-c-atomics.h": "29883c742a5c512278fce54d19b1b9af949006e1d7dfc9ffa2e0946b184d8c5c",
51
+ "quickjs-opcode.h": "c5b3354ae71cd209e8ebe3234768ac906b7f541fb0ab7fac5d69ef66210250bc",
52
+ "quickjs.h": "bdda3829c255b663e6db572f63e5a40dcde529b28c2c10806e419d99dbdb27b0",
53
+ "LICENSE": "96f73f9d2a16c21a36b418f06073be26e7d6d5e7c1bc99756b21a4f2c74ef171"
54
+ }
55
+ }
@@ -0,0 +1,120 @@
1
+ /* File generated automatically by the QuickJS-ng compiler. */
2
+
3
+ #include <inttypes.h>
4
+
5
+ const uint32_t qjsc_builtin_array_fromasync_size = 888;
6
+
7
+ const uint8_t qjsc_builtin_array_fromasync[888] = {
8
+ 0x1c, 0xc5, 0x39, 0x53, 0x3c, 0x0e, 0x01, 0x28,
9
+ 0x53, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0xb7, 0x61,
10
+ 0x73, 0x79, 0x6e, 0x63, 0x49, 0x74, 0x65, 0x72,
11
+ 0x61, 0x74, 0x6f, 0x72, 0x01, 0x2a, 0x4f, 0x62,
12
+ 0x6a, 0x65, 0x63, 0x74, 0xb7, 0x64, 0x65, 0x66,
13
+ 0x69, 0x6e, 0x65, 0x50, 0x72, 0x6f, 0x70, 0x65,
14
+ 0x72, 0x74, 0x79, 0x01, 0x1e, 0x53, 0x79, 0x6d,
15
+ 0x62, 0x6f, 0x6c, 0xb7, 0x69, 0x74, 0x65, 0x72,
16
+ 0x61, 0x74, 0x6f, 0x72, 0x01, 0x12, 0x61, 0x72,
17
+ 0x72, 0x61, 0x79, 0x4c, 0x69, 0x6b, 0x65, 0x01,
18
+ 0x0a, 0x6d, 0x61, 0x70, 0x46, 0x6e, 0x01, 0x0e,
19
+ 0x74, 0x68, 0x69, 0x73, 0x41, 0x72, 0x67, 0x01,
20
+ 0x0c, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x01,
21
+ 0x02, 0x69, 0x01, 0x1a, 0x69, 0x73, 0x43, 0x6f,
22
+ 0x6e, 0x73, 0x74, 0x72, 0x75, 0x63, 0x74, 0x6f,
23
+ 0x72, 0x01, 0x08, 0x73, 0x79, 0x6e, 0x63, 0x01,
24
+ 0x0c, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x01,
25
+ 0x08, 0x69, 0x74, 0x65, 0x72, 0x01, 0x1c, 0x6e,
26
+ 0x6f, 0x74, 0x20, 0x61, 0x20, 0x66, 0x75, 0x6e,
27
+ 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x01, 0x08, 0x63,
28
+ 0x61, 0x6c, 0x6c, 0x0c, 0x00, 0x02, 0x00, 0xa8,
29
+ 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x01,
30
+ 0x04, 0x01, 0xaa, 0x01, 0x00, 0x00, 0x00, 0x0c,
31
+ 0x43, 0x02, 0x01, 0x00, 0x05, 0x00, 0x05, 0x01,
32
+ 0x05, 0x00, 0x01, 0x03, 0x05, 0xbe, 0x02, 0x00,
33
+ 0x01, 0x40, 0x03, 0xb4, 0x03, 0x00, 0x01, 0x40,
34
+ 0x00, 0xe4, 0x03, 0x00, 0x01, 0x40, 0x01, 0xe6,
35
+ 0x03, 0x00, 0x01, 0x40, 0x04, 0xe8, 0x03, 0x00,
36
+ 0x01, 0x40, 0x02, 0x0c, 0x60, 0x02, 0x01, 0x88,
37
+ 0x02, 0x03, 0x0e, 0x01, 0x06, 0x00, 0x05, 0x00,
38
+ 0x93, 0x04, 0x11, 0xea, 0x03, 0x00, 0x01, 0x00,
39
+ 0xec, 0x03, 0x00, 0x01, 0x00, 0xee, 0x03, 0x00,
40
+ 0x01, 0x00, 0xea, 0x03, 0x01, 0xff, 0xff, 0xff,
41
+ 0xff, 0x0f, 0x20, 0xec, 0x03, 0x01, 0x01, 0x20,
42
+ 0xee, 0x03, 0x01, 0x02, 0x20, 0xf0, 0x03, 0x02,
43
+ 0x00, 0x20, 0xf2, 0x03, 0x02, 0x04, 0x20, 0xf4,
44
+ 0x03, 0x02, 0x05, 0x20, 0xf6, 0x03, 0x02, 0x06,
45
+ 0x20, 0xf8, 0x03, 0x02, 0x07, 0x20, 0x66, 0x06,
46
+ 0x08, 0x20, 0x88, 0x01, 0x07, 0x09, 0x20, 0xfa,
47
+ 0x03, 0x0a, 0x08, 0x30, 0x88, 0x01, 0x0d, 0x0b,
48
+ 0x20, 0xe2, 0x01, 0x0d, 0x0c, 0x20, 0x10, 0x00,
49
+ 0x01, 0x00, 0xb4, 0x03, 0x01, 0x01, 0xe4, 0x03,
50
+ 0x02, 0x01, 0xe8, 0x03, 0x04, 0x01, 0xbe, 0x02,
51
+ 0x00, 0x01, 0xe6, 0x03, 0x03, 0x01, 0x08, 0xc8,
52
+ 0x0d, 0x60, 0x02, 0x00, 0x60, 0x01, 0x00, 0x60,
53
+ 0x00, 0x00, 0xd7, 0xcf, 0xd8, 0x11, 0xf8, 0xf0,
54
+ 0x08, 0x0e, 0x38, 0x49, 0x00, 0x00, 0x00, 0xe0,
55
+ 0xd0, 0xd9, 0x11, 0xf8, 0xf0, 0x08, 0x0e, 0x38,
56
+ 0x49, 0x00, 0x00, 0x00, 0xe1, 0xd1, 0x60, 0x07,
57
+ 0x00, 0x60, 0x06, 0x00, 0x60, 0x05, 0x00, 0x60,
58
+ 0x04, 0x00, 0x60, 0x03, 0x00, 0xd8, 0x38, 0x49,
59
+ 0x00, 0x00, 0x00, 0xae, 0xf0, 0x16, 0xd8, 0x96,
60
+ 0x04, 0x1b, 0x00, 0x00, 0x00, 0xae, 0xf0, 0x0c,
61
+ 0xe3, 0x11, 0x04, 0xfe, 0x00, 0x00, 0x00, 0x21,
62
+ 0x01, 0x00, 0x30, 0x06, 0xd2, 0xba, 0xc8, 0x04,
63
+ 0xc7, 0x0d, 0xfb, 0xc8, 0x05, 0x09, 0xc8, 0x06,
64
+ 0xd7, 0xe4, 0x46, 0xc8, 0x07, 0x61, 0x07, 0x00,
65
+ 0x07, 0xab, 0xf0, 0x0f, 0x0a, 0x11, 0x62, 0x06,
66
+ 0x00, 0x0e, 0xd7, 0xe5, 0x46, 0x11, 0x62, 0x07,
67
+ 0x00, 0x0e, 0x61, 0x07, 0x00, 0x07, 0xab, 0x68,
68
+ 0xac, 0x00, 0x00, 0x00, 0x60, 0x08, 0x00, 0x06,
69
+ 0x11, 0xf8, 0xf1, 0x0c, 0x70, 0x41, 0x33, 0x00,
70
+ 0x00, 0x00, 0xc8, 0x08, 0x0e, 0xf2, 0x05, 0x0e,
71
+ 0xd7, 0xf2, 0xf2, 0x61, 0x08, 0x00, 0x8c, 0x11,
72
+ 0xf1, 0x03, 0x0e, 0xba, 0x11, 0x62, 0x08, 0x00,
73
+ 0x0e, 0x61, 0x05, 0x00, 0xf0, 0x0c, 0xc7, 0x0d,
74
+ 0x11, 0x61, 0x08, 0x00, 0x21, 0x01, 0x00, 0xf2,
75
+ 0x06, 0xe6, 0x61, 0x08, 0x00, 0xf5, 0x11, 0x62,
76
+ 0x03, 0x00, 0x0e, 0x61, 0x04, 0x00, 0x61, 0x08,
77
+ 0x00, 0xa5, 0x68, 0x37, 0x01, 0x00, 0x00, 0x60,
78
+ 0x09, 0x00, 0xd7, 0x61, 0x04, 0x00, 0x46, 0xc8,
79
+ 0x09, 0x61, 0x06, 0x00, 0xf0, 0x0a, 0x61, 0x09,
80
+ 0x00, 0x8a, 0x11, 0x62, 0x09, 0x00, 0x0e, 0xd8,
81
+ 0xf0, 0x17, 0xd8, 0x41, 0xff, 0x00, 0x00, 0x00,
82
+ 0xd9, 0x61, 0x09, 0x00, 0x61, 0x04, 0x00, 0x24,
83
+ 0x03, 0x00, 0x8a, 0x11, 0x62, 0x09, 0x00, 0x0e,
84
+ 0x5d, 0x04, 0x00, 0x61, 0x03, 0x00, 0x61, 0x04,
85
+ 0x00, 0x90, 0x62, 0x04, 0x00, 0x0b, 0x61, 0x09,
86
+ 0x00, 0x4b, 0x44, 0x00, 0x00, 0x00, 0x0a, 0x4b,
87
+ 0x41, 0x00, 0x00, 0x00, 0x0a, 0x4b, 0x42, 0x00,
88
+ 0x00, 0x00, 0x0a, 0x4b, 0x43, 0x00, 0x00, 0x00,
89
+ 0xf7, 0x0e, 0xf2, 0x98, 0x60, 0x0a, 0x00, 0x61,
90
+ 0x07, 0x00, 0x41, 0xff, 0x00, 0x00, 0x00, 0xd7,
91
+ 0x24, 0x01, 0x00, 0xc8, 0x0a, 0x61, 0x05, 0x00,
92
+ 0xf0, 0x09, 0xc7, 0x0d, 0x11, 0x21, 0x00, 0x00,
93
+ 0xf2, 0x03, 0xe6, 0xf4, 0x11, 0x62, 0x03, 0x00,
94
+ 0x0e, 0x6b, 0x93, 0x00, 0x00, 0x00, 0x60, 0x0c,
95
+ 0x00, 0x60, 0x0b, 0x00, 0x06, 0x11, 0xf8, 0xf1,
96
+ 0x13, 0x70, 0x41, 0x44, 0x00, 0x00, 0x00, 0xc8,
97
+ 0x0b, 0x41, 0x71, 0x00, 0x00, 0x00, 0xc8, 0x0c,
98
+ 0x0e, 0xf2, 0x10, 0x0e, 0x61, 0x0a, 0x00, 0x41,
99
+ 0x72, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x8a,
100
+ 0xf2, 0xe0, 0x61, 0x0c, 0x00, 0xf1, 0x55, 0x61,
101
+ 0x06, 0x00, 0xf0, 0x0a, 0x61, 0x0b, 0x00, 0x8a,
102
+ 0x11, 0x62, 0x0b, 0x00, 0x0e, 0xd8, 0xf0, 0x17,
103
+ 0xd8, 0x41, 0xff, 0x00, 0x00, 0x00, 0xd9, 0x61,
104
+ 0x0b, 0x00, 0x61, 0x04, 0x00, 0x24, 0x03, 0x00,
105
+ 0x8a, 0x11, 0x62, 0x0b, 0x00, 0x0e, 0x5d, 0x04,
106
+ 0x00, 0x61, 0x03, 0x00, 0x61, 0x04, 0x00, 0x90,
107
+ 0x62, 0x04, 0x00, 0x0b, 0x61, 0x0b, 0x00, 0x4b,
108
+ 0x44, 0x00, 0x00, 0x00, 0x0a, 0x4b, 0x41, 0x00,
109
+ 0x00, 0x00, 0x0a, 0x4b, 0x42, 0x00, 0x00, 0x00,
110
+ 0x0a, 0x4b, 0x43, 0x00, 0x00, 0x00, 0xf7, 0x0e,
111
+ 0xf3, 0x7d, 0xff, 0x0e, 0x06, 0x6c, 0x0d, 0x00,
112
+ 0x00, 0x00, 0x0e, 0xf2, 0x1e, 0x6c, 0x05, 0x00,
113
+ 0x00, 0x00, 0x30, 0x61, 0x0a, 0x00, 0x40, 0x06,
114
+ 0x00, 0x00, 0x00, 0xf0, 0x0d, 0x61, 0x0a, 0x00,
115
+ 0x41, 0x06, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00,
116
+ 0x0e, 0x6d, 0x61, 0x03, 0x00, 0x61, 0x04, 0x00,
117
+ 0x42, 0x33, 0x00, 0x00, 0x00, 0x61, 0x03, 0x00,
118
+ 0x2f, 0xc5, 0x00, 0x28, 0xc5, 0x00, 0xd3, 0x28,
119
+ };
120
+
@@ -0,0 +1,332 @@
1
+ /* File generated automatically by the QuickJS-ng compiler. */
2
+
3
+ #include <inttypes.h>
4
+
5
+ const uint32_t qjsc_builtin_iterator_zip_keyed_size = 2582;
6
+
7
+ const uint8_t qjsc_builtin_iterator_zip_keyed[2582] = {
8
+ 0x1c, 0xeb, 0x00, 0x6f, 0x50, 0x2b, 0x01, 0x1c,
9
+ 0x49, 0x74, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72,
10
+ 0x48, 0x65, 0x6c, 0x70, 0x65, 0x72, 0x01, 0x08,
11
+ 0x63, 0x61, 0x6c, 0x6c, 0x01, 0x24, 0x68, 0x61,
12
+ 0x73, 0x4f, 0x77, 0x6e, 0x45, 0x6e, 0x75, 0x6d,
13
+ 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
14
+ 0x01, 0x24, 0x67, 0x65, 0x74, 0x4f, 0x77, 0x6e,
15
+ 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
16
+ 0x4b, 0x65, 0x79, 0x73, 0x01, 0x1e, 0x53, 0x79,
17
+ 0x6d, 0x62, 0x6f, 0x6c, 0xb7, 0x69, 0x74, 0x65,
18
+ 0x72, 0x61, 0x74, 0x6f, 0x72, 0x01, 0x0a, 0x63,
19
+ 0x68, 0x65, 0x63, 0x6b, 0x01, 0x0a, 0x63, 0x6c,
20
+ 0x6f, 0x73, 0x65, 0x01, 0x10, 0x63, 0x6c, 0x6f,
21
+ 0x73, 0x65, 0x61, 0x6c, 0x6c, 0x01, 0x02, 0x76,
22
+ 0x01, 0x02, 0x73, 0x01, 0x08, 0x69, 0x74, 0x65,
23
+ 0x72, 0x01, 0x0c, 0x6d, 0x65, 0x74, 0x68, 0x6f,
24
+ 0x64, 0x01, 0x02, 0x65, 0x01, 0x0a, 0x69, 0x74,
25
+ 0x65, 0x72, 0x73, 0x01, 0x0a, 0x63, 0x6f, 0x75,
26
+ 0x6e, 0x74, 0x01, 0x04, 0x65, 0x78, 0x01, 0x02,
27
+ 0x69, 0x01, 0x12, 0x69, 0x74, 0x65, 0x72, 0x61,
28
+ 0x62, 0x6c, 0x65, 0x73, 0x01, 0x0e, 0x6f, 0x70,
29
+ 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x01, 0x08, 0x6d,
30
+ 0x6f, 0x64, 0x65, 0x01, 0x0e, 0x70, 0x61, 0x64,
31
+ 0x64, 0x69, 0x6e, 0x67, 0x01, 0x0a, 0x6e, 0x65,
32
+ 0x78, 0x74, 0x73, 0x01, 0x08, 0x70, 0x61, 0x64,
33
+ 0x73, 0x01, 0x06, 0x6b, 0x65, 0x79, 0x01, 0x06,
34
+ 0x64, 0x65, 0x6c, 0x01, 0x02, 0x6a, 0x01, 0x0a,
35
+ 0x73, 0x74, 0x61, 0x74, 0x65, 0x01, 0x0a, 0x61,
36
+ 0x6c, 0x69, 0x76, 0x65, 0x01, 0x0a, 0x64, 0x6f,
37
+ 0x6e, 0x65, 0x73, 0x01, 0x0e, 0x72, 0x65, 0x73,
38
+ 0x75, 0x6c, 0x74, 0x73, 0x01, 0x0c, 0x72, 0x65,
39
+ 0x73, 0x75, 0x6c, 0x74, 0x01, 0x1c, 0x72, 0x75,
40
+ 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x20, 0x7a, 0x69,
41
+ 0x70, 0x70, 0x65, 0x72, 0x01, 0x06, 0x62, 0x75,
42
+ 0x67, 0x01, 0x0e, 0x6c, 0x6f, 0x6e, 0x67, 0x65,
43
+ 0x73, 0x74, 0x01, 0x0c, 0x73, 0x74, 0x72, 0x69,
44
+ 0x63, 0x74, 0x01, 0x22, 0x6d, 0x69, 0x73, 0x6d,
45
+ 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x20, 0x69,
46
+ 0x6e, 0x70, 0x75, 0x74, 0x73, 0x01, 0x10, 0x73,
47
+ 0x68, 0x6f, 0x72, 0x74, 0x65, 0x73, 0x74, 0x01,
48
+ 0x16, 0x62, 0x75, 0x67, 0x3a, 0x20, 0x73, 0x74,
49
+ 0x61, 0x74, 0x65, 0x3d, 0x01, 0x1a, 0x62, 0x61,
50
+ 0x64, 0x20, 0x69, 0x74, 0x65, 0x72, 0x61, 0x62,
51
+ 0x6c, 0x65, 0x73, 0x01, 0x16, 0x62, 0x61, 0x64,
52
+ 0x20, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73,
53
+ 0x01, 0x10, 0x62, 0x61, 0x64, 0x20, 0x6d, 0x6f,
54
+ 0x64, 0x65, 0x01, 0x16, 0x62, 0x61, 0x64, 0x20,
55
+ 0x70, 0x61, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x01,
56
+ 0x18, 0x62, 0x61, 0x64, 0x20, 0x69, 0x74, 0x65,
57
+ 0x72, 0x61, 0x74, 0x6f, 0x72, 0x0c, 0x00, 0x02,
58
+ 0x00, 0xa8, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00,
59
+ 0x00, 0x01, 0x04, 0x01, 0xaa, 0x01, 0x00, 0x00,
60
+ 0x00, 0x0c, 0x43, 0x02, 0x00, 0x00, 0x07, 0x03,
61
+ 0x07, 0x01, 0x0a, 0x00, 0x04, 0x0c, 0x0a, 0xe4,
62
+ 0x03, 0x00, 0x01, 0x40, 0x09, 0xb8, 0x03, 0x00,
63
+ 0x01, 0x40, 0x03, 0xb4, 0x03, 0x00, 0x01, 0x40,
64
+ 0x00, 0xe6, 0x03, 0x00, 0x01, 0x40, 0x01, 0xe8,
65
+ 0x03, 0x00, 0x01, 0x40, 0x07, 0xea, 0x03, 0x00,
66
+ 0x01, 0x40, 0x06, 0xec, 0x03, 0x00, 0x01, 0x40,
67
+ 0x08, 0xee, 0x03, 0x00, 0x00, 0x40, 0x05, 0xf0,
68
+ 0x03, 0x00, 0x01, 0x40, 0x02, 0xf2, 0x03, 0x00,
69
+ 0x02, 0x40, 0x04, 0x0c, 0x43, 0x02, 0x00, 0xee,
70
+ 0x03, 0x02, 0x00, 0x02, 0x03, 0x00, 0x01, 0x00,
71
+ 0x17, 0x02, 0xf4, 0x03, 0x00, 0x01, 0x00, 0xf6,
72
+ 0x03, 0x00, 0x01, 0x00, 0xb4, 0x03, 0x02, 0x01,
73
+ 0xd7, 0x96, 0x04, 0x4d, 0x00, 0x00, 0x00, 0xad,
74
+ 0xf0, 0x07, 0xd7, 0x07, 0xae, 0xf0, 0x02, 0x29,
75
+ 0xe3, 0x11, 0xd8, 0x21, 0x01, 0x00, 0x30, 0x0c,
76
+ 0x43, 0x02, 0x00, 0xf0, 0x03, 0x01, 0x02, 0x01,
77
+ 0x04, 0x00, 0x01, 0x00, 0x2e, 0x03, 0xf8, 0x03,
78
+ 0x00, 0x01, 0x00, 0xfa, 0x03, 0x02, 0x00, 0x20,
79
+ 0xfc, 0x03, 0x05, 0x00, 0x03, 0xe6, 0x03, 0x03,
80
+ 0x01, 0x6b, 0x23, 0x00, 0x00, 0x00, 0x60, 0x00,
81
+ 0x00, 0xd7, 0x95, 0xf0, 0x04, 0x06, 0x6e, 0x28,
82
+ 0xd7, 0x40, 0x06, 0x00, 0x00, 0x00, 0xcf, 0x61,
83
+ 0x00, 0x00, 0xf0, 0x08, 0xe3, 0xd7, 0x61, 0x00,
84
+ 0x00, 0xf6, 0x0e, 0x0e, 0x29, 0xd0, 0x6b, 0x07,
85
+ 0x00, 0x00, 0x00, 0xcc, 0x6e, 0x28, 0x30, 0x0c,
86
+ 0x43, 0x02, 0x00, 0xf2, 0x03, 0x02, 0x04, 0x02,
87
+ 0x03, 0x00, 0x01, 0x00, 0x55, 0x06, 0xfe, 0x03,
88
+ 0x00, 0x01, 0x00, 0x80, 0x04, 0x00, 0x01, 0x00,
89
+ 0x82, 0x04, 0x01, 0x00, 0x20, 0x84, 0x04, 0x02,
90
+ 0x01, 0x20, 0xf8, 0x03, 0x03, 0x02, 0x20, 0xfc,
91
+ 0x03, 0x03, 0x03, 0x20, 0xf0, 0x03, 0x01, 0x00,
92
+ 0x60, 0x00, 0x00, 0x38, 0x49, 0x00, 0x00, 0x00,
93
+ 0xcf, 0x60, 0x01, 0x00, 0xd8, 0xd0, 0x61, 0x01,
94
+ 0x00, 0x8f, 0x62, 0x01, 0x00, 0xba, 0xa7, 0xf0,
95
+ 0x39, 0x60, 0x03, 0x00, 0x60, 0x02, 0x00, 0xd7,
96
+ 0x61, 0x01, 0x00, 0x46, 0xd1, 0xd7, 0x61, 0x01,
97
+ 0x00, 0x1b, 0x11, 0xaf, 0xf1, 0x04, 0x1b, 0x71,
98
+ 0x1b, 0x1b, 0x38, 0x49, 0x00, 0x00, 0x00, 0x1b,
99
+ 0x71, 0x1b, 0x48, 0xe3, 0x61, 0x02, 0x00, 0xf5,
100
+ 0xd2, 0x61, 0x00, 0x00, 0x95, 0xf0, 0xc8, 0x61,
101
+ 0x03, 0x00, 0x11, 0x62, 0x00, 0x00, 0x0e, 0xf2,
102
+ 0xbe, 0x61, 0x00, 0x00, 0x28, 0x0c, 0x41, 0x02,
103
+ 0x00, 0xba, 0x02, 0x02, 0x15, 0x01, 0x06, 0x08,
104
+ 0x09, 0x02, 0xc9, 0x05, 0x17, 0x86, 0x04, 0x00,
105
+ 0x01, 0x00, 0x88, 0x04, 0x00, 0x01, 0x00, 0x86,
106
+ 0x04, 0x01, 0xff, 0xff, 0xff, 0xff, 0x0f, 0x20,
107
+ 0x88, 0x04, 0x01, 0x01, 0x20, 0x8a, 0x04, 0x02,
108
+ 0x00, 0x60, 0x04, 0x8c, 0x04, 0x02, 0x03, 0x20,
109
+ 0x62, 0x02, 0x04, 0x60, 0x02, 0x80, 0x04, 0x02,
110
+ 0x05, 0x60, 0x01, 0xfe, 0x03, 0x02, 0x06, 0x60,
111
+ 0x03, 0x8e, 0x04, 0x02, 0x07, 0x60, 0x06, 0x90,
112
+ 0x04, 0x02, 0x08, 0x60, 0x05, 0x92, 0x04, 0x09,
113
+ 0x15, 0x20, 0x84, 0x04, 0x0b, 0x15, 0x20, 0x94,
114
+ 0x04, 0x0c, 0x0b, 0x20, 0x92, 0x04, 0x0c, 0x0c,
115
+ 0x20, 0xf8, 0x03, 0x0e, 0x0d, 0x20, 0xfa, 0x03,
116
+ 0x10, 0x0e, 0x20, 0x96, 0x04, 0x14, 0x0d, 0x20,
117
+ 0x84, 0x04, 0x19, 0x15, 0x20, 0x84, 0x04, 0x1b,
118
+ 0x15, 0x20, 0xfc, 0x03, 0x1c, 0x15, 0x03, 0x98,
119
+ 0x04, 0x02, 0x09, 0x60, 0x00, 0x9a, 0x04, 0x02,
120
+ 0x14, 0x60, 0x07, 0xb4, 0x03, 0x02, 0x01, 0xb8,
121
+ 0x03, 0x01, 0x01, 0xe6, 0x03, 0x03, 0x01, 0xf2,
122
+ 0x03, 0x02, 0x00, 0xee, 0x03, 0x00, 0x00, 0xea,
123
+ 0x03, 0x05, 0x01, 0xe8, 0x03, 0x04, 0x01, 0xec,
124
+ 0x03, 0x06, 0x01, 0xe4, 0x03, 0x00, 0x01, 0x0c,
125
+ 0x42, 0x03, 0x00, 0x00, 0x00, 0x09, 0x00, 0x05,
126
+ 0x00, 0x0c, 0x00, 0xf7, 0x04, 0x09, 0x9c, 0x04,
127
+ 0x01, 0x00, 0x20, 0xe6, 0x01, 0x01, 0x01, 0x20,
128
+ 0x9e, 0x04, 0x01, 0x02, 0x20, 0x84, 0x04, 0x03,
129
+ 0x03, 0x20, 0x92, 0x04, 0x04, 0x04, 0x20, 0xf8,
130
+ 0x03, 0x04, 0x05, 0x20, 0xa0, 0x04, 0x04, 0x06,
131
+ 0x20, 0xfc, 0x03, 0x09, 0x07, 0x03, 0x82, 0x04,
132
+ 0x10, 0x07, 0x20, 0x98, 0x04, 0x13, 0x10, 0xb4,
133
+ 0x03, 0x00, 0x02, 0xb8, 0x03, 0x01, 0x02, 0x80,
134
+ 0x04, 0x05, 0x10, 0x62, 0x04, 0x10, 0xfe, 0x03,
135
+ 0x06, 0x10, 0x8a, 0x04, 0x02, 0x10, 0x90, 0x04,
136
+ 0x08, 0x10, 0xe6, 0x03, 0x02, 0x02, 0x8e, 0x04,
137
+ 0x07, 0x10, 0x9a, 0x04, 0x14, 0x10, 0xf2, 0x03,
138
+ 0x03, 0x02, 0x60, 0x02, 0x00, 0x60, 0x01, 0x00,
139
+ 0x60, 0x00, 0x00, 0x64, 0x00, 0x00, 0x11, 0xba,
140
+ 0xad, 0xf1, 0x06, 0x11, 0xbb, 0xad, 0xf0, 0x09,
141
+ 0xbc, 0x11, 0x65, 0x00, 0x00, 0x0e, 0xf2, 0x33,
142
+ 0x11, 0xbc, 0xad, 0xf0, 0x0c, 0xe4, 0x11, 0x04,
143
+ 0x11, 0x01, 0x00, 0x00, 0x21, 0x01, 0x00, 0x30,
144
+ 0x11, 0xbd, 0xad, 0xf0, 0x13, 0x0b, 0x38, 0x49,
145
+ 0x00, 0x00, 0x00, 0x4b, 0x44, 0x00, 0x00, 0x00,
146
+ 0x0a, 0x4b, 0x71, 0x00, 0x00, 0x00, 0x28, 0xe5,
147
+ 0x11, 0x04, 0x12, 0x01, 0x00, 0x00, 0x21, 0x01,
148
+ 0x00, 0x30, 0x0e, 0xba, 0xcf, 0xba, 0xd0, 0x0c,
149
+ 0x07, 0xd1, 0x60, 0x03, 0x00, 0xba, 0xd2, 0x61,
150
+ 0x03, 0x00, 0x64, 0x03, 0x00, 0xa5, 0x68, 0xdd,
151
+ 0x01, 0x00, 0x00, 0x60, 0x06, 0x00, 0x60, 0x05,
152
+ 0x00, 0x60, 0x04, 0x00, 0x64, 0x04, 0x00, 0x61,
153
+ 0x03, 0x00, 0x46, 0xc8, 0x04, 0x64, 0x05, 0x00,
154
+ 0x61, 0x03, 0x00, 0x46, 0xc8, 0x05, 0x61, 0x05,
155
+ 0x00, 0x95, 0xf0, 0x34, 0x64, 0x06, 0x00, 0x04,
156
+ 0x13, 0x01, 0x00, 0x00, 0xae, 0xf0, 0x0c, 0xe5,
157
+ 0x11, 0x04, 0x12, 0x01, 0x00, 0x00, 0x21, 0x01,
158
+ 0x00, 0x30, 0x61, 0x02, 0x00, 0x61, 0x04, 0x00,
159
+ 0x1b, 0x11, 0xaf, 0xf1, 0x04, 0x1b, 0x71, 0x1b,
160
+ 0x1b, 0x64, 0x07, 0x00, 0x61, 0x03, 0x00, 0x46,
161
+ 0x1b, 0x71, 0x1b, 0x48, 0xf3, 0x7c, 0x01, 0x06,
162
+ 0xc8, 0x06, 0x6b, 0x1a, 0x00, 0x00, 0x00, 0x5d,
163
+ 0x08, 0x00, 0x61, 0x05, 0x00, 0x64, 0x09, 0x00,
164
+ 0x61, 0x03, 0x00, 0x46, 0xf6, 0x11, 0x62, 0x06,
165
+ 0x00, 0x0e, 0x0e, 0xf2, 0x35, 0xc8, 0x07, 0x6b,
166
+ 0x30, 0x00, 0x00, 0x00, 0xba, 0x11, 0x65, 0x0a,
167
+ 0x00, 0x0e, 0x64, 0x05, 0x00, 0x61, 0x03, 0x00,
168
+ 0x1b, 0x11, 0xaf, 0xf1, 0x04, 0x1b, 0x71, 0x1b,
169
+ 0x1b, 0x38, 0x49, 0x00, 0x00, 0x00, 0x1b, 0x71,
170
+ 0x1b, 0x48, 0x5d, 0x0b, 0x00, 0x64, 0x05, 0x00,
171
+ 0x64, 0x03, 0x00, 0xf6, 0x0e, 0xc7, 0x07, 0x30,
172
+ 0x30, 0x61, 0x06, 0x00, 0x40, 0x71, 0x00, 0x00,
173
+ 0x00, 0x95, 0xf0, 0x4f, 0x64, 0x06, 0x00, 0x04,
174
+ 0x14, 0x01, 0x00, 0x00, 0xad, 0xf0, 0x1e, 0x61,
175
+ 0x00, 0x00, 0xba, 0xa7, 0xf0, 0x17, 0x5d, 0x0b,
176
+ 0x00, 0x64, 0x05, 0x00, 0x64, 0x03, 0x00, 0xf6,
177
+ 0x0e, 0xe4, 0x11, 0x04, 0x15, 0x01, 0x00, 0x00,
178
+ 0x21, 0x01, 0x00, 0x30, 0x61, 0x02, 0x00, 0x61,
179
+ 0x04, 0x00, 0x1b, 0x11, 0xaf, 0xf1, 0x04, 0x1b,
180
+ 0x71, 0x1b, 0x1b, 0x61, 0x06, 0x00, 0x40, 0x44,
181
+ 0x00, 0x00, 0x00, 0x1b, 0x71, 0x1b, 0x48, 0x61,
182
+ 0x01, 0x00, 0x90, 0x62, 0x01, 0x00, 0x0e, 0xf3,
183
+ 0xd1, 0x00, 0x64, 0x0a, 0x00, 0x8f, 0x65, 0x0a,
184
+ 0x00, 0x0e, 0x61, 0x00, 0x00, 0x90, 0x62, 0x00,
185
+ 0x00, 0x0e, 0x64, 0x05, 0x00, 0x61, 0x03, 0x00,
186
+ 0x1b, 0x11, 0xaf, 0xf1, 0x04, 0x1b, 0x71, 0x1b,
187
+ 0x1b, 0x38, 0x49, 0x00, 0x00, 0x00, 0x1b, 0x71,
188
+ 0x1b, 0x48, 0x64, 0x06, 0x00, 0x60, 0x08, 0x00,
189
+ 0x11, 0x04, 0x16, 0x01, 0x00, 0x00, 0xad, 0xf0,
190
+ 0x2e, 0x5d, 0x0b, 0x00, 0x64, 0x05, 0x00, 0x64,
191
+ 0x03, 0x00, 0xf6, 0xc8, 0x08, 0x61, 0x08, 0x00,
192
+ 0xf0, 0x05, 0x61, 0x08, 0x00, 0x30, 0xbd, 0x11,
193
+ 0x65, 0x00, 0x00, 0x0e, 0x0b, 0x38, 0x49, 0x00,
194
+ 0x00, 0x00, 0x4b, 0x44, 0x00, 0x00, 0x00, 0x0a,
195
+ 0x4b, 0x71, 0x00, 0x00, 0x00, 0x28, 0x11, 0x04,
196
+ 0x13, 0x01, 0x00, 0x00, 0xad, 0xf0, 0x3c, 0x64,
197
+ 0x0a, 0x00, 0xbb, 0xa5, 0xf0, 0x19, 0xbd, 0x11,
198
+ 0x65, 0x00, 0x00, 0x0e, 0x0b, 0x38, 0x49, 0x00,
199
+ 0x00, 0x00, 0x4b, 0x44, 0x00, 0x00, 0x00, 0x0a,
200
+ 0x4b, 0x71, 0x00, 0x00, 0x00, 0x28, 0x61, 0x02,
201
+ 0x00, 0x61, 0x04, 0x00, 0x1b, 0x11, 0xaf, 0xf1,
202
+ 0x04, 0x1b, 0x71, 0x1b, 0x1b, 0x64, 0x07, 0x00,
203
+ 0x61, 0x03, 0x00, 0x46, 0x1b, 0x71, 0x1b, 0x48,
204
+ 0xf2, 0x27, 0x11, 0x04, 0x14, 0x01, 0x00, 0x00,
205
+ 0xad, 0xf0, 0x1e, 0x61, 0x01, 0x00, 0xba, 0xa7,
206
+ 0xf0, 0x17, 0x5d, 0x0b, 0x00, 0x64, 0x05, 0x00,
207
+ 0x64, 0x03, 0x00, 0xf6, 0x0e, 0xe4, 0x11, 0x04,
208
+ 0x15, 0x01, 0x00, 0x00, 0x21, 0x01, 0x00, 0x30,
209
+ 0x0e, 0x61, 0x03, 0x00, 0x90, 0x62, 0x03, 0x00,
210
+ 0x0e, 0xf3, 0x1d, 0xfe, 0x61, 0x01, 0x00, 0xba,
211
+ 0xad, 0xf0, 0x19, 0xbd, 0x11, 0x65, 0x00, 0x00,
212
+ 0x0e, 0x0b, 0x38, 0x49, 0x00, 0x00, 0x00, 0x4b,
213
+ 0x44, 0x00, 0x00, 0x00, 0x0a, 0x4b, 0x71, 0x00,
214
+ 0x00, 0x00, 0x28, 0xbb, 0x11, 0x65, 0x00, 0x00,
215
+ 0x0e, 0x0b, 0x61, 0x02, 0x00, 0x4b, 0x44, 0x00,
216
+ 0x00, 0x00, 0x09, 0x4b, 0x71, 0x00, 0x00, 0x00,
217
+ 0x28, 0x0c, 0x42, 0x03, 0x00, 0x00, 0x00, 0x01,
218
+ 0x00, 0x06, 0x00, 0x06, 0x00, 0x88, 0x01, 0x01,
219
+ 0x82, 0x04, 0x01, 0x00, 0x20, 0x98, 0x04, 0x13,
220
+ 0x10, 0xb4, 0x03, 0x00, 0x02, 0xb8, 0x03, 0x01,
221
+ 0x02, 0xf2, 0x03, 0x03, 0x02, 0xfe, 0x03, 0x06,
222
+ 0x10, 0x80, 0x04, 0x05, 0x10, 0x60, 0x00, 0x00,
223
+ 0x64, 0x00, 0x00, 0x11, 0xba, 0xad, 0xf0, 0x09,
224
+ 0xbd, 0x11, 0x65, 0x00, 0x00, 0x0e, 0xf2, 0x4b,
225
+ 0x11, 0xbb, 0xad, 0xf0, 0x09, 0xbc, 0x11, 0x65,
226
+ 0x00, 0x00, 0x0e, 0xf2, 0x3e, 0x11, 0xbc, 0xad,
227
+ 0xf0, 0x0c, 0xe4, 0x11, 0x04, 0x11, 0x01, 0x00,
228
+ 0x00, 0x21, 0x01, 0x00, 0x30, 0x11, 0xbd, 0xad,
229
+ 0xf0, 0x13, 0x0b, 0x38, 0x49, 0x00, 0x00, 0x00,
230
+ 0x4b, 0x44, 0x00, 0x00, 0x00, 0x0a, 0x4b, 0x71,
231
+ 0x00, 0x00, 0x00, 0x28, 0xe5, 0x11, 0x04, 0x17,
232
+ 0x01, 0x00, 0x00, 0x41, 0x64, 0x00, 0x00, 0x00,
233
+ 0x64, 0x00, 0x00, 0x24, 0x01, 0x00, 0x21, 0x01,
234
+ 0x00, 0x30, 0x0e, 0xe6, 0x64, 0x04, 0x00, 0x64,
235
+ 0x05, 0x00, 0xf6, 0xcf, 0x61, 0x00, 0x00, 0xf0,
236
+ 0x05, 0x61, 0x00, 0x00, 0x30, 0xbd, 0x11, 0x65,
237
+ 0x00, 0x00, 0x0e, 0x0b, 0x38, 0x49, 0x00, 0x00,
238
+ 0x00, 0x4b, 0x44, 0x00, 0x00, 0x00, 0x0a, 0x4b,
239
+ 0x71, 0x00, 0x00, 0x00, 0x28, 0x60, 0x01, 0x00,
240
+ 0x60, 0x00, 0x00, 0xd7, 0xcf, 0xd8, 0x11, 0xf8,
241
+ 0xf0, 0x08, 0x0e, 0x38, 0x49, 0x00, 0x00, 0x00,
242
+ 0xe0, 0xd0, 0x60, 0x14, 0x00, 0x60, 0x13, 0x00,
243
+ 0x60, 0x08, 0x00, 0x60, 0x07, 0x00, 0x60, 0x06,
244
+ 0x00, 0x60, 0x05, 0x00, 0x60, 0x04, 0x00, 0x60,
245
+ 0x03, 0x00, 0x60, 0x02, 0x00, 0x5d, 0x04, 0x00,
246
+ 0xd7, 0x04, 0x18, 0x01, 0x00, 0x00, 0xf6, 0x0e,
247
+ 0xd8, 0x38, 0x49, 0x00, 0x00, 0x00, 0xad, 0xf0,
248
+ 0x06, 0x0c, 0x07, 0xdc, 0xf2, 0x0c, 0x5d, 0x04,
249
+ 0x00, 0xd8, 0x04, 0x19, 0x01, 0x00, 0x00, 0xf6,
250
+ 0x0e, 0xd8, 0x40, 0x05, 0x01, 0x00, 0x00, 0xd1,
251
+ 0x61, 0x02, 0x00, 0x38, 0x49, 0x00, 0x00, 0x00,
252
+ 0xad, 0xf0, 0x0b, 0x04, 0x16, 0x01, 0x00, 0x00,
253
+ 0x11, 0x62, 0x02, 0x00, 0x0e, 0x61, 0x02, 0x00,
254
+ 0x04, 0x14, 0x01, 0x00, 0x00, 0xad, 0x11, 0xf1,
255
+ 0x18, 0x0e, 0x61, 0x02, 0x00, 0x04, 0x13, 0x01,
256
+ 0x00, 0x00, 0xad, 0x11, 0xf1, 0x0b, 0x0e, 0x61,
257
+ 0x02, 0x00, 0x04, 0x16, 0x01, 0x00, 0x00, 0xad,
258
+ 0x95, 0xf0, 0x0c, 0xe3, 0x11, 0x04, 0x1a, 0x01,
259
+ 0x00, 0x00, 0x21, 0x01, 0x00, 0x30, 0x38, 0x49,
260
+ 0x00, 0x00, 0x00, 0xd2, 0x61, 0x02, 0x00, 0x04,
261
+ 0x13, 0x01, 0x00, 0x00, 0xad, 0xf0, 0x24, 0xd8,
262
+ 0x40, 0x06, 0x01, 0x00, 0x00, 0x11, 0x62, 0x03,
263
+ 0x00, 0x0e, 0x61, 0x03, 0x00, 0x38, 0x49, 0x00,
264
+ 0x00, 0x00, 0xae, 0xf0, 0x0e, 0x5d, 0x04, 0x00,
265
+ 0x61, 0x03, 0x00, 0x04, 0x1b, 0x01, 0x00, 0x00,
266
+ 0xf6, 0x0e, 0x26, 0x00, 0x00, 0xc8, 0x04, 0xba,
267
+ 0xc8, 0x05, 0x26, 0x00, 0x00, 0xc8, 0x06, 0x26,
268
+ 0x00, 0x00, 0xc8, 0x07, 0x26, 0x00, 0x00, 0xc8,
269
+ 0x08, 0x60, 0x09, 0x00, 0x5d, 0x05, 0x00, 0xd7,
270
+ 0xf5, 0x7e, 0xf2, 0x1d, 0xc8, 0x09, 0x61, 0x04,
271
+ 0x00, 0x61, 0x05, 0x00, 0x90, 0x62, 0x05, 0x00,
272
+ 0x1b, 0x11, 0xaf, 0xf1, 0x04, 0x1b, 0x71, 0x1b,
273
+ 0x1b, 0x61, 0x09, 0x00, 0x1b, 0x71, 0x1b, 0x48,
274
+ 0x81, 0x00, 0xf0, 0xe1, 0x0e, 0x83, 0x6b, 0x7d,
275
+ 0x01, 0x00, 0x00, 0x60, 0x0a, 0x00, 0xba, 0xc8,
276
+ 0x0a, 0x61, 0x0a, 0x00, 0x61, 0x05, 0x00, 0xa5,
277
+ 0x68, 0xf0, 0x00, 0x00, 0x00, 0x60, 0x0c, 0x00,
278
+ 0x60, 0x0b, 0x00, 0x0a, 0xc8, 0x0b, 0x61, 0x04,
279
+ 0x00, 0x61, 0x0a, 0x00, 0x46, 0xc8, 0x0c, 0x5d,
280
+ 0x06, 0x00, 0xd7, 0x61, 0x0c, 0x00, 0xf6, 0xf0,
281
+ 0x78, 0x60, 0x0d, 0x00, 0xd7, 0x61, 0x0c, 0x00,
282
+ 0x46, 0xc8, 0x0d, 0x61, 0x0d, 0x00, 0x38, 0x49,
283
+ 0x00, 0x00, 0x00, 0xae, 0xf0, 0x63, 0x60, 0x0e,
284
+ 0x00, 0x5d, 0x04, 0x00, 0x61, 0x0d, 0x00, 0x04,
285
+ 0x1c, 0x01, 0x00, 0x00, 0xf6, 0x0e, 0x61, 0x0d,
286
+ 0x00, 0x5d, 0x07, 0x00, 0x46, 0xc8, 0x0e, 0x61,
287
+ 0x0e, 0x00, 0xf0, 0x0e, 0xe5, 0x61, 0x0d, 0x00,
288
+ 0x61, 0x0e, 0x00, 0xf6, 0x11, 0x62, 0x0d, 0x00,
289
+ 0x0e, 0x61, 0x06, 0x00, 0x61, 0x0a, 0x00, 0x1b,
290
+ 0x11, 0xaf, 0xf1, 0x04, 0x1b, 0x71, 0x1b, 0x1b,
291
+ 0x61, 0x0d, 0x00, 0x1b, 0x71, 0x1b, 0x48, 0x61,
292
+ 0x07, 0x00, 0x61, 0x0a, 0x00, 0x1b, 0x11, 0xaf,
293
+ 0xf1, 0x04, 0x1b, 0x71, 0x1b, 0x1b, 0x61, 0x0d,
294
+ 0x00, 0x40, 0x72, 0x00, 0x00, 0x00, 0x1b, 0x71,
295
+ 0x1b, 0x48, 0x09, 0x11, 0x62, 0x0b, 0x00, 0x0e,
296
+ 0x61, 0x0b, 0x00, 0xf0, 0x4a, 0x60, 0x0f, 0x00,
297
+ 0x61, 0x0a, 0x00, 0xbb, 0x9c, 0xc8, 0x0f, 0x61,
298
+ 0x0f, 0x00, 0x61, 0x05, 0x00, 0xa5, 0xf0, 0x27,
299
+ 0x61, 0x04, 0x00, 0x61, 0x0f, 0x00, 0xbb, 0x9d,
300
+ 0x1b, 0x11, 0xaf, 0xf1, 0x04, 0x1b, 0x71, 0x1b,
301
+ 0x1b, 0x61, 0x04, 0x00, 0x61, 0x0f, 0x00, 0x46,
302
+ 0x1b, 0x71, 0x1b, 0x48, 0x61, 0x0f, 0x00, 0x90,
303
+ 0x62, 0x0f, 0x00, 0x0e, 0xf2, 0xd2, 0x61, 0x05,
304
+ 0x00, 0x8f, 0x62, 0x05, 0x00, 0x0e, 0x61, 0x0a,
305
+ 0x00, 0x8f, 0x62, 0x0a, 0x00, 0x0e, 0x61, 0x0a,
306
+ 0x00, 0x90, 0x62, 0x0a, 0x00, 0x0e, 0xf3, 0x0a,
307
+ 0xff, 0x61, 0x02, 0x00, 0x04, 0x13, 0x01, 0x00,
308
+ 0x00, 0xad, 0xf0, 0x6e, 0x61, 0x03, 0x00, 0xf0,
309
+ 0x38, 0x60, 0x10, 0x00, 0xba, 0xc8, 0x10, 0x61,
310
+ 0x10, 0x00, 0x61, 0x05, 0x00, 0xa5, 0xf0, 0x5a,
311
+ 0x61, 0x08, 0x00, 0x61, 0x10, 0x00, 0x1b, 0x11,
312
+ 0xaf, 0xf1, 0x04, 0x1b, 0x71, 0x1b, 0x1b, 0x61,
313
+ 0x03, 0x00, 0x61, 0x04, 0x00, 0x61, 0x10, 0x00,
314
+ 0x46, 0x46, 0x1b, 0x71, 0x1b, 0x48, 0x61, 0x10,
315
+ 0x00, 0x90, 0x62, 0x10, 0x00, 0x0e, 0xf2, 0xd0,
316
+ 0x60, 0x11, 0x00, 0xba, 0xc8, 0x11, 0x61, 0x11,
317
+ 0x00, 0x61, 0x05, 0x00, 0xa5, 0xf0, 0x23, 0x61,
318
+ 0x08, 0x00, 0x61, 0x11, 0x00, 0x1b, 0x11, 0xaf,
319
+ 0xf1, 0x04, 0x1b, 0x71, 0x1b, 0x1b, 0x38, 0x49,
320
+ 0x00, 0x00, 0x00, 0x1b, 0x71, 0x1b, 0x48, 0x61,
321
+ 0x11, 0x00, 0x90, 0x62, 0x11, 0x00, 0x0e, 0xf2,
322
+ 0xd6, 0x0e, 0xf2, 0x15, 0xc8, 0x12, 0x6b, 0x10,
323
+ 0x00, 0x00, 0x00, 0xe6, 0x61, 0x06, 0x00, 0x61,
324
+ 0x05, 0x00, 0xf6, 0x0e, 0xc7, 0x12, 0x30, 0x30,
325
+ 0xba, 0xc8, 0x13, 0x61, 0x05, 0x00, 0xc8, 0x14,
326
+ 0x0b, 0x5d, 0x08, 0x00, 0x4e, 0xc5, 0x00, 0x53,
327
+ 0x72, 0x00, 0x00, 0x00, 0x04, 0xc5, 0x01, 0x53,
328
+ 0x06, 0x00, 0x00, 0x00, 0x04, 0x28, 0xc5, 0x00,
329
+ 0xcf, 0xc5, 0x01, 0xd0, 0xc5, 0x02, 0xd1, 0xc5,
330
+ 0x03, 0x28, 0xc5, 0x00, 0xd3, 0x28,
331
+ };
332
+