Coverage for tests/bindgen/generated/list_types/__init__.py: 87%
320 statements
« prev ^ index » next coverage.py v7.6.12, created at 2025-02-20 16:25 +0000
« prev ^ index » next coverage.py v7.6.12, created at 2025-02-20 16:25 +0000
1from .exports import exports
2from .intrinsics import _decode_utf8, _encode_utf8, _list_canon_lift, _list_canon_lower, _load, _store
3import ctypes
4import importlib_resources
5import pathlib
6from typing import List, cast
7import wasmtime
9class Root:
11 def __init__(self, store: wasmtime.Store) -> None:
12 file = importlib_resources.files() / ('root.core39.wasm')
13 if isinstance(file, pathlib.Path):
14 module = wasmtime.Module.from_file(store.engine, file)
15 else:
16 module = wasmtime.Module(store.engine, file.read_bytes())
17 instance0 = wasmtime.Instance(store, module, []).exports(store)
18 file = importlib_resources.files() / ('root.core0.wasm')
19 if isinstance(file, pathlib.Path):
20 module = wasmtime.Module.from_file(store.engine, file)
21 else:
22 module = wasmtime.Module(store.engine, file.read_bytes())
23 instance1 = wasmtime.Instance(store, module, [
24 instance0["0"],
25 instance0["1"],
26 instance0["3"],
27 instance0["4"],
28 instance0["5"],
29 instance0["6"],
30 instance0["7"],
31 instance0["8"],
32 instance0["9"],
33 instance0["10"],
34 instance0["11"],
35 instance0["12"],
36 instance0["13"],
37 instance0["14"],
38 instance0["15"],
39 instance0["16"],
40 instance0["17"],
41 instance0["18"],
42 instance0["19"],
43 instance0["20"],
44 instance0["21"],
45 instance0["22"],
46 instance0["23"],
47 instance0["24"],
48 instance0["25"],
49 instance0["26"],
50 instance0["27"],
51 instance0["28"],
52 instance0["29"],
53 instance0["30"],
54 instance0["31"],
55 instance0["32"],
56 instance0["33"],
57 instance0["34"],
58 instance0["35"],
59 instance0["36"],
60 instance0["37"],
61 instance0["38"],
62 instance0["39"],
63 instance0["40"],
64 instance0["41"],
65 instance0["42"],
66 instance0["43"],
67 instance0["44"],
68 instance0["45"],
69 instance0["46"],
70 instance0["47"],
71 instance0["48"],
72 instance0["49"],
73 instance0["2"],
74 instance0["52"],
75 instance0["53"],
76 instance0["54"],
77 instance0["55"],
78 instance0["56"],
79 instance0["57"],
80 instance0["58"],
81 instance0["59"],
82 instance0["60"],
83 instance0["61"],
84 instance0["62"],
85 instance0["63"],
86 instance0["64"],
87 instance0["65"],
88 instance0["66"],
89 instance0["67"],
90 instance0["68"],
91 instance0["69"],
92 instance0["70"],
93 instance0["71"],
94 instance0["72"],
95 instance0["73"],
96 instance0["74"],
97 instance0["75"],
98 instance0["76"],
99 instance0["77"],
100 instance0["78"],
101 instance0["79"],
102 instance0["80"],
103 instance0["81"],
104 instance0["82"],
105 instance0["83"],
106 instance0["84"],
107 instance0["85"],
108 instance0["86"],
109 instance0["87"],
110 instance0["88"],
111 instance0["89"],
112 instance0["90"],
113 instance0["91"],
114 instance0["92"],
115 instance0["93"],
116 instance0["94"],
117 instance0["95"],
118 instance0["96"],
119 instance0["97"],
120 instance0["98"],
121 instance0["99"],
122 instance0["100"],
123 instance0["101"],
124 instance0["102"],
125 instance0["103"],
126 instance0["104"],
127 instance0["105"],
128 instance0["106"],
129 instance0["107"],
130 instance0["108"],
131 instance0["109"],
132 instance0["110"],
133 instance0["111"],
134 instance0["112"],
135 instance0["113"],
136 instance0["114"],
137 instance0["115"],
138 instance0["116"],
139 instance0["117"],
140 instance0["118"],
141 instance0["119"],
142 instance0["120"],
143 instance0["121"],
144 instance0["122"],
145 instance0["123"],
146 instance0["124"],
147 instance0["125"],
148 instance0["126"],
149 instance0["127"],
150 instance0["128"],
151 instance0["129"],
152 instance0["130"],
153 instance0["131"],
154 instance0["132"],
155 instance0["133"],
156 instance0["134"],
157 instance0["135"],
158 instance0["136"],
159 instance0["137"],
160 instance0["138"],
161 instance0["139"],
162 instance0["140"],
163 instance0["141"],
164 instance0["142"],
165 instance0["143"],
166 instance0["144"],
167 instance0["145"],
168 instance0["146"],
169 instance0["147"],
170 instance0["148"],
171 instance0["149"],
172 instance0["150"],
173 instance0["151"],
174 instance0["152"],
175 instance0["153"],
176 instance0["154"],
177 instance0["155"],
178 instance0["156"],
179 instance0["157"],
180 instance0["158"],
181 instance0["159"],
182 instance0["160"],
183 instance0["161"],
184 instance0["162"],
185 instance0["163"],
186 instance0["164"],
187 instance0["165"],
188 instance0["166"],
189 instance0["167"],
190 instance0["168"],
191 instance0["169"],
192 instance0["170"],
193 instance0["171"],
194 instance0["172"],
195 instance0["173"],
196 instance0["174"],
197 instance0["175"],
198 instance0["176"],
199 instance0["177"],
200 instance0["178"],
201 instance0["179"],
202 instance0["180"],
203 instance0["181"],
204 instance0["182"],
205 instance0["183"],
206 instance0["184"],
207 instance0["50"],
208 instance0["51"],
209 ]).exports(store)
210 file = importlib_resources.files() / ('root.core1.wasm')
211 if isinstance(file, pathlib.Path):
212 module = wasmtime.Module.from_file(store.engine, file)
213 else:
214 module = wasmtime.Module(store.engine, file.read_bytes())
215 instance2 = wasmtime.Instance(store, module, []).exports(store)
216 file = importlib_resources.files() / ('root.core2.wasm')
217 if isinstance(file, pathlib.Path):
218 module = wasmtime.Module.from_file(store.engine, file)
219 else:
220 module = wasmtime.Module(store.engine, file.read_bytes())
221 instance3 = wasmtime.Instance(store, module, []).exports(store)
222 file = importlib_resources.files() / ('root.core3.wasm')
223 if isinstance(file, pathlib.Path):
224 module = wasmtime.Module.from_file(store.engine, file)
225 else:
226 module = wasmtime.Module(store.engine, file.read_bytes())
227 instance4 = wasmtime.Instance(store, module, []).exports(store)
228 file = importlib_resources.files() / ('root.core4.wasm')
229 if isinstance(file, pathlib.Path):
230 module = wasmtime.Module.from_file(store.engine, file)
231 else:
232 module = wasmtime.Module(store.engine, file.read_bytes())
233 instance5 = wasmtime.Instance(store, module, []).exports(store)
234 file = importlib_resources.files() / ('root.core5.wasm')
235 if isinstance(file, pathlib.Path):
236 module = wasmtime.Module.from_file(store.engine, file)
237 else:
238 module = wasmtime.Module(store.engine, file.read_bytes())
239 instance6 = wasmtime.Instance(store, module, []).exports(store)
240 file = importlib_resources.files() / ('root.core6.wasm')
241 if isinstance(file, pathlib.Path):
242 module = wasmtime.Module.from_file(store.engine, file)
243 else:
244 module = wasmtime.Module(store.engine, file.read_bytes())
245 instance7 = wasmtime.Instance(store, module, []).exports(store)
246 file = importlib_resources.files() / ('root.core7.wasm')
247 if isinstance(file, pathlib.Path):
248 module = wasmtime.Module.from_file(store.engine, file)
249 else:
250 module = wasmtime.Module(store.engine, file.read_bytes())
251 instance8 = wasmtime.Instance(store, module, []).exports(store)
252 file = importlib_resources.files() / ('root.core8.wasm')
253 if isinstance(file, pathlib.Path):
254 module = wasmtime.Module.from_file(store.engine, file)
255 else:
256 module = wasmtime.Module(store.engine, file.read_bytes())
257 instance9 = wasmtime.Instance(store, module, []).exports(store)
258 file = importlib_resources.files() / ('root.core9.wasm')
259 if isinstance(file, pathlib.Path):
260 module = wasmtime.Module.from_file(store.engine, file)
261 else:
262 module = wasmtime.Module(store.engine, file.read_bytes())
263 instance10 = wasmtime.Instance(store, module, []).exports(store)
264 file = importlib_resources.files() / ('root.core10.wasm')
265 if isinstance(file, pathlib.Path):
266 module = wasmtime.Module.from_file(store.engine, file)
267 else:
268 module = wasmtime.Module(store.engine, file.read_bytes())
269 instance11 = wasmtime.Instance(store, module, []).exports(store)
270 file = importlib_resources.files() / ('root.core11.wasm')
271 if isinstance(file, pathlib.Path):
272 module = wasmtime.Module.from_file(store.engine, file)
273 else:
274 module = wasmtime.Module(store.engine, file.read_bytes())
275 instance12 = wasmtime.Instance(store, module, []).exports(store)
276 file = importlib_resources.files() / ('root.core12.wasm')
277 if isinstance(file, pathlib.Path):
278 module = wasmtime.Module.from_file(store.engine, file)
279 else:
280 module = wasmtime.Module(store.engine, file.read_bytes())
281 instance13 = wasmtime.Instance(store, module, []).exports(store)
282 file = importlib_resources.files() / ('root.core13.wasm')
283 if isinstance(file, pathlib.Path):
284 module = wasmtime.Module.from_file(store.engine, file)
285 else:
286 module = wasmtime.Module(store.engine, file.read_bytes())
287 instance14 = wasmtime.Instance(store, module, []).exports(store)
288 file = importlib_resources.files() / ('root.core14.wasm')
289 if isinstance(file, pathlib.Path):
290 module = wasmtime.Module.from_file(store.engine, file)
291 else:
292 module = wasmtime.Module(store.engine, file.read_bytes())
293 instance15 = wasmtime.Instance(store, module, []).exports(store)
294 file = importlib_resources.files() / ('root.core15.wasm')
295 if isinstance(file, pathlib.Path):
296 module = wasmtime.Module.from_file(store.engine, file)
297 else:
298 module = wasmtime.Module(store.engine, file.read_bytes())
299 instance16 = wasmtime.Instance(store, module, []).exports(store)
300 file = importlib_resources.files() / ('root.core16.wasm')
301 if isinstance(file, pathlib.Path):
302 module = wasmtime.Module.from_file(store.engine, file)
303 else:
304 module = wasmtime.Module(store.engine, file.read_bytes())
305 instance17 = wasmtime.Instance(store, module, []).exports(store)
306 file = importlib_resources.files() / ('root.core17.wasm')
307 if isinstance(file, pathlib.Path):
308 module = wasmtime.Module.from_file(store.engine, file)
309 else:
310 module = wasmtime.Module(store.engine, file.read_bytes())
311 instance18 = wasmtime.Instance(store, module, []).exports(store)
312 file = importlib_resources.files() / ('root.core18.wasm')
313 if isinstance(file, pathlib.Path):
314 module = wasmtime.Module.from_file(store.engine, file)
315 else:
316 module = wasmtime.Module(store.engine, file.read_bytes())
317 instance19 = wasmtime.Instance(store, module, []).exports(store)
318 file = importlib_resources.files() / ('root.core19.wasm')
319 if isinstance(file, pathlib.Path):
320 module = wasmtime.Module.from_file(store.engine, file)
321 else:
322 module = wasmtime.Module(store.engine, file.read_bytes())
323 instance20 = wasmtime.Instance(store, module, []).exports(store)
324 file = importlib_resources.files() / ('root.core20.wasm')
325 if isinstance(file, pathlib.Path):
326 module = wasmtime.Module.from_file(store.engine, file)
327 else:
328 module = wasmtime.Module(store.engine, file.read_bytes())
329 instance21 = wasmtime.Instance(store, module, []).exports(store)
330 file = importlib_resources.files() / ('root.core21.wasm')
331 if isinstance(file, pathlib.Path):
332 module = wasmtime.Module.from_file(store.engine, file)
333 else:
334 module = wasmtime.Module(store.engine, file.read_bytes())
335 instance22 = wasmtime.Instance(store, module, []).exports(store)
336 file = importlib_resources.files() / ('root.core22.wasm')
337 if isinstance(file, pathlib.Path):
338 module = wasmtime.Module.from_file(store.engine, file)
339 else:
340 module = wasmtime.Module(store.engine, file.read_bytes())
341 instance23 = wasmtime.Instance(store, module, []).exports(store)
342 file = importlib_resources.files() / ('root.core23.wasm')
343 if isinstance(file, pathlib.Path):
344 module = wasmtime.Module.from_file(store.engine, file)
345 else:
346 module = wasmtime.Module(store.engine, file.read_bytes())
347 instance24 = wasmtime.Instance(store, module, []).exports(store)
348 file = importlib_resources.files() / ('root.core24.wasm')
349 if isinstance(file, pathlib.Path):
350 module = wasmtime.Module.from_file(store.engine, file)
351 else:
352 module = wasmtime.Module(store.engine, file.read_bytes())
353 instance25 = wasmtime.Instance(store, module, []).exports(store)
354 file = importlib_resources.files() / ('root.core25.wasm')
355 if isinstance(file, pathlib.Path):
356 module = wasmtime.Module.from_file(store.engine, file)
357 else:
358 module = wasmtime.Module(store.engine, file.read_bytes())
359 instance26 = wasmtime.Instance(store, module, []).exports(store)
360 file = importlib_resources.files() / ('root.core26.wasm')
361 if isinstance(file, pathlib.Path):
362 module = wasmtime.Module.from_file(store.engine, file)
363 else:
364 module = wasmtime.Module(store.engine, file.read_bytes())
365 instance27 = wasmtime.Instance(store, module, []).exports(store)
366 file = importlib_resources.files() / ('root.core27.wasm')
367 if isinstance(file, pathlib.Path):
368 module = wasmtime.Module.from_file(store.engine, file)
369 else:
370 module = wasmtime.Module(store.engine, file.read_bytes())
371 instance28 = wasmtime.Instance(store, module, []).exports(store)
372 file = importlib_resources.files() / ('root.core28.wasm')
373 if isinstance(file, pathlib.Path):
374 module = wasmtime.Module.from_file(store.engine, file)
375 else:
376 module = wasmtime.Module(store.engine, file.read_bytes())
377 instance29 = wasmtime.Instance(store, module, []).exports(store)
378 file = importlib_resources.files() / ('root.core29.wasm')
379 if isinstance(file, pathlib.Path):
380 module = wasmtime.Module.from_file(store.engine, file)
381 else:
382 module = wasmtime.Module(store.engine, file.read_bytes())
383 instance30 = wasmtime.Instance(store, module, [
384 instance1["memory"],
385 instance1["__indirect_function_table"],
386 instance1["libwasi-emulated-getpid.so:memory_base"],
387 instance1["libwasi-emulated-getpid.so:table_base"],
388 ]).exports(store)
389 file = importlib_resources.files() / ('root.core30.wasm')
390 if isinstance(file, pathlib.Path):
391 module = wasmtime.Module.from_file(store.engine, file)
392 else:
393 module = wasmtime.Module(store.engine, file.read_bytes())
394 instance31 = wasmtime.Instance(store, module, []).exports(store)
395 file = importlib_resources.files() / ('root.core31.wasm')
396 if isinstance(file, pathlib.Path):
397 module = wasmtime.Module.from_file(store.engine, file)
398 else:
399 module = wasmtime.Module(store.engine, file.read_bytes())
400 instance32 = wasmtime.Instance(store, module, [
401 instance1["memory"],
402 instance1["__indirect_function_table"],
403 instance1["__stack_pointer"],
404 instance1["libcomponentize_py_runtime.so:memory_base"],
405 instance1["libcomponentize_py_runtime.so:table_base"],
406 instance1["_Py_Dealloc"],
407 instance1["Py_IsInitialized"],
408 instance1["PyImport_AppendInittab"],
409 instance1["PyObject_IsInstance"],
410 instance1["PyErr_WriteUnraisable"],
411 instance1["PyMapping_Keys"],
412 instance1["PyLong_FromUnsignedLongLong"],
413 instance1["PySequence_DelItem"],
414 instance1["wasi_snapshot_preview1:reset_adapter_state"],
415 instance1["__wasilibc_reset_preopens"],
416 instance1["componentize-py#CallIndirect"],
417 instance1["memcpy"],
418 instance1["PyLong_FromLongLong"],
419 instance1["PyObject_CallNoArgs"],
420 instance1["PyObject_VectorcallMethod"],
421 instance1["PyTuple_New"],
422 instance1["PyImport_Import"],
423 instance1["PySequence_Check"],
424 instance1["PySequence_Size"],
425 instance1["PyObject_Call"],
426 instance1["PyThreadState_Get"],
427 instance1["PyCallable_Check"],
428 instance1["_Py_CheckFunctionResult"],
429 instance1["_PyObject_MakeTpCall"],
430 instance1["PyList_New"],
431 instance1["PyBytes_FromStringAndSize"],
432 instance1["PyBytes_AsString"],
433 instance1["memset"],
434 instance1["memcmp"],
435 instance1["wasi:cli/environment@0.2.0:get-environment"],
436 instance1["wasi:cli/environment@0.2.0:get-arguments"],
437 instance1["PyObject_Repr"],
438 instance1["PyObject_Str"],
439 instance1["PyUnicode_FromStringAndSize"],
440 instance1["PyErr_SetRaisedException"],
441 instance1["PyType_GetName"],
442 instance1["PyNumber_Negative"],
443 instance1["PyNumber_Positive"],
444 instance1["PyNumber_Absolute"],
445 instance1["PyNumber_Invert"],
446 instance1["PyObject_IsTrue"],
447 instance1["PyObject_Size"],
448 instance1["PyObject_GetIter"],
449 instance1["PyObject_Hash"],
450 instance1["PyObject_Dir"],
451 instance1["PyByteArray_Size"],
452 instance1["PyByteArray_AsString"],
453 instance1["PyByteArray_Resize"],
454 instance1["PyByteArray_FromObject"],
455 instance1["PyBytes_Size"],
456 instance1["PyCapsule_SetContext"],
457 instance1["PyCapsule_GetContext"],
458 instance1["PyCapsule_GetName"],
459 instance1["PyErr_Clear"],
460 instance1["PyCapsule_GetPointer"],
461 instance1["PyCapsule_IsValid"],
462 instance1["strlen"],
463 instance1["PyType_IsSubtype"],
464 instance1["PyComplex_RealAsDouble"],
465 instance1["PyComplex_ImagAsDouble"],
466 instance1["PyGILState_Release"],
467 instance1["PyDict_Copy"],
468 instance1["PyDict_Clear"],
469 instance1["PyDict_Keys"],
470 instance1["PyDict_Values"],
471 instance1["PyDict_Items"],
472 instance1["PyDict_Update"],
473 instance1["PyDict_Merge"],
474 instance1["PyObject_LengthHint"],
475 instance1["PyIter_Next"],
476 instance1["PyList_GetItem"],
477 instance1["PyList_GetSlice"],
478 instance1["PyList_Sort"],
479 instance1["PyList_Reverse"],
480 instance1["PyList_AsTuple"],
481 instance1["PyMemoryView_FromObject"],
482 instance1["PyModule_GetDict"],
483 instance1["PyErr_GivenExceptionMatches"],
484 instance1["PyModule_GetNameObject"],
485 instance1["PyModule_GetFilenameObject"],
486 instance1["PyObject_GetAttr"],
487 instance1["PySet_Pop"],
488 instance1["PySlice_Unpack"],
489 instance1["PySlice_AdjustIndices"],
490 instance1["PyUnicode_AsUTF8AndSize"],
491 instance1["PyUnicode_AsUTF8String"],
492 instance1["PyUnicode_AsEncodedString"],
493 instance1["PyTraceBack_Print"],
494 instance1["PyTuple_GetSlice"],
495 instance1["PyTuple_GetItem"],
496 instance1["PySequence_List"],
497 instance1["PyType_GetQualName"],
498 instance1["PyObject_IsSubclass"],
499 instance1["PyErr_SetString"],
500 instance1["PyWeakref_GetObject"],
501 instance1["PyNumber_Add"],
502 instance1["PyNumber_Subtract"],
503 instance1["PyNumber_Multiply"],
504 instance1["PyNumber_TrueDivide"],
505 instance1["PyException_GetTraceback"],
506 instance1["PyException_SetTraceback"],
507 instance1["PyErr_GetRaisedException"],
508 instance1["PyErr_PrintEx"],
509 instance1["PyErr_NewExceptionWithDoc"],
510 instance1["PyErr_DisplayException"],
511 instance1["PyErr_WarnEx"],
512 instance1["PyErr_WarnExplicit"],
513 instance1["PyException_GetCause"],
514 instance1["PyException_SetCause"],
515 instance1["PyErr_Print"],
516 instance1["PyFloat_FromDouble"],
517 instance1["PyModule_New"],
518 instance1["Py_CompileStringExFlags"],
519 instance1["PyImport_ExecCodeModuleEx"],
520 instance1["PyList_Append"],
521 instance1["PyErr_SetObject"],
522 instance1["PyUnicode_InternInPlace"],
523 instance1["PyModule_Create2"],
524 instance1["PySequence_SetItem"],
525 instance1["PySequence_Count"],
526 instance1["PySequence_Contains"],
527 instance1["PySequence_Index"],
528 instance1["PySet_New"],
529 instance1["PySet_Contains"],
530 instance1["PySet_Discard"],
531 instance1["PySet_Add"],
532 instance1["PySet_Size"],
533 instance1["PyWeakref_NewProxy"],
534 instance1["PyUnicode_DecodeFSDefaultAndSize"],
535 instance1["PyUnicode_EncodeFSDefault"],
536 instance1["PyOS_FSPath"],
537 instance1["PyUnicodeDecodeError_Create"],
538 instance1["PyGILState_Ensure"],
539 instance1["PyEval_SaveThread"],
540 instance1["PyEval_RestoreThread"],
541 instance1["PyLong_FromLong"],
542 instance1["PyLong_AsLong"],
543 instance1["PyLong_AsLongLong"],
544 instance1["PyLong_AsUnsignedLongLong"],
545 instance1["PyNumber_Index"],
546 instance1["PyImport_AddModule"],
547 instance1["PyDict_Contains"],
548 instance1["PyEval_GetBuiltins"],
549 instance1["PyDict_SetItem"],
550 instance1["PyEval_EvalCode"],
551 instance1["Py_GetVersion"],
552 instance1["PyErr_CheckSignals"],
553 instance1["PyCMethod_New"],
554 instance1["PyUnicode_FromEncodedObject"],
555 instance1["PyType_FromSpec"],
556 instance1["_PyLong_FromByteArray"],
557 instance1["PyObject_SetAttrString"],
558 instance1["PyLong_FromSsize_t"],
559 instance1["PyObject_GetItem"],
560 instance1["PyObject_SetItem"],
561 instance1["PyObject_DelItem"],
562 instance1["PyIter_Check"],
563 instance1["memmove"],
564 instance1["PyInterpreterState_Get"],
565 instance1["PyInterpreterState_GetID"],
566 instance1["PySlice_New"],
567 instance1["PyObject_SetAttr"],
568 instance1["PyObject_RichCompare"],
569 instance1["PyNumber_Divmod"],
570 instance1["PyNumber_Power"],
571 instance1["PyByteArray_FromStringAndSize"],
572 instance1["PyDict_New"],
573 instance1["PyDict_MergeFromSeq2"],
574 instance1["PyDict_GetItemWithError"],
575 instance1["PyErr_Occurred"],
576 instance1["PyDict_DelItem"],
577 instance1["_PyLong_AsByteArray"],
578 instance1["PyNumber_MatrixMultiply"],
579 instance1["PyNumber_FloorDivide"],
580 instance1["PyNumber_Remainder"],
581 instance1["PyNumber_Lshift"],
582 instance1["PyNumber_Rshift"],
583 instance1["PyNumber_And"],
584 instance1["PyNumber_Or"],
585 instance1["PyNumber_Xor"],
586 instance1["Py_InitializeEx"],
587 instance1["PyComplex_FromDoubles"],
588 instance1["_PyLong_NumBits"],
589 instance1["PyFloat_AsDouble"],
590 instance1["PyFrozenSet_New"],
591 instance1["PyList_SetItem"],
592 instance1["PyList_Insert"],
593 instance1["PyWeakref_NewRef"],
594 instance1["PyCapsule_Import"],
595 instance1["log"],
596 instance1["exp"],
597 instance1["cbrt"],
598 instance1["log2"],
599 instance1["__wasilibc_find_relpath"],
600 instance1["close"],
601 instance1["posix_memalign"],
602 instance1["malloc"],
603 instance1["free"],
604 instance1["realloc"],
605 instance1["calloc"],
606 instance1["setenv"],
607 instance1["unsetenv"],
608 instance1["getenv"],
609 instance1["chdir"],
610 instance1["strerror_r"],
611 instance1["getcwd"],
612 instance1["__wasilibc_get_environ"],
613 instance1["exit"],
614 instance1["abort"],
615 instance1["wasi_snapshot_preview1:args_get"],
616 instance1["wasi_snapshot_preview1:args_sizes_get"],
617 instance1["wasi_snapshot_preview1:environ_get"],
618 instance1["wasi_snapshot_preview1:environ_sizes_get"],
619 instance1["wasi_snapshot_preview1:clock_res_get"],
620 instance1["wasi_snapshot_preview1:clock_time_get"],
621 instance1["wasi_snapshot_preview1:fd_advise"],
622 instance1["wasi_snapshot_preview1:fd_allocate"],
623 instance1["wasi_snapshot_preview1:fd_close"],
624 instance1["wasi_snapshot_preview1:fd_datasync"],
625 instance1["wasi_snapshot_preview1:fd_fdstat_get"],
626 instance1["wasi_snapshot_preview1:fd_fdstat_set_flags"],
627 instance1["wasi_snapshot_preview1:fd_fdstat_set_rights"],
628 instance1["wasi_snapshot_preview1:fd_filestat_get"],
629 instance1["wasi_snapshot_preview1:fd_filestat_set_size"],
630 instance1["wasi_snapshot_preview1:fd_filestat_set_times"],
631 instance1["wasi_snapshot_preview1:fd_pread"],
632 instance1["wasi_snapshot_preview1:fd_prestat_get"],
633 instance1["wasi_snapshot_preview1:fd_prestat_dir_name"],
634 instance1["wasi_snapshot_preview1:fd_pwrite"],
635 instance1["wasi_snapshot_preview1:fd_read"],
636 instance1["wasi_snapshot_preview1:fd_readdir"],
637 instance1["wasi_snapshot_preview1:fd_renumber"],
638 instance1["wasi_snapshot_preview1:fd_seek"],
639 instance1["wasi_snapshot_preview1:fd_sync"],
640 instance1["wasi_snapshot_preview1:fd_tell"],
641 instance1["wasi_snapshot_preview1:fd_write"],
642 instance1["wasi_snapshot_preview1:path_create_directory"],
643 instance1["wasi_snapshot_preview1:path_filestat_get"],
644 instance1["wasi_snapshot_preview1:path_filestat_set_times"],
645 instance1["wasi_snapshot_preview1:path_link"],
646 instance1["wasi_snapshot_preview1:path_open"],
647 instance1["wasi_snapshot_preview1:path_readlink"],
648 instance1["wasi_snapshot_preview1:path_remove_directory"],
649 instance1["wasi_snapshot_preview1:path_rename"],
650 instance1["wasi_snapshot_preview1:path_symlink"],
651 instance1["wasi_snapshot_preview1:path_unlink_file"],
652 instance1["wasi_snapshot_preview1:poll_oneoff"],
653 instance1["wasi_snapshot_preview1:proc_exit"],
654 instance1["wasi_snapshot_preview1:proc_raise"],
655 instance1["wasi_snapshot_preview1:sched_yield"],
656 instance1["wasi_snapshot_preview1:random_get"],
657 instance1["wasi_snapshot_preview1:sock_accept"],
658 instance1["wasi_snapshot_preview1:sock_recv"],
659 instance1["wasi_snapshot_preview1:sock_send"],
660 instance1["wasi_snapshot_preview1:sock_shutdown"],
661 instance1["libcomponentize_py_runtime.so:PyExc_SystemError"],
662 instance1["libcomponentize_py_runtime.so:PyInit_componentize_py_runtime"],
663 instance1["libcomponentize_py_runtime.so:__rust_no_alloc_shim_is_unstable"],
664 instance1["libcomponentize_py_runtime.so:_ZN6anyhow5error60_$LT$impl$u20$core..fmt..Debug$u20$for$u20$anyhow..Error$GT$3fmt17h94bd2c8dc4d8b4b9E"],
665 instance1["libcomponentize_py_runtime.so:_Py_NoneStruct"],
666 instance1["libcomponentize_py_runtime.so:_Py_FalseStruct"],
667 instance1["libcomponentize_py_runtime.so:_Py_TrueStruct"],
668 instance1["libcomponentize_py_runtime.so:_ZN53_$LT$pyo3..err..PyErr$u20$as$u20$core..fmt..Debug$GT$3fmt17he5fae13af032ffa3E"],
669 instance1["libcomponentize_py_runtime.so:PyExc_TypeError"],
670 instance1["libcomponentize_py_runtime.so:_ZN55_$LT$pyo3..err..PyErr$u20$as$u20$core..fmt..Display$GT$3fmt17h5e6ff7465d4c5e06E"],
671 instance1["libcomponentize_py_runtime.so:cabi_realloc"],
672 instance1["libcomponentize_py_runtime.so:PyComplex_Type"],
673 instance1["libcomponentize_py_runtime.so:PyExc_AttributeError"],
674 instance1["libcomponentize_py_runtime.so:_PyWeakref_RefType"],
675 instance1["libcomponentize_py_runtime.so:_PyWeakref_ProxyType"],
676 instance1["libcomponentize_py_runtime.so:_PyWeakref_CallableProxyType"],
677 instance1["libcomponentize_py_runtime.so:PyExc_BlockingIOError"],
678 instance1["libcomponentize_py_runtime.so:PyExc_RuntimeError"],
679 instance1["libcomponentize_py_runtime.so:PyExc_OSError"],
680 instance1["libcomponentize_py_runtime.so:PyExc_ValueError"],
681 instance1["libcomponentize_py_runtime.so:PyExc_FileExistsError"],
682 instance1["libcomponentize_py_runtime.so:PyExc_BrokenPipeError"],
683 instance1["libcomponentize_py_runtime.so:PyExc_ConnectionAbortedError"],
684 instance1["libcomponentize_py_runtime.so:PyExc_FileNotFoundError"],
685 instance1["libcomponentize_py_runtime.so:PyExc_UnicodeDecodeError"],
686 instance1["libcomponentize_py_runtime.so:PyExc_TimeoutError"],
687 instance1["libcomponentize_py_runtime.so:PyExc_PermissionError"],
688 instance1["libcomponentize_py_runtime.so:PyExc_ConnectionResetError"],
689 instance1["libcomponentize_py_runtime.so:PyExc_InterruptedError"],
690 instance1["libcomponentize_py_runtime.so:PyExc_ConnectionRefusedError"],
691 instance1["libcomponentize_py_runtime.so:PyByteArray_Type"],
692 instance1["libcomponentize_py_runtime.so:_ZN8pyo3_ffi8datetime18PyDateTimeAPI_impl17hb4adfb35473d18cfE"],
693 instance1["libcomponentize_py_runtime.so:PyModule_Type"],
694 instance1["libcomponentize_py_runtime.so:PySuper_Type"],
695 instance1["libcomponentize_py_runtime.so:PyExc_BaseException"],
696 instance1["libcomponentize_py_runtime.so:PyBool_Type"],
697 instance1["libcomponentize_py_runtime.so:PyExc_OverflowError"],
698 instance1["libcomponentize_py_runtime.so:_ZN3std4hash6random11RandomState3new4KEYS28_$u7b$$u7b$closure$u7d$$u7d$3VAL17h7cf73dd687db3236E"],
699 instance1["libcomponentize_py_runtime.so:PyObject_GenericSetDict"],
700 instance1["libcomponentize_py_runtime.so:PyObject_GenericGetDict"],
701 instance1["libcomponentize_py_runtime.so:_ZN4core3fmt3num3imp54_$LT$impl$u20$core..fmt..Display$u20$for$u20$usize$GT$3fmt17h489fff550716ce3cE"],
702 instance1["libcomponentize_py_runtime.so:PyExc_ImportError"],
703 instance1["libcomponentize_py_runtime.so:PyBaseObject_Type"],
704 instance1["libcomponentize_py_runtime.so:PyType_GenericAlloc"],
705 instance1["libcomponentize_py_runtime.so:PyFloat_Type"],
706 instance1["libcomponentize_py_runtime.so:_ZN4core3fmt3num3imp54_$LT$impl$u20$core..fmt..Display$u20$for$u20$isize$GT$3fmt17h08d6f2bcc208e04dE"],
707 instance1["libcomponentize_py_runtime.so:_CLOCK_MONOTONIC"],
708 instance1["libcomponentize_py_runtime.so:_CLOCK_PROCESS_CPUTIME_ID"],
709 instance1["libcomponentize_py_runtime.so:_CLOCK_REALTIME"],
710 instance1["libcomponentize_py_runtime.so:_CLOCK_THREAD_CPUTIME_ID"],
711 instance1["libcomponentize_py_runtime.so:_ZN4core3fmt3num3imp52_$LT$impl$u20$core..fmt..Display$u20$for$u20$u32$GT$3fmt17he2e19476b472642cE"],
712 instance1["libcomponentize_py_runtime.so:_ZN56_$LT$anyhow..ensure..Buf$u20$as$u20$core..fmt..Write$GT$9write_str17hbfb018783fef5b78E"],
713 instance1["libcomponentize_py_runtime.so:_ZN66_$LT$anyhow..wrapper..BoxedError$u20$as$u20$core..fmt..Display$GT$3fmt17h7ca820186e5df61aE"],
714 instance1["libcomponentize_py_runtime.so:_ZN64_$LT$anyhow..wrapper..BoxedError$u20$as$u20$core..fmt..Debug$GT$3fmt17hb738f9f81e946087E"],
715 instance1["libcomponentize_py_runtime.so:_ZN66_$LT$anyhow..wrapper..BoxedError$u20$as$u20$core..error..Error$GT$6source17h613ef3bcf952323cE"],
716 instance1["libcomponentize_py_runtime.so:_ZN4core7unicode12unicode_data11white_space14WHITESPACE_MAP17h3a90b0ce5303a883E"],
717 instance1["libcomponentize_py_runtime.so:_ZN112_$LT$$LT$std..path..Components$u20$as$u20$core..fmt..Debug$GT$..fmt..DebugHelper$u20$as$u20$core..fmt..Debug$GT$3fmt17hbd07695bdbe964c4E"],
718 instance1["libcomponentize_py_runtime.so:_ZN106_$LT$$LT$std..path..Iter$u20$as$u20$core..fmt..Debug$GT$..fmt..DebugHelper$u20$as$u20$core..fmt..Debug$GT$3fmt17h3f92d0c023bcce2eE"],
719 instance1["libcomponentize_py_runtime.so:errno"],
720 instance1["libcomponentize_py_runtime.so:__rust_alloc_error_handler_should_panic"],
721 instance1["libcomponentize_py_runtime.so:_ZN3std6thread7current2id2ID17h2500b4255e55e1deE"],
722 instance1["libcomponentize_py_runtime.so:_ZN3std6thread7current7CURRENT17hd12783af172970a3E"],
723 instance1["libcomponentize_py_runtime.so:_ZN57_$LT$core..fmt..Arguments$u20$as$u20$core..fmt..Debug$GT$3fmt17h48174b1c0242081dE"],
724 instance1["libcomponentize_py_runtime.so:_ZN3std2io5stdio6stderr8INSTANCE17hdd6de04f3a4451edE"],
725 instance1["libcomponentize_py_runtime.so:_ZN60_$LT$std..io..error..Error$u20$as$u20$core..fmt..Display$GT$3fmt17hba364255b85d11a6E"],
726 instance1["libcomponentize_py_runtime.so:_ZN56_$LT$std..thread..Thread$u20$as$u20$core..fmt..Debug$GT$3fmt17h9a309dbc3e57a108E"],
727 instance1["libcomponentize_py_runtime.so:_ZN3std6thread9spawnhook11SPAWN_HOOKS28_$u7b$$u7b$closure$u7d$$u7d$3VAL17hcc47de0d1bee4d81E"],
728 instance1["libcomponentize_py_runtime.so:_ZN3std9panicking11panic_count18GLOBAL_PANIC_COUNT17h14480cde15ba3055E"],
729 instance1["libcomponentize_py_runtime.so:_ZN4core3fmt3num3imp52_$LT$impl$u20$core..fmt..Display$u20$for$u20$i32$GT$3fmt17hd6114310ccf531b9E"],
730 instance1["libcomponentize_py_runtime.so:_ZN3std4sync4mpmc5waker17current_thread_id5DUMMY28_$u7b$$u7b$closure$u7d$$u7d$3VAL17hf0f00c1e115534c7E"],
731 instance1["libcomponentize_py_runtime.so:_ZN79_$LT$std..backtrace_rs..symbolize..SymbolName$u20$as$u20$core..fmt..Display$GT$3fmt17h4ccff03dca5a8d12E"],
732 instance1["libcomponentize_py_runtime.so:_ZN63_$LT$std..ffi..os_str..OsString$u20$as$u20$core..fmt..Debug$GT$3fmt17h37303df8df9336eeE"],
733 instance1["libcomponentize_py_runtime.so:_ZN256_$LT$alloc..boxed..convert..$LT$impl$u20$core..convert..From$LT$alloc..string..String$GT$$u20$for$u20$alloc..boxed..Box$LT$dyn$u20$core..error..Error$u2b$core..marker..Sync$u2b$core..marker..Send$GT$$GT$..from..StringError$u20$as$u20$core..fmt..Display$GT$3fmt17h8a67c98662c49e1aE"],
734 instance1["libcomponentize_py_runtime.so:_ZN254_$LT$alloc..boxed..convert..$LT$impl$u20$core..convert..From$LT$alloc..string..String$GT$$u20$for$u20$alloc..boxed..Box$LT$dyn$u20$core..error..Error$u2b$core..marker..Sync$u2b$core..marker..Send$GT$$GT$..from..StringError$u20$as$u20$core..fmt..Debug$GT$3fmt17h3fa1391424a7f208E"],
735 instance1["libcomponentize_py_runtime.so:_ZN256_$LT$alloc..boxed..convert..$LT$impl$u20$core..convert..From$LT$alloc..string..String$GT$$u20$for$u20$alloc..boxed..Box$LT$dyn$u20$core..error..Error$u2b$core..marker..Sync$u2b$core..marker..Send$GT$$GT$..from..StringError$u20$as$u20$core..error..Error$GT$11description17he7337e4540246fbfE"],
736 instance1["libcomponentize_py_runtime.so:_ZN73_$LT$std..sys_common..process..CommandEnv$u20$as$u20$core..fmt..Debug$GT$3fmt17h86c1a849b4c18c2cE"],
737 instance1["libcomponentize_py_runtime.so:_ZN63_$LT$wasi..lib_generated..Errno$u20$as$u20$core..fmt..Debug$GT$3fmt17h0df3feaddbb8e3bdE"],
738 instance1["libcomponentize_py_runtime.so:_ZN4core3fmt3num53_$LT$impl$u20$core..fmt..LowerHex$u20$for$u20$u16$GT$3fmt17h87bf0a9238d9be6eE"],
739 instance1["libcomponentize_py_runtime.so:_ZN73_$LT$std..sys..pal..wasi..os..EnvStrDebug$u20$as$u20$core..fmt..Debug$GT$3fmt17hfa77bb4c0f4138ecE"],
740 instance1["libcomponentize_py_runtime.so:_ZN65_$LT$std..sys..pal..wasi..os..Env$u20$as$u20$core..fmt..Debug$GT$3fmt17he49d924ea17f457bE"],
741 instance1["libcomponentize_py_runtime.so:_ZN68_$LT$std..sys..pal..wasi..args..Args$u20$as$u20$core..fmt..Debug$GT$3fmt17h71c1222c441c673fE"],
742 instance1["libcomponentize_py_runtime.so:_ZN43_$LT$char$u20$as$u20$core..fmt..Display$GT$3fmt17hfa18e4c0a907541eE"],
743 instance1["libcomponentize_py_runtime.so:_ZN98_$LT$std..sys..backtrace..BacktraceLock..print..DisplayBacktrace$u20$as$u20$core..fmt..Display$GT$3fmt17h905271c9236184cbE"],
744 instance1["libcomponentize_py_runtime.so:_ZN92_$LT$std..panicking..begin_panic_handler..StaticStrPayload$u20$as$u20$core..fmt..Display$GT$3fmt17h72fc443e08dca3dbE"],
745 instance1["libcomponentize_py_runtime.so:_ZN99_$LT$std..panicking..begin_panic_handler..StaticStrPayload$u20$as$u20$core..panic..PanicPayload$GT$8take_box17h2f5764162976cbb6E"],
746 instance1["libcomponentize_py_runtime.so:_ZN95_$LT$std..panicking..begin_panic_handler..FormatStringPayload$u20$as$u20$core..fmt..Display$GT$3fmt17h8ccff0243b0e20c7E"],
747 instance1["libcomponentize_py_runtime.so:_ZN102_$LT$std..panicking..begin_panic_handler..FormatStringPayload$u20$as$u20$core..panic..PanicPayload$GT$8take_box17hf35b00560506f6d0E"],
748 instance1["libcomponentize_py_runtime.so:_ZN102_$LT$std..panicking..begin_panic_handler..FormatStringPayload$u20$as$u20$core..panic..PanicPayload$GT$3get17h6aaf6f1496bce847E"],
749 instance1["libcomponentize_py_runtime.so:_ZN54_$LT$std..fs..FileType$u20$as$u20$core..fmt..Debug$GT$3fmt17h78ba7b8fa5015321E"],
750 instance1["libcomponentize_py_runtime.so:_ZN58_$LT$std..time..SystemTime$u20$as$u20$core..fmt..Debug$GT$3fmt17h50142b892b6ed91cE"],
751 instance1["libcomponentize_py_runtime.so:_ZN55_$LT$std..path..PathBuf$u20$as$u20$core..fmt..Debug$GT$3fmt17hedb88436bbe914fcE"],
752 instance1["libcomponentize_py_runtime.so:_ZN3std9panicking4HOOK17hd7044fccb070540fE"],
753 instance1["libcomponentize_py_runtime.so:_ZN69_$LT$std..sys..pal..wasi..stdio..Stderr$u20$as$u20$std..io..Write$GT$5write17h5909554ed492b60eE"],
754 instance1["libcomponentize_py_runtime.so:_ZN69_$LT$std..sys..pal..wasi..stdio..Stderr$u20$as$u20$std..io..Write$GT$14write_vectored17hc8888b74f5cd61aeE"],
755 instance1["libcomponentize_py_runtime.so:_ZN89_$LT$std..panicking..rust_panic_without_hook..RewrapBox$u20$as$u20$core..fmt..Display$GT$3fmt17he32529e050e29d3dE"],
756 instance1["libcomponentize_py_runtime.so:_ZN96_$LT$std..panicking..rust_panic_without_hook..RewrapBox$u20$as$u20$core..panic..PanicPayload$GT$8take_box17h56b70b040b42e50cE"],
757 instance1["libcomponentize_py_runtime.so:_ZN4core3fmt3num3imp52_$LT$impl$u20$core..fmt..Display$u20$for$u20$u16$GT$3fmt17h90c342341c7b0ce5E"],
758 instance1["libcomponentize_py_runtime.so:_ZN4core3fmt3num3imp51_$LT$impl$u20$core..fmt..Display$u20$for$u20$u8$GT$3fmt17h553742713efd3d1bE"],
759 instance1["libcomponentize_py_runtime.so:_ZN4core3num7flt2dec8strategy5grisu12CACHED_POW1017h7692f94ae90a763fE"],
760 instance1["libcomponentize_py_runtime.so:_ZN4core3fmt3num3imp52_$LT$impl$u20$core..fmt..Display$u20$for$u20$u64$GT$3fmt17hf9f3b84e28ca39e6E"],
761 instance1["libcomponentize_py_runtime.so:_ZN4core3fmt3num53_$LT$impl$u20$core..fmt..UpperHex$u20$for$u20$u32$GT$3fmt17h7a42ab312c5ec006E"],
762 instance1["libcomponentize_py_runtime.so:_ZN4core3fmt3num55_$LT$impl$u20$core..fmt..LowerHex$u20$for$u20$usize$GT$3fmt17h41315f45ff50684fE"],
763 instance1["libcomponentize_py_runtime.so:_ZN59_$LT$core..fmt..Arguments$u20$as$u20$core..fmt..Display$GT$3fmt17h38e7200d8e8b0479E"],
764 instance1["libcomponentize_py_runtime.so:_ZN4core3fmt3num52_$LT$impl$u20$core..fmt..UpperHex$u20$for$u20$u8$GT$3fmt17hd038c2aeb36616d2E"],
765 instance1["libcomponentize_py_runtime.so:_ZN60_$LT$core..str..lossy..Debug$u20$as$u20$core..fmt..Debug$GT$3fmt17h6316fb8264d10f42E"],
766 instance1["libcomponentize_py_runtime.so:_ZN4core7unicode12unicode_data9lowercase17BITSET_CHUNKS_MAP17he4ed0506af830fb3E"],
767 instance1["libcomponentize_py_runtime.so:_ZN4core7unicode12unicode_data9lowercase19BITSET_INDEX_CHUNKS17h278ee97a9058cbc3E"],
768 instance1["libcomponentize_py_runtime.so:_ZN4core7unicode12unicode_data9lowercase14BITSET_MAPPING17h62bcf1262284cb04E"],
769 instance1["libcomponentize_py_runtime.so:_ZN4core7unicode12unicode_data9lowercase16BITSET_CANONICAL17h63226014346da8f5E"],
770 instance1["libcomponentize_py_runtime.so:_ZN68_$LT$core..fmt..builders..PadAdapter$u20$as$u20$core..fmt..Write$GT$9write_str17h64ab2f0486dd37f7E"],
771 instance1["libcomponentize_py_runtime.so:_ZN68_$LT$core..fmt..builders..PadAdapter$u20$as$u20$core..fmt..Write$GT$10write_char17ha19b267463a56771E"],
772 instance1["libcomponentize_py_runtime.so:_ZN41_$LT$char$u20$as$u20$core..fmt..Debug$GT$3fmt17h14e7e418f5fe6c39E"],
773 instance1["libcomponentize_py_runtime.so:_ZN63_$LT$core..cell..BorrowMutError$u20$as$u20$core..fmt..Debug$GT$3fmt17hb2d74b452a608284E"],
774 instance1["libcomponentize_py_runtime.so:_ZN60_$LT$core..cell..BorrowError$u20$as$u20$core..fmt..Debug$GT$3fmt17h6324ba5d7e4a4ab9E"],
775 instance1["libcomponentize_py_runtime.so:_ZN4core3fmt3num53_$LT$impl$u20$core..fmt..LowerHex$u20$for$u20$u32$GT$3fmt17haa4a6fec090f618dE"],
776 instance1["libcomponentize_py_runtime.so:_ZN70_$LT$core..slice..ascii..EscapeAscii$u20$as$u20$core..fmt..Display$GT$3fmt17h1fbfb32891f00601E"],
777 instance1["libcomponentize_py_runtime.so:_ZN67_$LT$core..net..ip_addr..Ipv4Addr$u20$as$u20$core..fmt..Display$GT$3fmt17hf2861ca3ee3df41bE"],
778 instance1["libcomponentize_py_runtime.so:_ZN4core3fmt5float50_$LT$impl$u20$core..fmt..Debug$u20$for$u20$f64$GT$3fmt17h0bdfa53dbc6b594aE"],
779 instance1["libcomponentize_py_runtime.so:_ZN4core3fmt5float50_$LT$impl$u20$core..fmt..Debug$u20$for$u20$f32$GT$3fmt17h986b8ca26caf1bddE"],
780 instance1["libcomponentize_py_runtime.so:_ZN4core3fmt3num54_$LT$impl$u20$core..fmt..LowerHex$u20$for$u20$u128$GT$3fmt17he522b0de242a2ccaE"],
781 instance1["libcomponentize_py_runtime.so:_ZN4core3fmt3num52_$LT$impl$u20$core..fmt..LowerHex$u20$for$u20$u8$GT$3fmt17h9a6074995c5ecf04E"],
782 instance1["libcomponentize_py_runtime.so:_ZN4core7unicode12unicode_data9uppercase17BITSET_CHUNKS_MAP17h48af9fbac1a49846E"],
783 instance1["libcomponentize_py_runtime.so:_ZN4core7unicode12unicode_data9uppercase19BITSET_INDEX_CHUNKS17h423c71b6c14daabdE"],
784 instance1["libcomponentize_py_runtime.so:_ZN4core7unicode12unicode_data9uppercase14BITSET_MAPPING17hf7b8a08139220617E"],
785 instance1["libcomponentize_py_runtime.so:_ZN4core7unicode12unicode_data9uppercase16BITSET_CANONICAL17he16b658fc10964d4E"],
786 ]).exports(store)
787 file = importlib_resources.files() / ('root.core32.wasm')
788 if isinstance(file, pathlib.Path):
789 module = wasmtime.Module.from_file(store.engine, file)
790 else:
791 module = wasmtime.Module(store.engine, file.read_bytes())
792 instance33 = wasmtime.Instance(store, module, [
793 instance1["memory"],
794 instance1["__indirect_function_table"],
795 instance1["__stack_pointer"],
796 instance1["libpython3.12.so:memory_base"],
797 instance1["libpython3.12.so:table_base"],
798 instance1["strlen"],
799 instance1["strncpy"],
800 instance1["strncmp"],
801 instance1["strcmp"],
802 instance1["strchr"],
803 instance1["strcpy"],
804 instance1["strpbrk"],
805 instance1["sprintf"],
806 instance1["fflush"],
807 instance1["fputs"],
808 instance1["clearerr"],
809 instance1["fgets"],
810 instance1["feof"],
811 instance1["fileno"],
812 instance1["isatty"],
813 instance1["memcpy"],
814 instance1["fopencookie"],
815 instance1["fclose"],
816 instance1["memcmp"],
817 instance1["tolower"],
818 instance1["isxdigit"],
819 instance1["getc"],
820 instance1["ungetc"],
821 instance1["memchr"],
822 instance1["ftell"],
823 instance1["lseek"],
824 instance1["strcspn"],
825 instance1["read"],
826 instance1["memset"],
827 instance1["memrchr"],
828 instance1["memmove"],
829 instance1["hypot"],
830 instance1["atan2"],
831 instance1["pow"],
832 instance1["log"],
833 instance1["exp"],
834 instance1["sin"],
835 instance1["cos"],
836 instance1["frexp"],
837 instance1["modf"],
838 instance1["ldexp"],
839 instance1["fmod"],
840 instance1["round"],
841 instance1["strtol"],
842 instance1["fprintf"],
843 instance1["fwrite"],
844 instance1["fputc"],
845 instance1["ferror"],
846 instance1["malloc"],
847 instance1["calloc"],
848 instance1["realloc"],
849 instance1["free"],
850 instance1["wcslen"],
851 instance1["strrchr"],
852 instance1["wcscmp"],
853 instance1["wmemchr"],
854 instance1["wmemcmp"],
855 instance1["snprintf"],
856 instance1["strerror"],
857 instance1["getenv"],
858 instance1["wcschr"],
859 instance1["setvbuf"],
860 instance1["puts"],
861 instance1["printf"],
862 instance1["wcstok"],
863 instance1["strtoul"],
864 instance1["wcstol"],
865 instance1["setlocale"],
866 instance1["fread"],
867 instance1["vsnprintf"],
868 instance1["wcscpy"],
869 instance1["wcsrchr"],
870 instance1["wcsncpy"],
871 instance1["wcsncmp"],
872 instance1["nl_langinfo"],
873 instance1["setenv"],
874 instance1["exit"],
875 instance1["vfprintf"],
876 instance1["abort"],
877 instance1["signal"],
878 instance1["fcntl"],
879 instance1["rewind"],
880 instance1["clock_gettime"],
881 instance1["clock_getres"],
882 instance1["localtime_r"],
883 instance1["gmtime_r"],
884 instance1["getentropy"],
885 instance1["close"],
886 instance30["getpid"],
887 instance1["open"],
888 instance1["fdopen"],
889 instance1["confstr"],
890 instance1["localeconv"],
891 instance1["mbstowcs"],
892 instance1["mbrtowc"],
893 instance1["fstat"],
894 instance1["stat"],
895 instance1["wcstombs"],
896 instance1["fopen"],
897 instance1["write"],
898 instance1["readlink"],
899 instance1["realpath"],
900 instance1["getcwd"],
901 instance1["ioctl"],
902 instance1["dlopen"],
903 instance1["dlerror"],
904 instance1["dlsym"],
905 instance1["acos"],
906 instance1["acosh"],
907 instance1["asin"],
908 instance1["asinh"],
909 instance1["atan"],
910 instance1["atanh"],
911 instance1["cbrt"],
912 instance1["cosh"],
913 instance1["erf"],
914 instance1["erfc"],
915 instance1["expm1"],
916 instance1["log10"],
917 instance1["log2"],
918 instance1["sinh"],
919 instance1["tan"],
920 instance1["tanh"],
921 instance1["fma"],
922 instance1["nextafter"],
923 instance1["log1p"],
924 instance1["explicit_bzero"],
925 instance1["strncat"],
926 instance1["crypt_r"],
927 instance1["poll"],
928 instance1["select"],
929 instance1["inet_ntop"],
930 instance1["gethostbyname"],
931 instance1["gethostbyaddr"],
932 instance1["getservbyname"],
933 instance1["ntohs"],
934 instance1["htons"],
935 instance1["getservbyport"],
936 instance1["getprotobyname"],
937 instance1["ntohl"],
938 instance1["htonl"],
939 instance1["inet_aton"],
940 instance1["inet_pton"],
941 instance1["getaddrinfo"],
942 instance1["gai_strerror"],
943 instance1["freeaddrinfo"],
944 instance1["getnameinfo"],
945 instance1["hstrerror"],
946 instance1["getsockname"],
947 instance1["socket"],
948 instance1["getsockopt"],
949 instance1["bind"],
950 instance1["getpeername"],
951 instance1["listen"],
952 instance1["setsockopt"],
953 instance1["shutdown"],
954 instance1["accept4"],
955 instance1["accept"],
956 instance1["connect"],
957 instance1["recv"],
958 instance1["recvfrom"],
959 instance1["send"],
960 instance1["sendto"],
961 instance1["raise"],
962 instance1["_exit"],
963 instance1["faccessat"],
964 instance1["access"],
965 instance1["chdir"],
966 instance1["fchmod"],
967 instance1["fchmodat"],
968 instance1["chmod"],
969 instance1["linkat"],
970 instance1["link"],
971 instance1["opendir"],
972 instance1["readdir"],
973 instance1["closedir"],
974 instance1["mkdirat"],
975 instance1["mkdir"],
976 instance1["readlinkat"],
977 instance1["unlinkat"],
978 instance1["rmdir"],
979 instance1["symlinkat"],
980 instance1["symlink"],
981 instance1["uname"],
982 instance1["unlink"],
983 instance1["futimens"],
984 instance1["times"],
985 instance1["sched_yield"],
986 instance1["openat"],
987 instance1["pread"],
988 instance1["preadv"],
989 instance1["pwrite"],
990 instance1["pwritev"],
991 instance1["ftruncate"],
992 instance1["truncate"],
993 instance1["posix_fadvise"],
994 instance1["unsetenv"],
995 instance1["fsync"],
996 instance1["fdatasync"],
997 instance1["fstatvfs"],
998 instance1["statvfs"],
999 instance1["sysconf"],
1000 instance1["fpathconf"],
1001 instance1["pathconf"],
1002 instance1["lstat"],
1003 instance1["fstatat"],
1004 instance1["renameat"],
1005 instance1["rename"],
1006 instance1["utimensat"],
1007 instance1["readv"],
1008 instance1["writev"],
1009 instance1["qsort"],
1010 instance1["strsignal"],
1011 instance1["strstr"],
1012 instance1["__wasilibc_tell"],
1013 instance1["isalnum"],
1014 instance1["toupper"],
1015 instance1["clock_nanosleep"],
1016 instance1["time"],
1017 instance1["mktime"],
1018 instance1["wcsftime"],
1019 instance1["clock"],
1020 instance1["wcscoll"],
1021 instance1["wcsxfrm"],
1022 instance1["gettimeofday"],
1023 instance1["libpython3.12.so:PyExc_SyntaxError"],
1024 instance1["libpython3.12.so:PyExc_TypeError"],
1025 instance1["libpython3.12.so:PyExc_ValueError"],
1026 instance1["libpython3.12.so:errno"],
1027 instance1["libpython3.12.so:PyExc_LookupError"],
1028 instance1["libpython3.12.so:PyExc_UnicodeDecodeError"],
1029 instance1["libpython3.12.so:_Py_NoneStruct"],
1030 instance1["libpython3.12.so:PyExc_IndentationError"],
1031 instance1["libpython3.12.so:PyExc_KeyboardInterrupt"],
1032 instance1["libpython3.12.so:PyExc_TabError"],
1033 instance1["libpython3.12.so:PyExc_OverflowError"],
1034 instance1["libpython3.12.so:stdin"],
1035 instance1["libpython3.12.so:PyExc_UnicodeError"],
1036 instance1["libpython3.12.so:PyExc_MemoryError"],
1037 instance1["libpython3.12.so:_PyRuntime"],
1038 instance1["libpython3.12.so:PyComplex_Type"],
1039 instance1["libpython3.12.so:_Py_FalseStruct"],
1040 instance1["libpython3.12.so:_Py_TrueStruct"],
1041 instance1["libpython3.12.so:_Py_EllipsisObject"],
1042 instance1["libpython3.12.so:PyExc_SystemError"],
1043 instance1["libpython3.12.so:PyUnicode_Type"],
1044 instance1["libpython3.12.so:PyBytes_Type"],
1045 instance1["libpython3.12.so:PyExc_DeprecationWarning"],
1046 instance1["libpython3.12.so:PyExc_SyntaxWarning"],
1047 instance1["libpython3.12.so:_Py_ctype_table"],
1048 instance1["libpython3.12.so:_PyOS_ReadlineTState"],
1049 instance1["libpython3.12.so:stderr"],
1050 instance1["libpython3.12.so:PyOS_InputHook"],
1051 instance1["libpython3.12.so:PyExc_RuntimeError"],
1052 instance1["libpython3.12.so:PyOS_ReadlineFunctionPointer"],
1053 instance1["libpython3.12.so:stdout"],
1054 instance1["libpython3.12.so:PyExc_StopIteration"],
1055 instance1["libpython3.12.so:PyExc_OSError"],
1056 instance1["libpython3.12.so:_Py_NotImplementedStruct"],
1057 instance1["libpython3.12.so:PyExc_IndexError"],
1058 instance1["libpython3.12.so:PyType_Type"],
1059 instance1["libpython3.12.so:PyLong_Type"],
1060 instance1["libpython3.12.so:_Py_add_one_to_index_C"],
1061 instance1["libpython3.12.so:_Py_add_one_to_index_F"],
1062 instance1["libpython3.12.so:PyExc_BufferError"],
1063 instance1["libpython3.12.so:PyCFunction_Type"],
1064 instance1["libpython3.12.so:PyByteArray_Type"],
1065 instance1["libpython3.12.so:_PyByteArray_empty_string"],
1066 instance1["libpython3.12.so:PyFloat_Type"],
1067 instance1["libpython3.12.so:PyTuple_Type"],
1068 instance1["libpython3.12.so:PyList_Type"],
1069 instance1["libpython3.12.so:_PyObject_NextNotImplemented"],
1070 instance1["libpython3.12.so:PyDict_Type"],
1071 instance1["libpython3.12.so:PyBool_Type"],
1072 instance1["libpython3.12.so:_Py_ctype_tolower"],
1073 instance1["libpython3.12.so:_Py_ctype_toupper"],
1074 instance1["libpython3.12.so:Py_hexdigits"],
1075 instance1["libpython3.12.so:PyExc_BytesWarning"],
1076 instance1["libpython3.12.so:PyByteArrayIter_Type"],
1077 instance1["libpython3.12.so:PySlice_Type"],
1078 instance1["libpython3.12.so:PyObject_GenericGetAttr"],
1079 instance1["libpython3.12.so:PyType_GenericAlloc"],
1080 instance1["libpython3.12.so:PyType_GenericNew"],
1081 instance1["libpython3.12.so:PyObject_Free"],
1082 instance1["libpython3.12.so:PyByteArray_Concat"],
1083 instance1["libpython3.12.so:PyObject_SelfIter"],
1084 instance1["libpython3.12.so:_PyLong_DigitValue"],
1085 instance1["libpython3.12.so:PyBytesIter_Type"],
1086 instance1["libpython3.12.so:PyModule_Type"],
1087 instance1["libpython3.12.so:PyCapsule_Type"],
1088 instance1["libpython3.12.so:PyExc_ImportError"],
1089 instance1["libpython3.12.so:PyExc_AttributeError"],
1090 instance1["libpython3.12.so:PyCell_Type"],
1091 instance1["libpython3.12.so:PyMethod_Type"],
1092 instance1["libpython3.12.so:PyInstanceMethod_Type"],
1093 instance1["libpython3.12.so:PyVectorcall_Call"],
1094 instance1["libpython3.12.so:PyObject_GenericSetAttr"],
1095 instance1["libpython3.12.so:PyCode_Type"],
1096 instance1["libpython3.12.so:PyFrozenSet_Type"],
1097 instance1["libpython3.12.so:PyExc_ZeroDivisionError"],
1098 instance1["libpython3.12.so:_PyMethodWrapper_Type"],
1099 instance1["libpython3.12.so:PyMethodDescr_Type"],
1100 instance1["libpython3.12.so:PyClassMethodDescr_Type"],
1101 instance1["libpython3.12.so:PyMemberDescr_Type"],
1102 instance1["libpython3.12.so:PyGetSetDescr_Type"],
1103 instance1["libpython3.12.so:PyWrapperDescr_Type"],
1104 instance1["libpython3.12.so:PyDictProxy_Type"],
1105 instance1["libpython3.12.so:PyProperty_Type"],
1106 instance1["libpython3.12.so:Py_GenericAlias"],
1107 instance1["libpython3.12.so:PyObject_GC_Del"],
1108 instance1["libpython3.12.so:PyReversed_Type"],
1109 instance1["libpython3.12.so:PyTraceBack_Type"],
1110 instance1["libpython3.12.so:PyExc_BaseExceptionGroup"],
1111 instance1["libpython3.12.so:PyExc_UnicodeTranslateError"],
1112 instance1["libpython3.12.so:PyExc_BlockingIOError"],
1113 instance1["libpython3.12.so:PyExc_BrokenPipeError"],
1114 instance1["libpython3.12.so:PyExc_ChildProcessError"],
1115 instance1["libpython3.12.so:PyExc_ConnectionAbortedError"],
1116 instance1["libpython3.12.so:PyExc_ConnectionRefusedError"],
1117 instance1["libpython3.12.so:PyExc_ConnectionResetError"],
1118 instance1["libpython3.12.so:PyExc_FileExistsError"],
1119 instance1["libpython3.12.so:PyExc_FileNotFoundError"],
1120 instance1["libpython3.12.so:PyExc_IsADirectoryError"],
1121 instance1["libpython3.12.so:PyExc_NotADirectoryError"],
1122 instance1["libpython3.12.so:PyExc_InterruptedError"],
1123 instance1["libpython3.12.so:PyExc_PermissionError"],
1124 instance1["libpython3.12.so:PyExc_ProcessLookupError"],
1125 instance1["libpython3.12.so:PyExc_TimeoutError"],
1126 instance1["libpython3.12.so:PyExc_Exception"],
1127 instance1["libpython3.12.so:PyExc_EnvironmentError"],
1128 instance1["libpython3.12.so:PyExc_IOError"],
1129 instance1["libpython3.12.so:PyFunction_Type"],
1130 instance1["libpython3.12.so:PyObject_GenericGetDict"],
1131 instance1["libpython3.12.so:PyObject_GenericSetDict"],
1132 instance1["libpython3.12.so:Py_GenericAliasType"],
1133 instance1["libpython3.12.so:PyAsyncGen_Type"],
1134 instance1["libpython3.12.so:PyExc_GeneratorExit"],
1135 instance1["libpython3.12.so:PyCoro_Type"],
1136 instance1["libpython3.12.so:PyGen_Type"],
1137 instance1["libpython3.12.so:PyExc_StopAsyncIteration"],
1138 instance1["libpython3.12.so:_PyAsyncGenWrappedValue_Type"],
1139 instance1["libpython3.12.so:_PyCoroWrapper_Type"],
1140 instance1["libpython3.12.so:_PyAsyncGenASend_Type"],
1141 instance1["libpython3.12.so:_PyAsyncGenAThrow_Type"],
1142 instance1["libpython3.12.so:_PyGen_Finalize"],
1143 instance1["libpython3.12.so:PyExc_EOFError"],
1144 instance1["libpython3.12.so:PyStdPrinter_Type"],
1145 instance1["libpython3.12.so:_Py_SwappedOp"],
1146 instance1["libpython3.12.so:PyFrame_Type"],
1147 instance1["libpython3.12.so:PyExc_KeyError"],
1148 instance1["libpython3.12.so:PyExc_NameError"],
1149 instance1["libpython3.12.so:PyExc_RuntimeWarning"],
1150 instance1["libpython3.12.so:_PyFunction_Vectorcall"],
1151 instance1["libpython3.12.so:PyClassMethod_Type"],
1152 instance1["libpython3.12.so:PyStaticMethod_Type"],
1153 instance1["libpython3.12.so:_PyInterpreterID_Type"],
1154 instance1["libpython3.12.so:PySeqIter_Type"],
1155 instance1["libpython3.12.so:PyCallIter_Type"],
1156 instance1["libpython3.12.so:PyListIter_Type"],
1157 instance1["libpython3.12.so:PyListRevIter_Type"],
1158 instance1["libpython3.12.so:PyObject_HashNotImplemented"],
1159 instance1["libpython3.12.so:PySet_Type"],
1160 instance1["libpython3.12.so:PyDictIterKey_Type"],
1161 instance1["libpython3.12.so:PyDictRevIterKey_Type"],
1162 instance1["libpython3.12.so:PyDictRevIterValue_Type"],
1163 instance1["libpython3.12.so:PyDictKeys_Type"],
1164 instance1["libpython3.12.so:PyDictItems_Type"],
1165 instance1["libpython3.12.so:PyDictIterItem_Type"],
1166 instance1["libpython3.12.so:PyDictIterValue_Type"],
1167 instance1["libpython3.12.so:PyDictRevIterItem_Type"],
1168 instance1["libpython3.12.so:PyDictValues_Type"],
1169 instance1["libpython3.12.so:PyDict_Contains"],
1170 instance1["libpython3.12.so:_PyDictView_Intersect"],
1171 instance1["libpython3.12.so:PyODict_Type"],
1172 instance1["libpython3.12.so:PyODictIter_Type"],
1173 instance1["libpython3.12.so:PyODictKeys_Type"],
1174 instance1["libpython3.12.so:PyODictValues_Type"],
1175 instance1["libpython3.12.so:PyODictItems_Type"],
1176 instance1["libpython3.12.so:_PyManagedBuffer_Type"],
1177 instance1["libpython3.12.so:PyMemoryView_Type"],
1178 instance1["libpython3.12.so:PyExc_NotImplementedError"],
1179 instance1["libpython3.12.so:PyCMethod_Type"],
1180 instance1["libpython3.12.so:PyModuleDef_Type"],
1181 instance1["libpython3.12.so:_PyNamespace_Type"],
1182 instance1["libpython3.12.so:_PyNone_Type"],
1183 instance1["libpython3.12.so:_PyNotImplemented_Type"],
1184 instance1["libpython3.12.so:PyBaseObject_Type"],
1185 instance1["libpython3.12.so:PyContextToken_Type"],
1186 instance1["libpython3.12.so:PyContextVar_Type"],
1187 instance1["libpython3.12.so:PyContext_Type"],
1188 instance1["libpython3.12.so:PyEllipsis_Type"],
1189 instance1["libpython3.12.so:PyEnum_Type"],
1190 instance1["libpython3.12.so:PyFilter_Type"],
1191 instance1["libpython3.12.so:PyLongRangeIter_Type"],
1192 instance1["libpython3.12.so:PyMap_Type"],
1193 instance1["libpython3.12.so:PyPickleBuffer_Type"],
1194 instance1["libpython3.12.so:PyRangeIter_Type"],
1195 instance1["libpython3.12.so:PyRange_Type"],
1196 instance1["libpython3.12.so:PySetIter_Type"],
1197 instance1["libpython3.12.so:PySuper_Type"],
1198 instance1["libpython3.12.so:PyTupleIter_Type"],
1199 instance1["libpython3.12.so:PyUnicodeIter_Type"],
1200 instance1["libpython3.12.so:PyZip_Type"],
1201 instance1["libpython3.12.so:_PyBufferWrapper_Type"],
1202 instance1["libpython3.12.so:_PyWeakref_CallableProxyType"],
1203 instance1["libpython3.12.so:_PyWeakref_ProxyType"],
1204 instance1["libpython3.12.so:_PyWeakref_RefType"],
1205 instance1["libpython3.12.so:PyExc_BaseException"],
1206 instance1["libpython3.12.so:_Py_HashPointer"],
1207 instance1["libpython3.12.so:PyExc_UnicodeEncodeError"],
1208 instance1["libpython3.12.so:_Py_ascii_whitespace"],
1209 instance1["libpython3.12.so:PyMem_RawFree"],
1210 instance1["libpython3.12.so:PyMem_RawMalloc"],
1211 instance1["libpython3.12.so:_PyUnicode_FormatAdvancedWriter"],
1212 instance1["libpython3.12.so:_PyLong_FormatAdvancedWriter"],
1213 instance1["libpython3.12.so:_PyFloat_FormatAdvancedWriter"],
1214 instance1["libpython3.12.so:PyUnicode_RichCompare"],
1215 instance1["libpython3.12.so:PyUnicode_Concat"],
1216 instance1["libpython3.12.so:PyUnicode_Contains"],
1217 instance1["libpython3.12.so:PyExc_ReferenceError"],
1218 instance1["libpython3.12.so:PyExc_PendingDeprecationWarning"],
1219 instance1["libpython3.12.so:PyExc_ImportWarning"],
1220 instance1["libpython3.12.so:PyExc_ResourceWarning"],
1221 instance1["libpython3.12.so:PyExc_Warning"],
1222 instance1["libpython3.12.so:PyExc_UserWarning"],
1223 instance1["libpython3.12.so:PyExc_RecursionError"],
1224 instance1["libpython3.12.so:PyNumber_Invert"],
1225 instance1["libpython3.12.so:PyNumber_Positive"],
1226 instance1["libpython3.12.so:PyNumber_Negative"],
1227 instance1["libpython3.12.so:PyExc_AssertionError"],
1228 instance1["libpython3.12.so:PyExc_UnboundLocalError"],
1229 instance1["libpython3.12.so:PyObject_Str"],
1230 instance1["libpython3.12.so:PyObject_Repr"],
1231 instance1["libpython3.12.so:PyObject_ASCII"],
1232 instance1["libpython3.12.so:PyNumber_Add"],
1233 instance1["libpython3.12.so:PyNumber_And"],
1234 instance1["libpython3.12.so:PyNumber_FloorDivide"],
1235 instance1["libpython3.12.so:PyNumber_Lshift"],
1236 instance1["libpython3.12.so:PyNumber_MatrixMultiply"],
1237 instance1["libpython3.12.so:PyNumber_Multiply"],
1238 instance1["libpython3.12.so:PyNumber_Remainder"],
1239 instance1["libpython3.12.so:PyNumber_Or"],
1240 instance1["libpython3.12.so:PyNumber_Rshift"],
1241 instance1["libpython3.12.so:PyNumber_Subtract"],
1242 instance1["libpython3.12.so:PyNumber_TrueDivide"],
1243 instance1["libpython3.12.so:PyNumber_Xor"],
1244 instance1["libpython3.12.so:PyNumber_InPlaceAdd"],
1245 instance1["libpython3.12.so:PyNumber_InPlaceAnd"],
1246 instance1["libpython3.12.so:PyNumber_InPlaceFloorDivide"],
1247 instance1["libpython3.12.so:PyNumber_InPlaceLshift"],
1248 instance1["libpython3.12.so:PyNumber_InPlaceMatrixMultiply"],
1249 instance1["libpython3.12.so:PyNumber_InPlaceMultiply"],
1250 instance1["libpython3.12.so:PyNumber_InPlaceRemainder"],
1251 instance1["libpython3.12.so:PyNumber_InPlaceOr"],
1252 instance1["libpython3.12.so:PyNumber_InPlaceRshift"],
1253 instance1["libpython3.12.so:PyNumber_InPlaceSubtract"],
1254 instance1["libpython3.12.so:PyNumber_InPlaceTrueDivide"],
1255 instance1["libpython3.12.so:PyNumber_InPlaceXor"],
1256 instance1["libpython3.12.so:PyMem_Free"],
1257 instance1["libpython3.12.so:PyMem_Malloc"],
1258 instance1["libpython3.12.so:_Py_hashtable_hash_ptr"],
1259 instance1["libpython3.12.so:_Py_hashtable_compare_direct"],
1260 instance1["libpython3.12.so:PyImport_Inittab"],
1261 instance1["libpython3.12.so:_PyImport_FrozenBootstrap"],
1262 instance1["libpython3.12.so:PyImport_FrozenModules"],
1263 instance1["libpython3.12.so:_PyImport_FrozenStdlib"],
1264 instance1["libpython3.12.so:_PyImport_FrozenTest"],
1265 instance1["libpython3.12.so:Py_IgnoreEnvironmentFlag"],
1266 instance1["libpython3.12.so:Py_IsolatedFlag"],
1267 instance1["libpython3.12.so:Py_BytesWarningFlag"],
1268 instance1["libpython3.12.so:Py_InspectFlag"],
1269 instance1["libpython3.12.so:Py_InteractiveFlag"],
1270 instance1["libpython3.12.so:Py_OptimizeFlag"],
1271 instance1["libpython3.12.so:Py_DebugFlag"],
1272 instance1["libpython3.12.so:Py_VerboseFlag"],
1273 instance1["libpython3.12.so:Py_QuietFlag"],
1274 instance1["libpython3.12.so:Py_FrozenFlag"],
1275 instance1["libpython3.12.so:Py_UnbufferedStdioFlag"],
1276 instance1["libpython3.12.so:Py_NoSiteFlag"],
1277 instance1["libpython3.12.so:Py_DontWriteBytecodeFlag"],
1278 instance1["libpython3.12.so:Py_NoUserSiteDirectory"],
1279 instance1["libpython3.12.so:Py_HashRandomizationFlag"],
1280 instance1["libpython3.12.so:Py_FileSystemDefaultEncoding"],
1281 instance1["libpython3.12.so:Py_HasFileSystemDefaultEncoding"],
1282 instance1["libpython3.12.so:Py_FileSystemDefaultEncodeErrors"],
1283 instance1["libpython3.12.so:_Py_HasFileSystemDefaultEncodeErrors"],
1284 instance1["libpython3.12.so:Py_UTF8Mode"],
1285 instance1["libpython3.12.so:_Py_HashSecret"],
1286 instance1["libpython3.12.so:__SIG_ERR"],
1287 instance1["libpython3.12.so:__SIG_IGN"],
1288 instance1["libpython3.12.so:_PyEval_EvalFrameDefault"],
1289 instance1["libpython3.12.so:PyExc_SystemExit"],
1290 instance1["libpython3.12.so:_CLOCK_REALTIME"],
1291 instance1["libpython3.12.so:_CLOCK_MONOTONIC"],
1292 instance1["libpython3.12.so:free"],
1293 instance1["libpython3.12.so:malloc"],
1294 instance1["libpython3.12.so:_Py_hashtable_destroy"],
1295 instance1["libpython3.12.so:PyInit_array"],
1296 instance1["libpython3.12.so:PyInit__asyncio"],
1297 instance1["libpython3.12.so:PyInit__bisect"],
1298 instance1["libpython3.12.so:PyInit__contextvars"],
1299 instance1["libpython3.12.so:PyInit__csv"],
1300 instance1["libpython3.12.so:PyInit__heapq"],
1301 instance1["libpython3.12.so:PyInit__json"],
1302 instance1["libpython3.12.so:PyInit__lsprof"],
1303 instance1["libpython3.12.so:PyInit__opcode"],
1304 instance1["libpython3.12.so:PyInit__pickle"],
1305 instance1["libpython3.12.so:PyInit__queue"],
1306 instance1["libpython3.12.so:PyInit__random"],
1307 instance1["libpython3.12.so:PyInit__struct"],
1308 instance1["libpython3.12.so:PyInit__zoneinfo"],
1309 instance1["libpython3.12.so:PyInit_audioop"],
1310 instance1["libpython3.12.so:PyInit_math"],
1311 instance1["libpython3.12.so:PyInit_cmath"],
1312 instance1["libpython3.12.so:PyInit__statistics"],
1313 instance1["libpython3.12.so:PyInit__datetime"],
1314 instance1["libpython3.12.so:PyInit__decimal"],
1315 instance1["libpython3.12.so:PyInit_binascii"],
1316 instance1["libpython3.12.so:PyInit__md5"],
1317 instance1["libpython3.12.so:PyInit__sha1"],
1318 instance1["libpython3.12.so:PyInit__sha2"],
1319 instance1["libpython3.12.so:PyInit__sha3"],
1320 instance1["libpython3.12.so:PyInit__blake2"],
1321 instance1["libpython3.12.so:PyInit_pyexpat"],
1322 instance1["libpython3.12.so:PyInit__elementtree"],
1323 instance1["libpython3.12.so:PyInit__codecs_cn"],
1324 instance1["libpython3.12.so:PyInit__codecs_hk"],
1325 instance1["libpython3.12.so:PyInit__codecs_iso2022"],
1326 instance1["libpython3.12.so:PyInit__codecs_jp"],
1327 instance1["libpython3.12.so:PyInit__codecs_kr"],
1328 instance1["libpython3.12.so:PyInit__codecs_tw"],
1329 instance1["libpython3.12.so:PyInit__multibytecodec"],
1330 instance1["libpython3.12.so:PyInit_unicodedata"],
1331 instance1["libpython3.12.so:PyInit__crypt"],
1332 instance1["libpython3.12.so:PyInit_select"],
1333 instance1["libpython3.12.so:PyInit__socket"],
1334 instance1["libpython3.12.so:PyInit_atexit"],
1335 instance1["libpython3.12.so:PyInit_faulthandler"],
1336 instance1["libpython3.12.so:PyInit_posix"],
1337 instance1["libpython3.12.so:PyInit__signal"],
1338 instance1["libpython3.12.so:PyInit__tracemalloc"],
1339 instance1["libpython3.12.so:PyInit__codecs"],
1340 instance1["libpython3.12.so:PyInit__collections"],
1341 instance1["libpython3.12.so:PyInit_errno"],
1342 instance1["libpython3.12.so:PyInit__io"],
1343 instance1["libpython3.12.so:PyInit_itertools"],
1344 instance1["libpython3.12.so:PyInit__sre"],
1345 instance1["libpython3.12.so:PyInit__thread"],
1346 instance1["libpython3.12.so:PyInit_time"],
1347 instance1["libpython3.12.so:PyInit__typing"],
1348 instance1["libpython3.12.so:PyInit__weakref"],
1349 instance1["libpython3.12.so:PyInit__abc"],
1350 instance1["libpython3.12.so:PyInit__functools"],
1351 instance1["libpython3.12.so:PyInit__locale"],
1352 instance1["libpython3.12.so:PyInit__operator"],
1353 instance1["libpython3.12.so:PyInit__stat"],
1354 instance1["libpython3.12.so:PyInit__symtable"],
1355 instance1["libpython3.12.so:PyMarshal_Init"],
1356 instance1["libpython3.12.so:PyInit__imp"],
1357 instance1["libpython3.12.so:PyInit__ast"],
1358 instance1["libpython3.12.so:PyInit__tokenize"],
1359 instance1["libpython3.12.so:PyInit_gc"],
1360 instance1["libpython3.12.so:_PyWarnings_Init"],
1361 instance1["libpython3.12.so:PyInit__string"],
1362 instance1["libpython3.12.so:PyUnicode_AsASCIIString"],
1363 instance1["libpython3.12.so:PyUnicode_AsUTF8String"],
1364 instance1["libpython3.12.so:copysign"],
1365 instance1["libpython3.12.so:cos"],
1366 instance1["libpython3.12.so:exp2"],
1367 instance1["libpython3.12.so:fabs"],
1368 instance1["libpython3.12.so:sin"],
1369 instance1["libpython3.12.so:sqrt"],
1370 instance1["libpython3.12.so:_PyTime_gmtime"],
1371 instance1["libpython3.12.so:_PyTime_localtime"],
1372 instance1["libpython3.12.so:PyMem_Realloc"],
1373 instance1["libpython3.12.so:PyExc_ArithmeticError"],
1374 instance1["libpython3.12.so:PyObject_Malloc"],
1375 instance1["libpython3.12.so:PyObject_Realloc"],
1376 instance1["libpython3.12.so:h_errno"],
1377 instance1["libpython3.12.so:environ"],
1378 instance1["libpython3.12.so:PyStructSequence_UnnamedField"],
1379 instance1["libpython3.12.so:_PyEval_SliceIndexNotNone"],
1380 instance1["libpython3.12.so:PyExc_EncodingWarning"],
1381 instance1["libpython3.12.so:realloc"],
1382 instance1["libpython3.12.so:calloc"],
1383 ]).exports(store)
1384 file = importlib_resources.files() / ('root.core33.wasm')
1385 if isinstance(file, pathlib.Path):
1386 module = wasmtime.Module.from_file(store.engine, file)
1387 else:
1388 module = wasmtime.Module(store.engine, file.read_bytes())
1389 instance34 = wasmtime.Instance(store, module, [
1390 instance1["memory"],
1391 instance1["__indirect_function_table"],
1392 instance1["__stack_pointer"],
1393 instance1["libc.so:memory_base"],
1394 instance1["libc.so:table_base"],
1395 instance1["clock_gettime"],
1396 instance1["lseek"],
1397 instance1["__main_void"],
1398 instance31["__main_argc_argv"],
1399 instance1["wasi_snapshot_preview1:args_get"],
1400 instance1["wasi_snapshot_preview1:args_sizes_get"],
1401 instance1["wasi_snapshot_preview1:environ_get"],
1402 instance1["wasi_snapshot_preview1:environ_sizes_get"],
1403 instance1["wasi_snapshot_preview1:clock_res_get"],
1404 instance1["wasi_snapshot_preview1:clock_time_get"],
1405 instance1["wasi_snapshot_preview1:fd_advise"],
1406 instance1["wasi_snapshot_preview1:fd_allocate"],
1407 instance1["wasi_snapshot_preview1:fd_close"],
1408 instance1["wasi_snapshot_preview1:fd_datasync"],
1409 instance1["wasi_snapshot_preview1:fd_fdstat_get"],
1410 instance1["wasi_snapshot_preview1:fd_fdstat_set_flags"],
1411 instance1["wasi_snapshot_preview1:fd_fdstat_set_rights"],
1412 instance1["wasi_snapshot_preview1:fd_filestat_get"],
1413 instance1["wasi_snapshot_preview1:fd_filestat_set_size"],
1414 instance1["wasi_snapshot_preview1:fd_filestat_set_times"],
1415 instance1["wasi_snapshot_preview1:fd_pread"],
1416 instance1["wasi_snapshot_preview1:fd_prestat_get"],
1417 instance1["wasi_snapshot_preview1:fd_prestat_dir_name"],
1418 instance1["wasi_snapshot_preview1:fd_pwrite"],
1419 instance1["wasi_snapshot_preview1:fd_read"],
1420 instance1["wasi_snapshot_preview1:fd_readdir"],
1421 instance1["wasi_snapshot_preview1:fd_renumber"],
1422 instance1["wasi_snapshot_preview1:fd_seek"],
1423 instance1["wasi_snapshot_preview1:fd_sync"],
1424 instance1["wasi_snapshot_preview1:fd_tell"],
1425 instance1["wasi_snapshot_preview1:fd_write"],
1426 instance1["wasi_snapshot_preview1:path_create_directory"],
1427 instance1["wasi_snapshot_preview1:path_filestat_get"],
1428 instance1["wasi_snapshot_preview1:path_filestat_set_times"],
1429 instance1["wasi_snapshot_preview1:path_link"],
1430 instance1["wasi_snapshot_preview1:path_open"],
1431 instance1["wasi_snapshot_preview1:path_readlink"],
1432 instance1["wasi_snapshot_preview1:path_remove_directory"],
1433 instance1["wasi_snapshot_preview1:path_rename"],
1434 instance1["wasi_snapshot_preview1:path_symlink"],
1435 instance1["wasi_snapshot_preview1:path_unlink_file"],
1436 instance1["wasi_snapshot_preview1:poll_oneoff"],
1437 instance1["wasi_snapshot_preview1:proc_exit"],
1438 instance1["wasi_snapshot_preview1:sched_yield"],
1439 instance1["wasi_snapshot_preview1:random_get"],
1440 instance1["wasi_snapshot_preview1:sock_accept"],
1441 instance1["wasi_snapshot_preview1:sock_recv"],
1442 instance1["wasi_snapshot_preview1:sock_send"],
1443 instance1["wasi_snapshot_preview1:sock_shutdown"],
1444 instance1["__wasilibc_find_relpath_alloc"],
1445 instance1["wasi_snapshot_preview1:adapter_open_badfd"],
1446 instance1["wasi_snapshot_preview1:adapter_close_badfd"],
1447 instance1["getentropy"],
1448 instance1["isatty"],
1449 instance1["reallocarray"],
1450 instance32["cabi_realloc"],
1451 instance1["wasi:io/error@0.2.0:[resource-drop]error"],
1452 instance1["wasi:io/poll@0.2.0:[resource-drop]pollable"],
1453 instance1["wasi:io/streams@0.2.0:[resource-drop]input-stream"],
1454 instance1["wasi:io/streams@0.2.0:[resource-drop]output-stream"],
1455 instance1["wasi:cli/terminal-input@0.2.0:[resource-drop]terminal-input"],
1456 instance1["wasi:cli/terminal-output@0.2.0:[resource-drop]terminal-output"],
1457 instance1["wasi:filesystem/types@0.2.0:[resource-drop]descriptor"],
1458 instance1["wasi:filesystem/types@0.2.0:[resource-drop]directory-entry-stream"],
1459 instance1["wasi:sockets/network@0.2.0:[resource-drop]network"],
1460 instance1["wasi:sockets/udp@0.2.0:[resource-drop]udp-socket"],
1461 instance1["wasi:sockets/udp@0.2.0:[resource-drop]incoming-datagram-stream"],
1462 instance1["wasi:sockets/udp@0.2.0:[resource-drop]outgoing-datagram-stream"],
1463 instance1["wasi:sockets/tcp@0.2.0:[resource-drop]tcp-socket"],
1464 instance1["wasi:sockets/ip-name-lookup@0.2.0:[resource-drop]resolve-address-stream"],
1465 instance1["wasi:cli/environment@0.2.0:get-environment"],
1466 instance1["wasi:cli/environment@0.2.0:get-arguments"],
1467 instance1["wasi:cli/environment@0.2.0:initial-cwd"],
1468 instance1["wasi:cli/exit@0.2.0:exit"],
1469 instance1["wasi:io/error@0.2.0:[method]error.to-debug-string"],
1470 instance1["wasi:io/poll@0.2.0:[method]pollable.ready"],
1471 instance1["wasi:io/poll@0.2.0:[method]pollable.block"],
1472 instance1["wasi:io/poll@0.2.0:poll"],
1473 instance1["wasi:io/streams@0.2.0:[method]input-stream.read"],
1474 instance1["wasi:io/streams@0.2.0:[method]input-stream.blocking-read"],
1475 instance1["wasi:io/streams@0.2.0:[method]input-stream.skip"],
1476 instance1["wasi:io/streams@0.2.0:[method]input-stream.blocking-skip"],
1477 instance1["wasi:io/streams@0.2.0:[method]input-stream.subscribe"],
1478 instance1["wasi:io/streams@0.2.0:[method]output-stream.check-write"],
1479 instance1["wasi:io/streams@0.2.0:[method]output-stream.write"],
1480 instance1["wasi:io/streams@0.2.0:[method]output-stream.blocking-write-and-flush"],
1481 instance1["wasi:io/streams@0.2.0:[method]output-stream.flush"],
1482 instance1["wasi:io/streams@0.2.0:[method]output-stream.blocking-flush"],
1483 instance1["wasi:io/streams@0.2.0:[method]output-stream.subscribe"],
1484 instance1["wasi:io/streams@0.2.0:[method]output-stream.write-zeroes"],
1485 instance1["wasi:io/streams@0.2.0:[method]output-stream.blocking-write-zeroes-and-flush"],
1486 instance1["wasi:io/streams@0.2.0:[method]output-stream.splice"],
1487 instance1["wasi:io/streams@0.2.0:[method]output-stream.blocking-splice"],
1488 instance1["wasi:cli/stdin@0.2.0:get-stdin"],
1489 instance1["wasi:cli/stdout@0.2.0:get-stdout"],
1490 instance1["wasi:cli/stderr@0.2.0:get-stderr"],
1491 instance1["wasi:cli/terminal-stdin@0.2.0:get-terminal-stdin"],
1492 instance1["wasi:cli/terminal-stdout@0.2.0:get-terminal-stdout"],
1493 instance1["wasi:cli/terminal-stderr@0.2.0:get-terminal-stderr"],
1494 instance1["wasi:clocks/monotonic-clock@0.2.0:now"],
1495 instance1["wasi:clocks/monotonic-clock@0.2.0:resolution"],
1496 instance1["wasi:clocks/monotonic-clock@0.2.0:subscribe-instant"],
1497 instance1["wasi:clocks/monotonic-clock@0.2.0:subscribe-duration"],
1498 instance1["wasi:clocks/wall-clock@0.2.0:now"],
1499 instance1["wasi:clocks/wall-clock@0.2.0:resolution"],
1500 instance1["wasi:filesystem/types@0.2.0:[method]descriptor.read-via-stream"],
1501 instance1["wasi:filesystem/types@0.2.0:[method]descriptor.write-via-stream"],
1502 instance1["wasi:filesystem/types@0.2.0:[method]descriptor.append-via-stream"],
1503 instance1["wasi:filesystem/types@0.2.0:[method]descriptor.advise"],
1504 instance1["wasi:filesystem/types@0.2.0:[method]descriptor.sync-data"],
1505 instance1["wasi:filesystem/types@0.2.0:[method]descriptor.get-flags"],
1506 instance1["wasi:filesystem/types@0.2.0:[method]descriptor.get-type"],
1507 instance1["wasi:filesystem/types@0.2.0:[method]descriptor.set-size"],
1508 instance1["wasi:filesystem/types@0.2.0:[method]descriptor.set-times"],
1509 instance1["wasi:filesystem/types@0.2.0:[method]descriptor.read"],
1510 instance1["wasi:filesystem/types@0.2.0:[method]descriptor.write"],
1511 instance1["wasi:filesystem/types@0.2.0:[method]descriptor.read-directory"],
1512 instance1["wasi:filesystem/types@0.2.0:[method]descriptor.sync"],
1513 instance1["wasi:filesystem/types@0.2.0:[method]descriptor.create-directory-at"],
1514 instance1["wasi:filesystem/types@0.2.0:[method]descriptor.stat"],
1515 instance1["wasi:filesystem/types@0.2.0:[method]descriptor.stat-at"],
1516 instance1["wasi:filesystem/types@0.2.0:[method]descriptor.set-times-at"],
1517 instance1["wasi:filesystem/types@0.2.0:[method]descriptor.link-at"],
1518 instance1["wasi:filesystem/types@0.2.0:[method]descriptor.open-at"],
1519 instance1["wasi:filesystem/types@0.2.0:[method]descriptor.readlink-at"],
1520 instance1["wasi:filesystem/types@0.2.0:[method]descriptor.remove-directory-at"],
1521 instance1["wasi:filesystem/types@0.2.0:[method]descriptor.rename-at"],
1522 instance1["wasi:filesystem/types@0.2.0:[method]descriptor.symlink-at"],
1523 instance1["wasi:filesystem/types@0.2.0:[method]descriptor.unlink-file-at"],
1524 instance1["wasi:filesystem/types@0.2.0:[method]descriptor.is-same-object"],
1525 instance1["wasi:filesystem/types@0.2.0:[method]descriptor.metadata-hash"],
1526 instance1["wasi:filesystem/types@0.2.0:[method]descriptor.metadata-hash-at"],
1527 instance1["wasi:filesystem/types@0.2.0:[method]directory-entry-stream.read-directory-entry"],
1528 instance1["wasi:filesystem/types@0.2.0:filesystem-error-code"],
1529 instance1["wasi:filesystem/preopens@0.2.0:get-directories"],
1530 instance1["wasi:sockets/instance-network@0.2.0:instance-network"],
1531 instance1["wasi:sockets/udp@0.2.0:[method]udp-socket.start-bind"],
1532 instance1["wasi:sockets/udp@0.2.0:[method]udp-socket.finish-bind"],
1533 instance1["wasi:sockets/udp@0.2.0:[method]udp-socket.stream"],
1534 instance1["wasi:sockets/udp@0.2.0:[method]udp-socket.local-address"],
1535 instance1["wasi:sockets/udp@0.2.0:[method]udp-socket.remote-address"],
1536 instance1["wasi:sockets/udp@0.2.0:[method]udp-socket.address-family"],
1537 instance1["wasi:sockets/udp@0.2.0:[method]udp-socket.unicast-hop-limit"],
1538 instance1["wasi:sockets/udp@0.2.0:[method]udp-socket.set-unicast-hop-limit"],
1539 instance1["wasi:sockets/udp@0.2.0:[method]udp-socket.receive-buffer-size"],
1540 instance1["wasi:sockets/udp@0.2.0:[method]udp-socket.set-receive-buffer-size"],
1541 instance1["wasi:sockets/udp@0.2.0:[method]udp-socket.send-buffer-size"],
1542 instance1["wasi:sockets/udp@0.2.0:[method]udp-socket.set-send-buffer-size"],
1543 instance1["wasi:sockets/udp@0.2.0:[method]udp-socket.subscribe"],
1544 instance1["wasi:sockets/udp@0.2.0:[method]incoming-datagram-stream.receive"],
1545 instance1["wasi:sockets/udp@0.2.0:[method]incoming-datagram-stream.subscribe"],
1546 instance1["wasi:sockets/udp@0.2.0:[method]outgoing-datagram-stream.check-send"],
1547 instance1["wasi:sockets/udp@0.2.0:[method]outgoing-datagram-stream.send"],
1548 instance1["wasi:sockets/udp@0.2.0:[method]outgoing-datagram-stream.subscribe"],
1549 instance1["wasi:sockets/udp-create-socket@0.2.0:create-udp-socket"],
1550 instance1["wasi:sockets/tcp@0.2.0:[method]tcp-socket.start-bind"],
1551 instance1["wasi:sockets/tcp@0.2.0:[method]tcp-socket.finish-bind"],
1552 instance1["wasi:sockets/tcp@0.2.0:[method]tcp-socket.start-connect"],
1553 instance1["wasi:sockets/tcp@0.2.0:[method]tcp-socket.finish-connect"],
1554 instance1["wasi:sockets/tcp@0.2.0:[method]tcp-socket.start-listen"],
1555 instance1["wasi:sockets/tcp@0.2.0:[method]tcp-socket.finish-listen"],
1556 instance1["wasi:sockets/tcp@0.2.0:[method]tcp-socket.accept"],
1557 instance1["wasi:sockets/tcp@0.2.0:[method]tcp-socket.local-address"],
1558 instance1["wasi:sockets/tcp@0.2.0:[method]tcp-socket.remote-address"],
1559 instance1["wasi:sockets/tcp@0.2.0:[method]tcp-socket.is-listening"],
1560 instance1["wasi:sockets/tcp@0.2.0:[method]tcp-socket.address-family"],
1561 instance1["wasi:sockets/tcp@0.2.0:[method]tcp-socket.set-listen-backlog-size"],
1562 instance1["wasi:sockets/tcp@0.2.0:[method]tcp-socket.keep-alive-enabled"],
1563 instance1["wasi:sockets/tcp@0.2.0:[method]tcp-socket.set-keep-alive-enabled"],
1564 instance1["wasi:sockets/tcp@0.2.0:[method]tcp-socket.keep-alive-idle-time"],
1565 instance1["wasi:sockets/tcp@0.2.0:[method]tcp-socket.set-keep-alive-idle-time"],
1566 instance1["wasi:sockets/tcp@0.2.0:[method]tcp-socket.keep-alive-interval"],
1567 instance1["wasi:sockets/tcp@0.2.0:[method]tcp-socket.set-keep-alive-interval"],
1568 instance1["wasi:sockets/tcp@0.2.0:[method]tcp-socket.keep-alive-count"],
1569 instance1["wasi:sockets/tcp@0.2.0:[method]tcp-socket.set-keep-alive-count"],
1570 instance1["wasi:sockets/tcp@0.2.0:[method]tcp-socket.hop-limit"],
1571 instance1["wasi:sockets/tcp@0.2.0:[method]tcp-socket.set-hop-limit"],
1572 instance1["wasi:sockets/tcp@0.2.0:[method]tcp-socket.receive-buffer-size"],
1573 instance1["wasi:sockets/tcp@0.2.0:[method]tcp-socket.set-receive-buffer-size"],
1574 instance1["wasi:sockets/tcp@0.2.0:[method]tcp-socket.send-buffer-size"],
1575 instance1["wasi:sockets/tcp@0.2.0:[method]tcp-socket.set-send-buffer-size"],
1576 instance1["wasi:sockets/tcp@0.2.0:[method]tcp-socket.subscribe"],
1577 instance1["wasi:sockets/tcp@0.2.0:[method]tcp-socket.shutdown"],
1578 instance1["wasi:sockets/tcp-create-socket@0.2.0:create-tcp-socket"],
1579 instance1["wasi:sockets/ip-name-lookup@0.2.0:resolve-addresses"],
1580 instance1["wasi:sockets/ip-name-lookup@0.2.0:[method]resolve-address-stream.resolve-next-address"],
1581 instance1["wasi:sockets/ip-name-lookup@0.2.0:[method]resolve-address-stream.subscribe"],
1582 instance1["wasi:random/random@0.2.0:get-random-bytes"],
1583 instance1["wasi:random/random@0.2.0:get-random-u64"],
1584 instance1["wasi:random/insecure@0.2.0:get-insecure-random-bytes"],
1585 instance1["wasi:random/insecure@0.2.0:get-insecure-random-u64"],
1586 instance1["wasi:random/insecure-seed@0.2.0:insecure-seed"],
1587 instance1["crypt_r"],
1588 instance1["isalnum_l"],
1589 instance1["isalpha_l"],
1590 instance1["isblank_l"],
1591 instance1["iscntrl_l"],
1592 instance1["isdigit_l"],
1593 instance1["isgraph_l"],
1594 instance1["islower_l"],
1595 instance1["isprint_l"],
1596 instance1["ispunct_l"],
1597 instance1["isspace_l"],
1598 instance1["isupper_l"],
1599 instance1["iswalnum_l"],
1600 instance1["iswalpha_l"],
1601 instance1["iswblank_l"],
1602 instance1["iswcntrl_l"],
1603 instance1["iswctype_l"],
1604 instance1["wctype_l"],
1605 instance1["iswdigit_l"],
1606 instance1["iswgraph_l"],
1607 instance1["iswlower_l"],
1608 instance1["iswprint_l"],
1609 instance1["iswpunct_l"],
1610 instance1["iswspace_l"],
1611 instance1["iswupper_l"],
1612 instance1["iswxdigit_l"],
1613 instance1["isxdigit_l"],
1614 instance1["tolower_l"],
1615 instance1["toupper_l"],
1616 instance1["towupper_l"],
1617 instance1["towlower_l"],
1618 instance1["wctrans_l"],
1619 instance1["towctrans_l"],
1620 instance1["alphasort64"],
1621 instance1["versionsort64"],
1622 instance1["strerror_l"],
1623 instance1["creat64"],
1624 instance1["duplocale"],
1625 instance1["__freelocale"],
1626 instance1["nl_langinfo"],
1627 instance1["nl_langinfo_l"],
1628 instance1["newlocale"],
1629 instance1["strcoll_l"],
1630 instance1["__strtof_l"],
1631 instance1["__strtod_l"],
1632 instance1["__strtold_l"],
1633 instance1["strxfrm_l"],
1634 instance1["uselocale"],
1635 instance1["wcscoll_l"],
1636 instance1["wcsxfrm_l"],
1637 instance1["pow10"],
1638 instance1["pow10f"],
1639 instance1["pow10l"],
1640 instance1["lgamma_r"],
1641 instance1["lgammaf_r"],
1642 instance1["lgammal_r"],
1643 instance1["drem"],
1644 instance1["dremf"],
1645 instance1["__xpg_basename"],
1646 instance1["__posix_getopt"],
1647 instance1["nftw64"],
1648 instance1["inet_aton"],
1649 instance1["glob64"],
1650 instance1["globfree64"],
1651 instance1["hcreate_r"],
1652 instance1["hdestroy_r"],
1653 instance1["hsearch_r"],
1654 instance1["futimesat"],
1655 instance1["fdopen"],
1656 instance1["clearerr_unlocked"],
1657 instance1["fpurge"],
1658 instance1["feof_unlocked"],
1659 instance1["_IO_feof_unlocked"],
1660 instance1["ferror_unlocked"],
1661 instance1["_IO_ferror_unlocked"],
1662 instance1["fflush_unlocked"],
1663 instance1["fgetpos64"],
1664 instance1["fgets_unlocked"],
1665 instance1["fgetwc_unlocked"],
1666 instance1["getwc_unlocked"],
1667 instance1["fgetws_unlocked"],
1668 instance1["fileno_unlocked"],
1669 instance1["fopen64"],
1670 instance1["fputs_unlocked"],
1671 instance1["fputwc_unlocked"],
1672 instance1["putwc_unlocked"],
1673 instance1["fputws_unlocked"],
1674 instance1["fread_unlocked"],
1675 instance1["freopen64"],
1676 instance1["__isoc99_fscanf"],
1677 instance1["fseeko"],
1678 instance1["fseeko64"],
1679 instance1["fsetpos64"],
1680 instance1["ftello"],
1681 instance1["ftello64"],
1682 instance1["fwrite_unlocked"],
1683 instance1["__isoc99_fwscanf"],
1684 instance1["_IO_getc"],
1685 instance1["fgetc_unlocked"],
1686 instance1["_IO_getc_unlocked"],
1687 instance1["__getdelim"],
1688 instance1["getwchar_unlocked"],
1689 instance1["iprintf"],
1690 instance1["__small_printf"],
1691 instance1["_IO_putc"],
1692 instance1["fputc_unlocked"],
1693 instance1["_IO_putc_unlocked"],
1694 instance1["putwchar_unlocked"],
1695 instance1["__isoc99_scanf"],
1696 instance1["__isoc99_sscanf"],
1697 instance1["__isoc99_swscanf"],
1698 instance1["__isoc99_vfscanf"],
1699 instance1["__isoc99_vfwscanf"],
1700 instance1["__isoc99_vscanf"],
1701 instance1["__isoc99_vsscanf"],
1702 instance1["__isoc99_vswscanf"],
1703 instance1["__isoc99_vwscanf"],
1704 instance1["__isoc99_wscanf"],
1705 instance1["qsort_r"],
1706 instance1["__strtol_internal"],
1707 instance1["__strtoul_internal"],
1708 instance1["__strtoll_internal"],
1709 instance1["__strtoull_internal"],
1710 instance1["__strtoimax_internal"],
1711 instance1["__strtoumax_internal"],
1712 instance1["memrchr"],
1713 instance1["stpcpy"],
1714 instance1["stpncpy"],
1715 instance1["strcasecmp_l"],
1716 instance1["strchrnul"],
1717 instance1["__xpg_strerror_r"],
1718 instance1["strncasecmp_l"],
1719 instance1["asctime_r"],
1720 instance1["localtime_r"],
1721 instance1["gmtime_r"],
1722 instance1["strftime_l"],
1723 instance1["wcsftime_l"],
1724 instance1["__heap_base"],
1725 instance1["__heap_end"],
1726 instance1["libc.so:errno"],
1727 instance1["libc.so:_CLOCK_REALTIME"],
1728 instance1["libc.so:__wasilibc_environ"],
1729 instance1["libc.so:__wasilibc_cwd"],
1730 instance1["libc.so:__wasilibc_find_relpath_alloc"],
1731 instance1["libc.so:__stack_chk_guard"],
1732 instance1["libc.so:__signgam"],
1733 instance1["libc.so:__optreset"],
1734 instance1["libc.so:optind"],
1735 instance1["libc.so:__optpos"],
1736 instance1["libc.so:optarg"],
1737 instance1["libc.so:optopt"],
1738 instance1["libc.so:opterr"],
1739 instance1["libc.so:getdate_err"],
1740 ]).exports(store)
1741 file = importlib_resources.files() / ('root.core34.wasm')
1742 if isinstance(file, pathlib.Path):
1743 module = wasmtime.Module.from_file(store.engine, file)
1744 else:
1745 module = wasmtime.Module(store.engine, file.read_bytes())
1746 instance35 = wasmtime.Instance(store, module, [
1747 instance32["componentize-py#Dispatch"],
1748 instance32["componentize-py#Allocate"],
1749 instance32["componentize-py#Free"],
1750 instance32["componentize-py#ToCanonBool"],
1751 instance32["componentize-py#ToCanonI32"],
1752 instance32["componentize-py#ToCanonU32"],
1753 instance32["componentize-py#ToCanonI64"],
1754 instance32["componentize-py#ToCanonU64"],
1755 instance32["componentize-py#ToCanonF32"],
1756 instance32["componentize-py#ToCanonF64"],
1757 instance32["componentize-py#ToCanonChar"],
1758 instance32["componentize-py#ToCanonString"],
1759 instance32["componentize-py#GetField"],
1760 instance32["componentize-py#GetListLength"],
1761 instance32["componentize-py#GetListElement"],
1762 instance32["componentize-py#FromCanonBool"],
1763 instance32["componentize-py#FromCanonI32"],
1764 instance32["componentize-py#FromCanonU32"],
1765 instance32["componentize-py#FromCanonI64"],
1766 instance32["componentize-py#FromCanonU64"],
1767 instance32["componentize-py#FromCanonF32"],
1768 instance32["componentize-py#FromCanonF64"],
1769 instance32["componentize-py#FromCanonChar"],
1770 instance32["componentize-py#FromCanonString"],
1771 instance32["componentize-py#MakeList"],
1772 instance32["componentize-py#ListAppend"],
1773 instance32["componentize-py#None"],
1774 instance32["componentize-py#Init"],
1775 instance32["componentize-py#GetBytes"],
1776 instance32["componentize-py#MakeBytes"],
1777 instance32["componentize-py#FromCanonHandle"],
1778 instance32["componentize-py#ToCanonHandle"],
1779 instance32["cabi_realloc"],
1780 instance1["libcomponentize_py_bindings.so:table_base"],
1781 instance1["__stack_pointer"],
1782 instance1["memory"],
1783 instance1["__indirect_function_table"],
1784 ]).exports(store)
1785 file = importlib_resources.files() / ('root.core35.wasm')
1786 if isinstance(file, pathlib.Path):
1787 module = wasmtime.Module.from_file(store.engine, file)
1788 else:
1789 module = wasmtime.Module(store.engine, file.read_bytes())
1790 instance36 = wasmtime.Instance(store, module, [
1791 instance1["memory"],
1792 instance1["__indirect_function_table"],
1793 instance1["__stack_pointer"],
1794 instance1["libwasi-emulated-process-clocks.so:memory_base"],
1795 instance1["libwasi-emulated-process-clocks.so:table_base"],
1796 instance34["__wasi_clock_time_get"],
1797 instance1["clock"],
1798 instance1["libwasi-emulated-process-clocks.so:errno"],
1799 ]).exports(store)
1800 file = importlib_resources.files() / ('root.core36.wasm')
1801 if isinstance(file, pathlib.Path):
1802 module = wasmtime.Module.from_file(store.engine, file)
1803 else:
1804 module = wasmtime.Module(store.engine, file.read_bytes())
1805 instance37 = wasmtime.Instance(store, module, [
1806 instance1["memory"],
1807 instance1["__indirect_function_table"],
1808 instance1["libdl.so:memory_base"],
1809 instance1["libdl.so:table_base"],
1810 instance34["strlen"],
1811 instance34["memcmp"],
1812 ]).exports(store)
1813 file = importlib_resources.files() / ('root.core37.wasm')
1814 if isinstance(file, pathlib.Path):
1815 module = wasmtime.Module.from_file(store.engine, file)
1816 else:
1817 module = wasmtime.Module(store.engine, file.read_bytes())
1818 instance38 = wasmtime.Instance(store, module, [
1819 instance1["memory"],
1820 instance1["__indirect_function_table"],
1821 instance1["__stack_pointer"],
1822 instance1["libwasi-emulated-signal.so:memory_base"],
1823 instance1["libwasi-emulated-signal.so:table_base"],
1824 instance34["fprintf"],
1825 instance34["abort"],
1826 instance1["bsd_signal"],
1827 instance1["__sysv_signal"],
1828 instance34["__lctrans_cur"],
1829 instance1["libwasi-emulated-signal.so:errno"],
1830 instance1["libwasi-emulated-signal.so:__SIG_ERR"],
1831 instance1["libwasi-emulated-signal.so:stderr"],
1832 instance1["libwasi-emulated-signal.so:__SIG_IGN"],
1833 ]).exports(store)
1834 file = importlib_resources.files() / ('root.core40.wasm')
1835 if isinstance(file, pathlib.Path):
1836 module = wasmtime.Module.from_file(store.engine, file)
1837 else:
1838 module = wasmtime.Module(store.engine, file.read_bytes())
1839 instance39 = wasmtime.Instance(store, module, [
1840 instance26["get-arguments"],
1841 instance26["get-environment"],
1842 instance26["initial-cwd"],
1843 instance22["args_get"],
1844 instance22["args_sizes_get"],
1845 instance22["clock_res_get"],
1846 instance22["clock_time_get"],
1847 instance22["environ_get"],
1848 instance22["environ_sizes_get"],
1849 instance22["fd_advise"],
1850 instance22["fd_allocate"],
1851 instance22["fd_close"],
1852 instance22["fd_datasync"],
1853 instance22["fd_fdstat_get"],
1854 instance22["fd_fdstat_set_flags"],
1855 instance22["fd_fdstat_set_rights"],
1856 instance22["fd_filestat_get"],
1857 instance22["fd_filestat_set_size"],
1858 instance22["fd_filestat_set_times"],
1859 instance22["fd_pread"],
1860 instance22["fd_prestat_dir_name"],
1861 instance22["fd_prestat_get"],
1862 instance22["fd_pwrite"],
1863 instance22["fd_read"],
1864 instance22["fd_readdir"],
1865 instance22["fd_renumber"],
1866 instance22["fd_seek"],
1867 instance22["fd_sync"],
1868 instance22["fd_tell"],
1869 instance22["fd_write"],
1870 instance22["path_create_directory"],
1871 instance22["path_filestat_get"],
1872 instance22["path_filestat_set_times"],
1873 instance22["path_link"],
1874 instance22["path_open"],
1875 instance22["path_readlink"],
1876 instance22["path_remove_directory"],
1877 instance22["path_rename"],
1878 instance22["path_symlink"],
1879 instance22["path_unlink_file"],
1880 instance22["poll_oneoff"],
1881 instance22["proc_exit"],
1882 instance22["proc_raise"],
1883 instance22["random_get"],
1884 instance22["reset_adapter_state"],
1885 instance22["sched_yield"],
1886 instance22["sock_accept"],
1887 instance22["sock_recv"],
1888 instance22["sock_send"],
1889 instance22["sock_shutdown"],
1890 instance22["adapter_close_badfd"],
1891 instance22["adapter_open_badfd"],
1892 instance25["exit"],
1893 instance27["get-stderr"],
1894 instance14["get-stdin"],
1895 instance18["get-stdout"],
1896 instance23["[resource-drop]terminal-input"],
1897 instance4["[resource-drop]terminal-output"],
1898 instance20["get-terminal-stderr"],
1899 instance28["get-terminal-stdin"],
1900 instance19["get-terminal-stdout"],
1901 instance3["now"],
1902 instance3["resolution"],
1903 instance3["subscribe-duration"],
1904 instance3["subscribe-instant"],
1905 instance29["now"],
1906 instance29["resolution"],
1907 instance21["get-directories"],
1908 instance15["[method]descriptor.advise"],
1909 instance15["[method]descriptor.append-via-stream"],
1910 instance15["[method]descriptor.create-directory-at"],
1911 instance15["[method]descriptor.get-flags"],
1912 instance15["[method]descriptor.get-type"],
1913 instance15["[method]descriptor.is-same-object"],
1914 instance15["[method]descriptor.link-at"],
1915 instance15["[method]descriptor.metadata-hash"],
1916 instance15["[method]descriptor.metadata-hash-at"],
1917 instance15["[method]descriptor.open-at"],
1918 instance15["[method]descriptor.read"],
1919 instance15["[method]descriptor.read-directory"],
1920 instance15["[method]descriptor.read-via-stream"],
1921 instance15["[method]descriptor.readlink-at"],
1922 instance15["[method]descriptor.remove-directory-at"],
1923 instance15["[method]descriptor.rename-at"],
1924 instance15["[method]descriptor.set-size"],
1925 instance15["[method]descriptor.set-times"],
1926 instance15["[method]descriptor.set-times-at"],
1927 instance15["[method]descriptor.stat"],
1928 instance15["[method]descriptor.stat-at"],
1929 instance15["[method]descriptor.symlink-at"],
1930 instance15["[method]descriptor.sync"],
1931 instance15["[method]descriptor.sync-data"],
1932 instance15["[method]descriptor.unlink-file-at"],
1933 instance15["[method]descriptor.write"],
1934 instance15["[method]descriptor.write-via-stream"],
1935 instance15["[method]directory-entry-stream.read-directory-entry"],
1936 instance15["[resource-drop]descriptor"],
1937 instance15["[resource-drop]directory-entry-stream"],
1938 instance15["filesystem-error-code"],
1939 instance17["[method]error.to-debug-string"],
1940 instance17["[resource-drop]error"],
1941 instance11["[method]pollable.block"],
1942 instance11["[method]pollable.ready"],
1943 instance11["[resource-drop]pollable"],
1944 instance11["poll"],
1945 instance24["[method]input-stream.blocking-read"],
1946 instance24["[method]input-stream.blocking-skip"],
1947 instance24["[method]input-stream.read"],
1948 instance24["[method]input-stream.skip"],
1949 instance24["[method]input-stream.subscribe"],
1950 instance24["[method]output-stream.blocking-flush"],
1951 instance24["[method]output-stream.blocking-splice"],
1952 instance24["[method]output-stream.blocking-write-and-flush"],
1953 instance24["[method]output-stream.blocking-write-zeroes-and-flush"],
1954 instance24["[method]output-stream.check-write"],
1955 instance24["[method]output-stream.flush"],
1956 instance24["[method]output-stream.splice"],
1957 instance24["[method]output-stream.subscribe"],
1958 instance24["[method]output-stream.write"],
1959 instance24["[method]output-stream.write-zeroes"],
1960 instance24["[resource-drop]input-stream"],
1961 instance24["[resource-drop]output-stream"],
1962 instance10["insecure-seed"],
1963 instance12["get-insecure-random-bytes"],
1964 instance12["get-insecure-random-u64"],
1965 instance8["get-random-bytes"],
1966 instance8["get-random-u64"],
1967 instance2["instance-network"],
1968 instance13["[method]resolve-address-stream.resolve-next-address"],
1969 instance13["[method]resolve-address-stream.subscribe"],
1970 instance13["[resource-drop]resolve-address-stream"],
1971 instance13["resolve-addresses"],
1972 instance16["[resource-drop]network"],
1973 instance7["create-tcp-socket"],
1974 instance5["[method]tcp-socket.accept"],
1975 instance5["[method]tcp-socket.address-family"],
1976 instance5["[method]tcp-socket.finish-bind"],
1977 instance5["[method]tcp-socket.finish-connect"],
1978 instance5["[method]tcp-socket.finish-listen"],
1979 instance5["[method]tcp-socket.hop-limit"],
1980 instance5["[method]tcp-socket.is-listening"],
1981 instance5["[method]tcp-socket.keep-alive-count"],
1982 instance5["[method]tcp-socket.keep-alive-enabled"],
1983 instance5["[method]tcp-socket.keep-alive-idle-time"],
1984 instance5["[method]tcp-socket.keep-alive-interval"],
1985 instance5["[method]tcp-socket.local-address"],
1986 instance5["[method]tcp-socket.receive-buffer-size"],
1987 instance5["[method]tcp-socket.remote-address"],
1988 instance5["[method]tcp-socket.send-buffer-size"],
1989 instance5["[method]tcp-socket.set-hop-limit"],
1990 instance5["[method]tcp-socket.set-keep-alive-count"],
1991 instance5["[method]tcp-socket.set-keep-alive-enabled"],
1992 instance5["[method]tcp-socket.set-keep-alive-idle-time"],
1993 instance5["[method]tcp-socket.set-keep-alive-interval"],
1994 instance5["[method]tcp-socket.set-listen-backlog-size"],
1995 instance5["[method]tcp-socket.set-receive-buffer-size"],
1996 instance5["[method]tcp-socket.set-send-buffer-size"],
1997 instance5["[method]tcp-socket.shutdown"],
1998 instance5["[method]tcp-socket.start-bind"],
1999 instance5["[method]tcp-socket.start-connect"],
2000 instance5["[method]tcp-socket.start-listen"],
2001 instance5["[method]tcp-socket.subscribe"],
2002 instance5["[resource-drop]tcp-socket"],
2003 instance6["create-udp-socket"],
2004 instance9["[method]incoming-datagram-stream.receive"],
2005 instance9["[method]incoming-datagram-stream.subscribe"],
2006 instance9["[method]outgoing-datagram-stream.check-send"],
2007 instance9["[method]outgoing-datagram-stream.send"],
2008 instance9["[method]outgoing-datagram-stream.subscribe"],
2009 instance9["[method]udp-socket.address-family"],
2010 instance9["[method]udp-socket.finish-bind"],
2011 instance9["[method]udp-socket.local-address"],
2012 instance9["[method]udp-socket.receive-buffer-size"],
2013 instance9["[method]udp-socket.remote-address"],
2014 instance9["[method]udp-socket.send-buffer-size"],
2015 instance9["[method]udp-socket.set-receive-buffer-size"],
2016 instance9["[method]udp-socket.set-send-buffer-size"],
2017 instance9["[method]udp-socket.set-unicast-hop-limit"],
2018 instance9["[method]udp-socket.start-bind"],
2019 instance9["[method]udp-socket.stream"],
2020 instance9["[method]udp-socket.subscribe"],
2021 instance9["[method]udp-socket.unicast-hop-limit"],
2022 instance9["[resource-drop]incoming-datagram-stream"],
2023 instance9["[resource-drop]outgoing-datagram-stream"],
2024 instance9["[resource-drop]udp-socket"],
2025 instance0["$imports"],
2026 ]).exports(store)
2027 file = importlib_resources.files() / ('root.core38.wasm')
2028 if isinstance(file, pathlib.Path):
2029 module = wasmtime.Module.from_file(store.engine, file)
2030 else:
2031 module = wasmtime.Module(store.engine, file.read_bytes())
2032 instance40 = wasmtime.Instance(store, module, [
2033 instance1["memory"],
2034 instance1["__indirect_function_table"],
2035 instance32["__wasm_apply_data_relocs"],
2036 instance32["_initialize"],
2037 instance1["libpython3.12.so:memory_base"],
2038 instance33["PyBaseObject_Type"],
2039 instance1["libcomponentize_py_runtime.so:PyBaseObject_Type"],
2040 instance33["PyBool_Type"],
2041 instance1["libcomponentize_py_runtime.so:PyBool_Type"],
2042 instance33["PyByteArray_Type"],
2043 instance1["libcomponentize_py_runtime.so:PyByteArray_Type"],
2044 instance33["PyComplex_Type"],
2045 instance1["libcomponentize_py_runtime.so:PyComplex_Type"],
2046 instance33["PyExc_AttributeError"],
2047 instance1["libcomponentize_py_runtime.so:PyExc_AttributeError"],
2048 instance33["PyExc_BaseException"],
2049 instance1["libcomponentize_py_runtime.so:PyExc_BaseException"],
2050 instance33["PyExc_BlockingIOError"],
2051 instance1["libcomponentize_py_runtime.so:PyExc_BlockingIOError"],
2052 instance33["PyExc_BrokenPipeError"],
2053 instance1["libcomponentize_py_runtime.so:PyExc_BrokenPipeError"],
2054 instance33["PyExc_ConnectionAbortedError"],
2055 instance1["libcomponentize_py_runtime.so:PyExc_ConnectionAbortedError"],
2056 instance33["PyExc_ConnectionRefusedError"],
2057 instance1["libcomponentize_py_runtime.so:PyExc_ConnectionRefusedError"],
2058 instance33["PyExc_ConnectionResetError"],
2059 instance1["libcomponentize_py_runtime.so:PyExc_ConnectionResetError"],
2060 instance33["PyExc_FileExistsError"],
2061 instance1["libcomponentize_py_runtime.so:PyExc_FileExistsError"],
2062 instance33["PyExc_FileNotFoundError"],
2063 instance1["libcomponentize_py_runtime.so:PyExc_FileNotFoundError"],
2064 instance33["PyExc_ImportError"],
2065 instance1["libcomponentize_py_runtime.so:PyExc_ImportError"],
2066 instance33["PyExc_InterruptedError"],
2067 instance1["libcomponentize_py_runtime.so:PyExc_InterruptedError"],
2068 instance33["PyExc_OSError"],
2069 instance1["libcomponentize_py_runtime.so:PyExc_OSError"],
2070 instance33["PyExc_OverflowError"],
2071 instance1["libcomponentize_py_runtime.so:PyExc_OverflowError"],
2072 instance33["PyExc_PermissionError"],
2073 instance1["libcomponentize_py_runtime.so:PyExc_PermissionError"],
2074 instance33["PyExc_RuntimeError"],
2075 instance1["libcomponentize_py_runtime.so:PyExc_RuntimeError"],
2076 instance33["PyExc_SystemError"],
2077 instance1["libcomponentize_py_runtime.so:PyExc_SystemError"],
2078 instance33["PyExc_TimeoutError"],
2079 instance1["libcomponentize_py_runtime.so:PyExc_TimeoutError"],
2080 instance33["PyExc_TypeError"],
2081 instance1["libcomponentize_py_runtime.so:PyExc_TypeError"],
2082 instance33["PyExc_UnicodeDecodeError"],
2083 instance1["libcomponentize_py_runtime.so:PyExc_UnicodeDecodeError"],
2084 instance33["PyExc_ValueError"],
2085 instance1["libcomponentize_py_runtime.so:PyExc_ValueError"],
2086 instance33["PyFloat_Type"],
2087 instance1["libcomponentize_py_runtime.so:PyFloat_Type"],
2088 instance33["PyModule_Type"],
2089 instance1["libcomponentize_py_runtime.so:PyModule_Type"],
2090 instance33["PySuper_Type"],
2091 instance1["libcomponentize_py_runtime.so:PySuper_Type"],
2092 instance1["libc.so:memory_base"],
2093 instance34["_CLOCK_MONOTONIC"],
2094 instance1["libcomponentize_py_runtime.so:_CLOCK_MONOTONIC"],
2095 instance1["libcomponentize_py_runtime.so:memory_base"],
2096 instance32["_CLOCK_PROCESS_CPUTIME_ID"],
2097 instance1["libcomponentize_py_runtime.so:_CLOCK_PROCESS_CPUTIME_ID"],
2098 instance34["_CLOCK_REALTIME"],
2099 instance1["libcomponentize_py_runtime.so:_CLOCK_REALTIME"],
2100 instance32["_CLOCK_THREAD_CPUTIME_ID"],
2101 instance1["libcomponentize_py_runtime.so:_CLOCK_THREAD_CPUTIME_ID"],
2102 instance33["_PyWeakref_CallableProxyType"],
2103 instance1["libcomponentize_py_runtime.so:_PyWeakref_CallableProxyType"],
2104 instance33["_PyWeakref_ProxyType"],
2105 instance1["libcomponentize_py_runtime.so:_PyWeakref_ProxyType"],
2106 instance33["_PyWeakref_RefType"],
2107 instance1["libcomponentize_py_runtime.so:_PyWeakref_RefType"],
2108 instance33["_Py_FalseStruct"],
2109 instance1["libcomponentize_py_runtime.so:_Py_FalseStruct"],
2110 instance33["_Py_NoneStruct"],
2111 instance1["libcomponentize_py_runtime.so:_Py_NoneStruct"],
2112 instance33["_Py_TrueStruct"],
2113 instance1["libcomponentize_py_runtime.so:_Py_TrueStruct"],
2114 instance32["_ZN3std2io5stdio6stderr8INSTANCE17hdd6de04f3a4451edE"],
2115 instance1["libcomponentize_py_runtime.so:_ZN3std2io5stdio6stderr8INSTANCE17hdd6de04f3a4451edE"],
2116 instance32["_ZN3std4hash6random11RandomState3new4KEYS28_$u7b$$u7b$closure$u7d$$u7d$3VAL17h7cf73dd687db3236E"],
2117 instance1["libcomponentize_py_runtime.so:_ZN3std4hash6random11RandomState3new4KEYS28_$u7b$$u7b$closure$u7d$$u7d$3VAL17h7cf73dd687db3236E"],
2118 instance32["_ZN3std4sync4mpmc5waker17current_thread_id5DUMMY28_$u7b$$u7b$closure$u7d$$u7d$3VAL17hf0f00c1e115534c7E"],
2119 instance1["libcomponentize_py_runtime.so:_ZN3std4sync4mpmc5waker17current_thread_id5DUMMY28_$u7b$$u7b$closure$u7d$$u7d$3VAL17hf0f00c1e115534c7E"],
2120 instance32["_ZN3std6thread7current2id2ID17h2500b4255e55e1deE"],
2121 instance1["libcomponentize_py_runtime.so:_ZN3std6thread7current2id2ID17h2500b4255e55e1deE"],
2122 instance32["_ZN3std6thread7current7CURRENT17hd12783af172970a3E"],
2123 instance1["libcomponentize_py_runtime.so:_ZN3std6thread7current7CURRENT17hd12783af172970a3E"],
2124 instance32["_ZN3std6thread9spawnhook11SPAWN_HOOKS28_$u7b$$u7b$closure$u7d$$u7d$3VAL17hcc47de0d1bee4d81E"],
2125 instance1["libcomponentize_py_runtime.so:_ZN3std6thread9spawnhook11SPAWN_HOOKS28_$u7b$$u7b$closure$u7d$$u7d$3VAL17hcc47de0d1bee4d81E"],
2126 instance32["_ZN3std9panicking11panic_count18GLOBAL_PANIC_COUNT17h14480cde15ba3055E"],
2127 instance1["libcomponentize_py_runtime.so:_ZN3std9panicking11panic_count18GLOBAL_PANIC_COUNT17h14480cde15ba3055E"],
2128 instance32["_ZN3std9panicking4HOOK17hd7044fccb070540fE"],
2129 instance1["libcomponentize_py_runtime.so:_ZN3std9panicking4HOOK17hd7044fccb070540fE"],
2130 instance32["_ZN4core3num7flt2dec8strategy5grisu12CACHED_POW1017h7692f94ae90a763fE"],
2131 instance1["libcomponentize_py_runtime.so:_ZN4core3num7flt2dec8strategy5grisu12CACHED_POW1017h7692f94ae90a763fE"],
2132 instance32["_ZN4core7unicode12unicode_data11white_space14WHITESPACE_MAP17h3a90b0ce5303a883E"],
2133 instance1["libcomponentize_py_runtime.so:_ZN4core7unicode12unicode_data11white_space14WHITESPACE_MAP17h3a90b0ce5303a883E"],
2134 instance32["_ZN4core7unicode12unicode_data9lowercase14BITSET_MAPPING17h62bcf1262284cb04E"],
2135 instance1["libcomponentize_py_runtime.so:_ZN4core7unicode12unicode_data9lowercase14BITSET_MAPPING17h62bcf1262284cb04E"],
2136 instance32["_ZN4core7unicode12unicode_data9lowercase16BITSET_CANONICAL17h63226014346da8f5E"],
2137 instance1["libcomponentize_py_runtime.so:_ZN4core7unicode12unicode_data9lowercase16BITSET_CANONICAL17h63226014346da8f5E"],
2138 instance32["_ZN4core7unicode12unicode_data9lowercase17BITSET_CHUNKS_MAP17he4ed0506af830fb3E"],
2139 instance1["libcomponentize_py_runtime.so:_ZN4core7unicode12unicode_data9lowercase17BITSET_CHUNKS_MAP17he4ed0506af830fb3E"],
2140 instance32["_ZN4core7unicode12unicode_data9lowercase19BITSET_INDEX_CHUNKS17h278ee97a9058cbc3E"],
2141 instance1["libcomponentize_py_runtime.so:_ZN4core7unicode12unicode_data9lowercase19BITSET_INDEX_CHUNKS17h278ee97a9058cbc3E"],
2142 instance32["_ZN4core7unicode12unicode_data9uppercase14BITSET_MAPPING17hf7b8a08139220617E"],
2143 instance1["libcomponentize_py_runtime.so:_ZN4core7unicode12unicode_data9uppercase14BITSET_MAPPING17hf7b8a08139220617E"],
2144 instance32["_ZN4core7unicode12unicode_data9uppercase16BITSET_CANONICAL17he16b658fc10964d4E"],
2145 instance1["libcomponentize_py_runtime.so:_ZN4core7unicode12unicode_data9uppercase16BITSET_CANONICAL17he16b658fc10964d4E"],
2146 instance32["_ZN4core7unicode12unicode_data9uppercase17BITSET_CHUNKS_MAP17h48af9fbac1a49846E"],
2147 instance1["libcomponentize_py_runtime.so:_ZN4core7unicode12unicode_data9uppercase17BITSET_CHUNKS_MAP17h48af9fbac1a49846E"],
2148 instance32["_ZN4core7unicode12unicode_data9uppercase19BITSET_INDEX_CHUNKS17h423c71b6c14daabdE"],
2149 instance1["libcomponentize_py_runtime.so:_ZN4core7unicode12unicode_data9uppercase19BITSET_INDEX_CHUNKS17h423c71b6c14daabdE"],
2150 instance32["_ZN8pyo3_ffi8datetime18PyDateTimeAPI_impl17hb4adfb35473d18cfE"],
2151 instance1["libcomponentize_py_runtime.so:_ZN8pyo3_ffi8datetime18PyDateTimeAPI_impl17hb4adfb35473d18cfE"],
2152 instance32["__rust_alloc_error_handler_should_panic"],
2153 instance1["libcomponentize_py_runtime.so:__rust_alloc_error_handler_should_panic"],
2154 instance32["__rust_no_alloc_shim_is_unstable"],
2155 instance1["libcomponentize_py_runtime.so:__rust_no_alloc_shim_is_unstable"],
2156 instance34["errno"],
2157 instance1["libcomponentize_py_runtime.so:errno"],
2158 instance33["__wasm_apply_data_relocs"],
2159 instance33["_initialize"],
2160 instance33["PyAsyncGen_Type"],
2161 instance1["libpython3.12.so:PyAsyncGen_Type"],
2162 instance1["libpython3.12.so:PyBaseObject_Type"],
2163 instance1["libpython3.12.so:PyBool_Type"],
2164 instance33["PyByteArrayIter_Type"],
2165 instance1["libpython3.12.so:PyByteArrayIter_Type"],
2166 instance1["libpython3.12.so:PyByteArray_Type"],
2167 instance33["PyBytesIter_Type"],
2168 instance1["libpython3.12.so:PyBytesIter_Type"],
2169 instance33["PyBytes_Type"],
2170 instance1["libpython3.12.so:PyBytes_Type"],
2171 instance33["PyCFunction_Type"],
2172 instance1["libpython3.12.so:PyCFunction_Type"],
2173 instance33["PyCMethod_Type"],
2174 instance1["libpython3.12.so:PyCMethod_Type"],
2175 instance33["PyCallIter_Type"],
2176 instance1["libpython3.12.so:PyCallIter_Type"],
2177 instance33["PyCapsule_Type"],
2178 instance1["libpython3.12.so:PyCapsule_Type"],
2179 instance33["PyCell_Type"],
2180 instance1["libpython3.12.so:PyCell_Type"],
2181 instance33["PyClassMethodDescr_Type"],
2182 instance1["libpython3.12.so:PyClassMethodDescr_Type"],
2183 instance33["PyClassMethod_Type"],
2184 instance1["libpython3.12.so:PyClassMethod_Type"],
2185 instance33["PyCode_Type"],
2186 instance1["libpython3.12.so:PyCode_Type"],
2187 instance1["libpython3.12.so:PyComplex_Type"],
2188 instance33["PyContextToken_Type"],
2189 instance1["libpython3.12.so:PyContextToken_Type"],
2190 instance33["PyContextVar_Type"],
2191 instance1["libpython3.12.so:PyContextVar_Type"],
2192 instance33["PyContext_Type"],
2193 instance1["libpython3.12.so:PyContext_Type"],
2194 instance33["PyCoro_Type"],
2195 instance1["libpython3.12.so:PyCoro_Type"],
2196 instance33["PyDictItems_Type"],
2197 instance1["libpython3.12.so:PyDictItems_Type"],
2198 instance33["PyDictIterItem_Type"],
2199 instance1["libpython3.12.so:PyDictIterItem_Type"],
2200 instance33["PyDictIterKey_Type"],
2201 instance1["libpython3.12.so:PyDictIterKey_Type"],
2202 instance33["PyDictIterValue_Type"],
2203 instance1["libpython3.12.so:PyDictIterValue_Type"],
2204 instance33["PyDictKeys_Type"],
2205 instance1["libpython3.12.so:PyDictKeys_Type"],
2206 instance33["PyDictProxy_Type"],
2207 instance1["libpython3.12.so:PyDictProxy_Type"],
2208 instance33["PyDictRevIterItem_Type"],
2209 instance1["libpython3.12.so:PyDictRevIterItem_Type"],
2210 instance33["PyDictRevIterKey_Type"],
2211 instance1["libpython3.12.so:PyDictRevIterKey_Type"],
2212 instance33["PyDictRevIterValue_Type"],
2213 instance1["libpython3.12.so:PyDictRevIterValue_Type"],
2214 instance33["PyDictValues_Type"],
2215 instance1["libpython3.12.so:PyDictValues_Type"],
2216 instance33["PyDict_Type"],
2217 instance1["libpython3.12.so:PyDict_Type"],
2218 instance33["PyEllipsis_Type"],
2219 instance1["libpython3.12.so:PyEllipsis_Type"],
2220 instance33["PyEnum_Type"],
2221 instance1["libpython3.12.so:PyEnum_Type"],
2222 instance33["PyExc_ArithmeticError"],
2223 instance1["libpython3.12.so:PyExc_ArithmeticError"],
2224 instance33["PyExc_AssertionError"],
2225 instance1["libpython3.12.so:PyExc_AssertionError"],
2226 instance1["libpython3.12.so:PyExc_AttributeError"],
2227 instance1["libpython3.12.so:PyExc_BaseException"],
2228 instance33["PyExc_BaseExceptionGroup"],
2229 instance1["libpython3.12.so:PyExc_BaseExceptionGroup"],
2230 instance1["libpython3.12.so:PyExc_BlockingIOError"],
2231 instance1["libpython3.12.so:PyExc_BrokenPipeError"],
2232 instance33["PyExc_BufferError"],
2233 instance1["libpython3.12.so:PyExc_BufferError"],
2234 instance33["PyExc_BytesWarning"],
2235 instance1["libpython3.12.so:PyExc_BytesWarning"],
2236 instance33["PyExc_ChildProcessError"],
2237 instance1["libpython3.12.so:PyExc_ChildProcessError"],
2238 instance1["libpython3.12.so:PyExc_ConnectionAbortedError"],
2239 instance1["libpython3.12.so:PyExc_ConnectionRefusedError"],
2240 instance1["libpython3.12.so:PyExc_ConnectionResetError"],
2241 instance33["PyExc_DeprecationWarning"],
2242 instance1["libpython3.12.so:PyExc_DeprecationWarning"],
2243 instance33["PyExc_EOFError"],
2244 instance1["libpython3.12.so:PyExc_EOFError"],
2245 instance33["PyExc_EncodingWarning"],
2246 instance1["libpython3.12.so:PyExc_EncodingWarning"],
2247 instance33["PyExc_EnvironmentError"],
2248 instance1["libpython3.12.so:PyExc_EnvironmentError"],
2249 instance33["PyExc_Exception"],
2250 instance1["libpython3.12.so:PyExc_Exception"],
2251 instance1["libpython3.12.so:PyExc_FileExistsError"],
2252 instance1["libpython3.12.so:PyExc_FileNotFoundError"],
2253 instance33["PyExc_GeneratorExit"],
2254 instance1["libpython3.12.so:PyExc_GeneratorExit"],
2255 instance33["PyExc_IOError"],
2256 instance1["libpython3.12.so:PyExc_IOError"],
2257 instance1["libpython3.12.so:PyExc_ImportError"],
2258 instance33["PyExc_ImportWarning"],
2259 instance1["libpython3.12.so:PyExc_ImportWarning"],
2260 instance33["PyExc_IndentationError"],
2261 instance1["libpython3.12.so:PyExc_IndentationError"],
2262 instance33["PyExc_IndexError"],
2263 instance1["libpython3.12.so:PyExc_IndexError"],
2264 instance1["libpython3.12.so:PyExc_InterruptedError"],
2265 instance33["PyExc_IsADirectoryError"],
2266 instance1["libpython3.12.so:PyExc_IsADirectoryError"],
2267 instance33["PyExc_KeyError"],
2268 instance1["libpython3.12.so:PyExc_KeyError"],
2269 instance33["PyExc_KeyboardInterrupt"],
2270 instance1["libpython3.12.so:PyExc_KeyboardInterrupt"],
2271 instance33["PyExc_LookupError"],
2272 instance1["libpython3.12.so:PyExc_LookupError"],
2273 instance33["PyExc_MemoryError"],
2274 instance1["libpython3.12.so:PyExc_MemoryError"],
2275 instance33["PyExc_NameError"],
2276 instance1["libpython3.12.so:PyExc_NameError"],
2277 instance33["PyExc_NotADirectoryError"],
2278 instance1["libpython3.12.so:PyExc_NotADirectoryError"],
2279 instance33["PyExc_NotImplementedError"],
2280 instance1["libpython3.12.so:PyExc_NotImplementedError"],
2281 instance1["libpython3.12.so:PyExc_OSError"],
2282 instance1["libpython3.12.so:PyExc_OverflowError"],
2283 instance33["PyExc_PendingDeprecationWarning"],
2284 instance1["libpython3.12.so:PyExc_PendingDeprecationWarning"],
2285 instance1["libpython3.12.so:PyExc_PermissionError"],
2286 instance33["PyExc_ProcessLookupError"],
2287 instance1["libpython3.12.so:PyExc_ProcessLookupError"],
2288 instance33["PyExc_RecursionError"],
2289 instance1["libpython3.12.so:PyExc_RecursionError"],
2290 instance33["PyExc_ReferenceError"],
2291 instance1["libpython3.12.so:PyExc_ReferenceError"],
2292 instance33["PyExc_ResourceWarning"],
2293 instance1["libpython3.12.so:PyExc_ResourceWarning"],
2294 instance1["libpython3.12.so:PyExc_RuntimeError"],
2295 instance33["PyExc_RuntimeWarning"],
2296 instance1["libpython3.12.so:PyExc_RuntimeWarning"],
2297 instance33["PyExc_StopAsyncIteration"],
2298 instance1["libpython3.12.so:PyExc_StopAsyncIteration"],
2299 instance33["PyExc_StopIteration"],
2300 instance1["libpython3.12.so:PyExc_StopIteration"],
2301 instance33["PyExc_SyntaxError"],
2302 instance1["libpython3.12.so:PyExc_SyntaxError"],
2303 instance33["PyExc_SyntaxWarning"],
2304 instance1["libpython3.12.so:PyExc_SyntaxWarning"],
2305 instance1["libpython3.12.so:PyExc_SystemError"],
2306 instance33["PyExc_SystemExit"],
2307 instance1["libpython3.12.so:PyExc_SystemExit"],
2308 instance33["PyExc_TabError"],
2309 instance1["libpython3.12.so:PyExc_TabError"],
2310 instance1["libpython3.12.so:PyExc_TimeoutError"],
2311 instance1["libpython3.12.so:PyExc_TypeError"],
2312 instance33["PyExc_UnboundLocalError"],
2313 instance1["libpython3.12.so:PyExc_UnboundLocalError"],
2314 instance1["libpython3.12.so:PyExc_UnicodeDecodeError"],
2315 instance33["PyExc_UnicodeEncodeError"],
2316 instance1["libpython3.12.so:PyExc_UnicodeEncodeError"],
2317 instance33["PyExc_UnicodeError"],
2318 instance1["libpython3.12.so:PyExc_UnicodeError"],
2319 instance33["PyExc_UnicodeTranslateError"],
2320 instance1["libpython3.12.so:PyExc_UnicodeTranslateError"],
2321 instance33["PyExc_UserWarning"],
2322 instance1["libpython3.12.so:PyExc_UserWarning"],
2323 instance1["libpython3.12.so:PyExc_ValueError"],
2324 instance33["PyExc_Warning"],
2325 instance1["libpython3.12.so:PyExc_Warning"],
2326 instance33["PyExc_ZeroDivisionError"],
2327 instance1["libpython3.12.so:PyExc_ZeroDivisionError"],
2328 instance33["PyFilter_Type"],
2329 instance1["libpython3.12.so:PyFilter_Type"],
2330 instance1["libpython3.12.so:PyFloat_Type"],
2331 instance33["PyFrame_Type"],
2332 instance1["libpython3.12.so:PyFrame_Type"],
2333 instance33["PyFrozenSet_Type"],
2334 instance1["libpython3.12.so:PyFrozenSet_Type"],
2335 instance33["PyFunction_Type"],
2336 instance1["libpython3.12.so:PyFunction_Type"],
2337 instance33["PyGen_Type"],
2338 instance1["libpython3.12.so:PyGen_Type"],
2339 instance33["PyGetSetDescr_Type"],
2340 instance1["libpython3.12.so:PyGetSetDescr_Type"],
2341 instance33["PyImport_FrozenModules"],
2342 instance1["libpython3.12.so:PyImport_FrozenModules"],
2343 instance33["PyImport_Inittab"],
2344 instance1["libpython3.12.so:PyImport_Inittab"],
2345 instance33["PyInstanceMethod_Type"],
2346 instance1["libpython3.12.so:PyInstanceMethod_Type"],
2347 instance33["PyListIter_Type"],
2348 instance1["libpython3.12.so:PyListIter_Type"],
2349 instance33["PyListRevIter_Type"],
2350 instance1["libpython3.12.so:PyListRevIter_Type"],
2351 instance33["PyList_Type"],
2352 instance1["libpython3.12.so:PyList_Type"],
2353 instance33["PyLongRangeIter_Type"],
2354 instance1["libpython3.12.so:PyLongRangeIter_Type"],
2355 instance33["PyLong_Type"],
2356 instance1["libpython3.12.so:PyLong_Type"],
2357 instance33["PyMap_Type"],
2358 instance1["libpython3.12.so:PyMap_Type"],
2359 instance33["PyMemberDescr_Type"],
2360 instance1["libpython3.12.so:PyMemberDescr_Type"],
2361 instance33["PyMemoryView_Type"],
2362 instance1["libpython3.12.so:PyMemoryView_Type"],
2363 instance33["PyMethodDescr_Type"],
2364 instance1["libpython3.12.so:PyMethodDescr_Type"],
2365 instance33["PyMethod_Type"],
2366 instance1["libpython3.12.so:PyMethod_Type"],
2367 instance33["PyModuleDef_Type"],
2368 instance1["libpython3.12.so:PyModuleDef_Type"],
2369 instance1["libpython3.12.so:PyModule_Type"],
2370 instance33["PyODictItems_Type"],
2371 instance1["libpython3.12.so:PyODictItems_Type"],
2372 instance33["PyODictIter_Type"],
2373 instance1["libpython3.12.so:PyODictIter_Type"],
2374 instance33["PyODictKeys_Type"],
2375 instance1["libpython3.12.so:PyODictKeys_Type"],
2376 instance33["PyODictValues_Type"],
2377 instance1["libpython3.12.so:PyODictValues_Type"],
2378 instance33["PyODict_Type"],
2379 instance1["libpython3.12.so:PyODict_Type"],
2380 instance33["PyOS_InputHook"],
2381 instance1["libpython3.12.so:PyOS_InputHook"],
2382 instance33["PyOS_ReadlineFunctionPointer"],
2383 instance1["libpython3.12.so:PyOS_ReadlineFunctionPointer"],
2384 instance33["PyPickleBuffer_Type"],
2385 instance1["libpython3.12.so:PyPickleBuffer_Type"],
2386 instance33["PyProperty_Type"],
2387 instance1["libpython3.12.so:PyProperty_Type"],
2388 instance33["PyRangeIter_Type"],
2389 instance1["libpython3.12.so:PyRangeIter_Type"],
2390 instance33["PyRange_Type"],
2391 instance1["libpython3.12.so:PyRange_Type"],
2392 instance33["PyReversed_Type"],
2393 instance1["libpython3.12.so:PyReversed_Type"],
2394 instance33["PySeqIter_Type"],
2395 instance1["libpython3.12.so:PySeqIter_Type"],
2396 instance33["PySetIter_Type"],
2397 instance1["libpython3.12.so:PySetIter_Type"],
2398 instance33["PySet_Type"],
2399 instance1["libpython3.12.so:PySet_Type"],
2400 instance33["PySlice_Type"],
2401 instance1["libpython3.12.so:PySlice_Type"],
2402 instance33["PyStaticMethod_Type"],
2403 instance1["libpython3.12.so:PyStaticMethod_Type"],
2404 instance33["PyStdPrinter_Type"],
2405 instance1["libpython3.12.so:PyStdPrinter_Type"],
2406 instance33["PyStructSequence_UnnamedField"],
2407 instance1["libpython3.12.so:PyStructSequence_UnnamedField"],
2408 instance1["libpython3.12.so:PySuper_Type"],
2409 instance33["PyTraceBack_Type"],
2410 instance1["libpython3.12.so:PyTraceBack_Type"],
2411 instance33["PyTupleIter_Type"],
2412 instance1["libpython3.12.so:PyTupleIter_Type"],
2413 instance33["PyTuple_Type"],
2414 instance1["libpython3.12.so:PyTuple_Type"],
2415 instance33["PyType_Type"],
2416 instance1["libpython3.12.so:PyType_Type"],
2417 instance33["PyUnicodeIter_Type"],
2418 instance1["libpython3.12.so:PyUnicodeIter_Type"],
2419 instance33["PyUnicode_Type"],
2420 instance1["libpython3.12.so:PyUnicode_Type"],
2421 instance33["PyWrapperDescr_Type"],
2422 instance1["libpython3.12.so:PyWrapperDescr_Type"],
2423 instance33["PyZip_Type"],
2424 instance1["libpython3.12.so:PyZip_Type"],
2425 instance33["Py_BytesWarningFlag"],
2426 instance1["libpython3.12.so:Py_BytesWarningFlag"],
2427 instance33["Py_DebugFlag"],
2428 instance1["libpython3.12.so:Py_DebugFlag"],
2429 instance33["Py_DontWriteBytecodeFlag"],
2430 instance1["libpython3.12.so:Py_DontWriteBytecodeFlag"],
2431 instance33["Py_FileSystemDefaultEncodeErrors"],
2432 instance1["libpython3.12.so:Py_FileSystemDefaultEncodeErrors"],
2433 instance33["Py_FileSystemDefaultEncoding"],
2434 instance1["libpython3.12.so:Py_FileSystemDefaultEncoding"],
2435 instance33["Py_FrozenFlag"],
2436 instance1["libpython3.12.so:Py_FrozenFlag"],
2437 instance33["Py_GenericAliasType"],
2438 instance1["libpython3.12.so:Py_GenericAliasType"],
2439 instance33["Py_HasFileSystemDefaultEncoding"],
2440 instance1["libpython3.12.so:Py_HasFileSystemDefaultEncoding"],
2441 instance33["Py_HashRandomizationFlag"],
2442 instance1["libpython3.12.so:Py_HashRandomizationFlag"],
2443 instance33["Py_IgnoreEnvironmentFlag"],
2444 instance1["libpython3.12.so:Py_IgnoreEnvironmentFlag"],
2445 instance33["Py_InspectFlag"],
2446 instance1["libpython3.12.so:Py_InspectFlag"],
2447 instance33["Py_InteractiveFlag"],
2448 instance1["libpython3.12.so:Py_InteractiveFlag"],
2449 instance33["Py_IsolatedFlag"],
2450 instance1["libpython3.12.so:Py_IsolatedFlag"],
2451 instance33["Py_NoSiteFlag"],
2452 instance1["libpython3.12.so:Py_NoSiteFlag"],
2453 instance33["Py_NoUserSiteDirectory"],
2454 instance1["libpython3.12.so:Py_NoUserSiteDirectory"],
2455 instance33["Py_OptimizeFlag"],
2456 instance1["libpython3.12.so:Py_OptimizeFlag"],
2457 instance33["Py_QuietFlag"],
2458 instance1["libpython3.12.so:Py_QuietFlag"],
2459 instance33["Py_UTF8Mode"],
2460 instance1["libpython3.12.so:Py_UTF8Mode"],
2461 instance33["Py_UnbufferedStdioFlag"],
2462 instance1["libpython3.12.so:Py_UnbufferedStdioFlag"],
2463 instance33["Py_VerboseFlag"],
2464 instance1["libpython3.12.so:Py_VerboseFlag"],
2465 instance33["Py_hexdigits"],
2466 instance1["libpython3.12.so:Py_hexdigits"],
2467 instance1["libpython3.12.so:_CLOCK_MONOTONIC"],
2468 instance1["libpython3.12.so:_CLOCK_REALTIME"],
2469 instance33["_PyAsyncGenASend_Type"],
2470 instance1["libpython3.12.so:_PyAsyncGenASend_Type"],
2471 instance33["_PyAsyncGenAThrow_Type"],
2472 instance1["libpython3.12.so:_PyAsyncGenAThrow_Type"],
2473 instance33["_PyAsyncGenWrappedValue_Type"],
2474 instance1["libpython3.12.so:_PyAsyncGenWrappedValue_Type"],
2475 instance33["_PyBufferWrapper_Type"],
2476 instance1["libpython3.12.so:_PyBufferWrapper_Type"],
2477 instance33["_PyByteArray_empty_string"],
2478 instance1["libpython3.12.so:_PyByteArray_empty_string"],
2479 instance33["_PyCoroWrapper_Type"],
2480 instance1["libpython3.12.so:_PyCoroWrapper_Type"],
2481 instance33["_PyImport_FrozenBootstrap"],
2482 instance1["libpython3.12.so:_PyImport_FrozenBootstrap"],
2483 instance33["_PyImport_FrozenStdlib"],
2484 instance1["libpython3.12.so:_PyImport_FrozenStdlib"],
2485 instance33["_PyImport_FrozenTest"],
2486 instance1["libpython3.12.so:_PyImport_FrozenTest"],
2487 instance33["_PyInterpreterID_Type"],
2488 instance1["libpython3.12.so:_PyInterpreterID_Type"],
2489 instance33["_PyLong_DigitValue"],
2490 instance1["libpython3.12.so:_PyLong_DigitValue"],
2491 instance33["_PyManagedBuffer_Type"],
2492 instance1["libpython3.12.so:_PyManagedBuffer_Type"],
2493 instance33["_PyMethodWrapper_Type"],
2494 instance1["libpython3.12.so:_PyMethodWrapper_Type"],
2495 instance33["_PyNamespace_Type"],
2496 instance1["libpython3.12.so:_PyNamespace_Type"],
2497 instance33["_PyNone_Type"],
2498 instance1["libpython3.12.so:_PyNone_Type"],
2499 instance33["_PyNotImplemented_Type"],
2500 instance1["libpython3.12.so:_PyNotImplemented_Type"],
2501 instance33["_PyOS_ReadlineTState"],
2502 instance1["libpython3.12.so:_PyOS_ReadlineTState"],
2503 instance33["_PyRuntime"],
2504 instance1["libpython3.12.so:_PyRuntime"],
2505 instance1["libpython3.12.so:_PyWeakref_CallableProxyType"],
2506 instance1["libpython3.12.so:_PyWeakref_ProxyType"],
2507 instance1["libpython3.12.so:_PyWeakref_RefType"],
2508 instance33["_Py_EllipsisObject"],
2509 instance1["libpython3.12.so:_Py_EllipsisObject"],
2510 instance1["libpython3.12.so:_Py_FalseStruct"],
2511 instance33["_Py_HasFileSystemDefaultEncodeErrors"],
2512 instance1["libpython3.12.so:_Py_HasFileSystemDefaultEncodeErrors"],
2513 instance33["_Py_HashSecret"],
2514 instance1["libpython3.12.so:_Py_HashSecret"],
2515 instance1["libpython3.12.so:_Py_NoneStruct"],
2516 instance33["_Py_NotImplementedStruct"],
2517 instance1["libpython3.12.so:_Py_NotImplementedStruct"],
2518 instance33["_Py_SwappedOp"],
2519 instance1["libpython3.12.so:_Py_SwappedOp"],
2520 instance1["libpython3.12.so:_Py_TrueStruct"],
2521 instance33["_Py_ascii_whitespace"],
2522 instance1["libpython3.12.so:_Py_ascii_whitespace"],
2523 instance33["_Py_ctype_table"],
2524 instance1["libpython3.12.so:_Py_ctype_table"],
2525 instance33["_Py_ctype_tolower"],
2526 instance1["libpython3.12.so:_Py_ctype_tolower"],
2527 instance33["_Py_ctype_toupper"],
2528 instance1["libpython3.12.so:_Py_ctype_toupper"],
2529 instance34["environ"],
2530 instance1["libpython3.12.so:environ"],
2531 instance1["libpython3.12.so:errno"],
2532 instance34["h_errno"],
2533 instance1["libpython3.12.so:h_errno"],
2534 instance34["stderr"],
2535 instance1["libpython3.12.so:stderr"],
2536 instance34["stdin"],
2537 instance1["libpython3.12.so:stdin"],
2538 instance34["stdout"],
2539 instance1["libpython3.12.so:stdout"],
2540 instance34["__wasm_apply_data_relocs"],
2541 instance34["_initialize"],
2542 instance1["libc.so:_CLOCK_REALTIME"],
2543 instance34["__optpos"],
2544 instance1["libc.so:__optpos"],
2545 instance34["__optreset"],
2546 instance1["libc.so:__optreset"],
2547 instance34["__signgam"],
2548 instance1["libc.so:__signgam"],
2549 instance34["__stack_chk_guard"],
2550 instance1["libc.so:__stack_chk_guard"],
2551 instance34["__wasilibc_cwd"],
2552 instance1["libc.so:__wasilibc_cwd"],
2553 instance34["__wasilibc_environ"],
2554 instance1["libc.so:__wasilibc_environ"],
2555 instance1["libc.so:errno"],
2556 instance34["getdate_err"],
2557 instance1["libc.so:getdate_err"],
2558 instance34["optarg"],
2559 instance1["libc.so:optarg"],
2560 instance34["opterr"],
2561 instance1["libc.so:opterr"],
2562 instance34["optind"],
2563 instance1["libc.so:optind"],
2564 instance34["optopt"],
2565 instance1["libc.so:optopt"],
2566 instance36["__wasm_apply_data_relocs"],
2567 instance36["_initialize"],
2568 instance1["libwasi-emulated-process-clocks.so:errno"],
2569 instance30["__wasm_apply_data_relocs"],
2570 instance30["_initialize"],
2571 instance38["__wasm_apply_data_relocs"],
2572 instance38["_initialize"],
2573 instance1["libwasi-emulated-signal.so:errno"],
2574 instance1["libwasi-emulated-signal.so:stderr"],
2575 instance37["__wasm_apply_data_relocs"],
2576 instance37["_initialize"],
2577 instance37["__wasm_set_libraries"],
2578 instance32["PyInit_componentize_py_runtime"],
2579 instance33["PyObject_GenericGetDict"],
2580 instance33["PyObject_GenericSetDict"],
2581 instance33["PyType_GenericAlloc"],
2582 instance32["_ZN102_$LT$std..panicking..begin_panic_handler..FormatStringPayload$u20$as$u20$core..panic..PanicPayload$GT$3get17h6aaf6f1496bce847E"],
2583 instance32["_ZN102_$LT$std..panicking..begin_panic_handler..FormatStringPayload$u20$as$u20$core..panic..PanicPayload$GT$8take_box17hf35b00560506f6d0E"],
2584 instance32["_ZN106_$LT$$LT$std..path..Iter$u20$as$u20$core..fmt..Debug$GT$..fmt..DebugHelper$u20$as$u20$core..fmt..Debug$GT$3fmt17h3f92d0c023bcce2eE"],
2585 instance32["_ZN112_$LT$$LT$std..path..Components$u20$as$u20$core..fmt..Debug$GT$..fmt..DebugHelper$u20$as$u20$core..fmt..Debug$GT$3fmt17hbd07695bdbe964c4E"],
2586 instance32["_ZN254_$LT$alloc..boxed..convert..$LT$impl$u20$core..convert..From$LT$alloc..string..String$GT$$u20$for$u20$alloc..boxed..Box$LT$dyn$u20$core..error..Error$u2b$core..marker..Sync$u2b$core..marker..Send$GT$$GT$..from..StringError$u20$as$u20$core..fmt..Debug$GT$3fmt17h3fa1391424a7f208E"],
2587 instance32["_ZN256_$LT$alloc..boxed..convert..$LT$impl$u20$core..convert..From$LT$alloc..string..String$GT$$u20$for$u20$alloc..boxed..Box$LT$dyn$u20$core..error..Error$u2b$core..marker..Sync$u2b$core..marker..Send$GT$$GT$..from..StringError$u20$as$u20$core..error..Error$GT$11description17he7337e4540246fbfE"],
2588 instance32["_ZN256_$LT$alloc..boxed..convert..$LT$impl$u20$core..convert..From$LT$alloc..string..String$GT$$u20$for$u20$alloc..boxed..Box$LT$dyn$u20$core..error..Error$u2b$core..marker..Sync$u2b$core..marker..Send$GT$$GT$..from..StringError$u20$as$u20$core..fmt..Display$GT$3fmt17h8a67c98662c49e1aE"],
2589 instance32["_ZN41_$LT$char$u20$as$u20$core..fmt..Debug$GT$3fmt17h14e7e418f5fe6c39E"],
2590 instance32["_ZN43_$LT$char$u20$as$u20$core..fmt..Display$GT$3fmt17hfa18e4c0a907541eE"],
2591 instance32["_ZN4core3fmt3num3imp51_$LT$impl$u20$core..fmt..Display$u20$for$u20$u8$GT$3fmt17h553742713efd3d1bE"],
2592 instance32["_ZN4core3fmt3num3imp54_$LT$impl$u20$core..fmt..Display$u20$for$u20$isize$GT$3fmt17h08d6f2bcc208e04dE"],
2593 instance32["_ZN4core3fmt3num3imp52_$LT$impl$u20$core..fmt..Display$u20$for$u20$u16$GT$3fmt17h90c342341c7b0ce5E"],
2594 instance32["_ZN4core3fmt3num3imp52_$LT$impl$u20$core..fmt..Display$u20$for$u20$u32$GT$3fmt17he2e19476b472642cE"],
2595 instance32["_ZN4core3fmt3num3imp52_$LT$impl$u20$core..fmt..Display$u20$for$u20$u64$GT$3fmt17hf9f3b84e28ca39e6E"],
2596 instance32["_ZN4core3fmt3num3imp54_$LT$impl$u20$core..fmt..Display$u20$for$u20$isize$GT$3fmt17h08d6f2bcc208e04dE"],
2597 instance32["_ZN4core3fmt3num3imp52_$LT$impl$u20$core..fmt..Display$u20$for$u20$u32$GT$3fmt17he2e19476b472642cE"],
2598 instance32["_ZN4core3fmt3num52_$LT$impl$u20$core..fmt..LowerHex$u20$for$u20$u8$GT$3fmt17h9a6074995c5ecf04E"],
2599 instance32["_ZN4core3fmt3num52_$LT$impl$u20$core..fmt..UpperHex$u20$for$u20$u8$GT$3fmt17hd038c2aeb36616d2E"],
2600 instance32["_ZN4core3fmt3num53_$LT$impl$u20$core..fmt..LowerHex$u20$for$u20$u16$GT$3fmt17h87bf0a9238d9be6eE"],
2601 instance32["_ZN4core3fmt3num53_$LT$impl$u20$core..fmt..LowerHex$u20$for$u20$u32$GT$3fmt17haa4a6fec090f618dE"],
2602 instance32["_ZN4core3fmt3num53_$LT$impl$u20$core..fmt..UpperHex$u20$for$u20$u32$GT$3fmt17h7a42ab312c5ec006E"],
2603 instance32["_ZN4core3fmt3num54_$LT$impl$u20$core..fmt..LowerHex$u20$for$u20$i128$GT$3fmt17h0d81a87a9bc40305E"],
2604 instance32["_ZN4core3fmt3num53_$LT$impl$u20$core..fmt..LowerHex$u20$for$u20$u32$GT$3fmt17haa4a6fec090f618dE"],
2605 instance32["_ZN4core3fmt5float50_$LT$impl$u20$core..fmt..Debug$u20$for$u20$f32$GT$3fmt17h986b8ca26caf1bddE"],
2606 instance32["_ZN4core3fmt5float50_$LT$impl$u20$core..fmt..Debug$u20$for$u20$f64$GT$3fmt17h0bdfa53dbc6b594aE"],
2607 instance32["_ZN53_$LT$pyo3..err..PyErr$u20$as$u20$core..fmt..Debug$GT$3fmt17he5fae13af032ffa3E"],
2608 instance32["_ZN54_$LT$std..fs..FileType$u20$as$u20$core..fmt..Debug$GT$3fmt17h78ba7b8fa5015321E"],
2609 instance32["_ZN55_$LT$pyo3..err..PyErr$u20$as$u20$core..fmt..Display$GT$3fmt17h5e6ff7465d4c5e06E"],
2610 instance32["_ZN55_$LT$std..path..PathBuf$u20$as$u20$core..fmt..Debug$GT$3fmt17hedb88436bbe914fcE"],
2611 instance32["_ZN56_$LT$anyhow..ensure..Buf$u20$as$u20$core..fmt..Write$GT$9write_str17hbfb018783fef5b78E"],
2612 instance32["_ZN56_$LT$std..thread..Thread$u20$as$u20$core..fmt..Debug$GT$3fmt17h9a309dbc3e57a108E"],
2613 instance32["_ZN57_$LT$core..fmt..Arguments$u20$as$u20$core..fmt..Debug$GT$3fmt17h48174b1c0242081dE"],
2614 instance32["_ZN58_$LT$std..time..SystemTime$u20$as$u20$core..fmt..Debug$GT$3fmt17h50142b892b6ed91cE"],
2615 instance32["_ZN59_$LT$core..fmt..Arguments$u20$as$u20$core..fmt..Display$GT$3fmt17h38e7200d8e8b0479E"],
2616 instance32["_ZN60_$LT$core..cell..BorrowError$u20$as$u20$core..fmt..Debug$GT$3fmt17h6324ba5d7e4a4ab9E"],
2617 instance32["_ZN60_$LT$core..str..lossy..Debug$u20$as$u20$core..fmt..Debug$GT$3fmt17h6316fb8264d10f42E"],
2618 instance32["_ZN60_$LT$std..io..error..Error$u20$as$u20$core..fmt..Display$GT$3fmt17hba364255b85d11a6E"],
2619 instance32["_ZN63_$LT$core..cell..BorrowMutError$u20$as$u20$core..fmt..Debug$GT$3fmt17hb2d74b452a608284E"],
2620 instance32["_ZN63_$LT$std..ffi..os_str..OsString$u20$as$u20$core..fmt..Debug$GT$3fmt17h37303df8df9336eeE"],
2621 instance32["_ZN63_$LT$wasi..lib_generated..Errno$u20$as$u20$core..fmt..Debug$GT$3fmt17h0df3feaddbb8e3bdE"],
2622 instance32["_ZN64_$LT$anyhow..wrapper..BoxedError$u20$as$u20$core..fmt..Debug$GT$3fmt17hb738f9f81e946087E"],
2623 instance32["_ZN65_$LT$std..sys..pal..wasi..os..Env$u20$as$u20$core..fmt..Debug$GT$3fmt17he49d924ea17f457bE"],
2624 instance32["_ZN66_$LT$anyhow..wrapper..BoxedError$u20$as$u20$core..error..Error$GT$6source17h613ef3bcf952323cE"],
2625 instance32["_ZN66_$LT$anyhow..wrapper..BoxedError$u20$as$u20$core..fmt..Display$GT$3fmt17h7ca820186e5df61aE"],
2626 instance32["_ZN67_$LT$core..net..ip_addr..Ipv4Addr$u20$as$u20$core..fmt..Display$GT$3fmt17hf2861ca3ee3df41bE"],
2627 instance32["_ZN68_$LT$core..fmt..builders..PadAdapter$u20$as$u20$core..fmt..Write$GT$10write_char17ha19b267463a56771E"],
2628 instance32["_ZN68_$LT$core..fmt..builders..PadAdapter$u20$as$u20$core..fmt..Write$GT$9write_str17h64ab2f0486dd37f7E"],
2629 instance32["_ZN68_$LT$std..sys..pal..wasi..args..Args$u20$as$u20$core..fmt..Debug$GT$3fmt17h71c1222c441c673fE"],
2630 instance32["_ZN69_$LT$std..sys..pal..wasi..stdio..Stderr$u20$as$u20$std..io..Write$GT$14write_vectored17hc8888b74f5cd61aeE"],
2631 instance32["_ZN69_$LT$std..sys..pal..wasi..stdio..Stderr$u20$as$u20$std..io..Write$GT$5write17h5909554ed492b60eE"],
2632 instance32["_ZN6anyhow5error60_$LT$impl$u20$core..fmt..Debug$u20$for$u20$anyhow..Error$GT$3fmt17h94bd2c8dc4d8b4b9E"],
2633 instance32["_ZN70_$LT$core..slice..ascii..EscapeAscii$u20$as$u20$core..fmt..Display$GT$3fmt17h1fbfb32891f00601E"],
2634 instance32["_ZN73_$LT$std..sys..pal..wasi..os..EnvStrDebug$u20$as$u20$core..fmt..Debug$GT$3fmt17hfa77bb4c0f4138ecE"],
2635 instance32["_ZN73_$LT$std..sys_common..process..CommandEnv$u20$as$u20$core..fmt..Debug$GT$3fmt17h86c1a849b4c18c2cE"],
2636 instance32["_ZN79_$LT$std..backtrace_rs..symbolize..SymbolName$u20$as$u20$core..fmt..Display$GT$3fmt17h4ccff03dca5a8d12E"],
2637 instance32["_ZN89_$LT$std..panicking..rust_panic_without_hook..RewrapBox$u20$as$u20$core..fmt..Display$GT$3fmt17he32529e050e29d3dE"],
2638 instance32["_ZN92_$LT$std..panicking..begin_panic_handler..StaticStrPayload$u20$as$u20$core..fmt..Display$GT$3fmt17h72fc443e08dca3dbE"],
2639 instance32["_ZN95_$LT$std..panicking..begin_panic_handler..FormatStringPayload$u20$as$u20$core..fmt..Display$GT$3fmt17h8ccff0243b0e20c7E"],
2640 instance32["_ZN96_$LT$std..panicking..rust_panic_without_hook..RewrapBox$u20$as$u20$core..panic..PanicPayload$GT$8take_box17h56b70b040b42e50cE"],
2641 instance32["_ZN98_$LT$std..sys..backtrace..BacktraceLock..print..DisplayBacktrace$u20$as$u20$core..fmt..Display$GT$3fmt17h905271c9236184cbE"],
2642 instance32["_ZN99_$LT$std..panicking..begin_panic_handler..StaticStrPayload$u20$as$u20$core..panic..PanicPayload$GT$8take_box17h2f5764162976cbb6E"],
2643 instance32["cabi_realloc"],
2644 instance33["PyByteArray_AsString"],
2645 instance33["PyByteArray_FromObject"],
2646 instance33["PyByteArray_FromStringAndSize"],
2647 instance33["PyByteArray_Resize"],
2648 instance33["PyByteArray_Size"],
2649 instance33["PyBytes_AsString"],
2650 instance33["PyBytes_FromStringAndSize"],
2651 instance33["PyBytes_Size"],
2652 instance33["PyCMethod_New"],
2653 instance33["PyCallable_Check"],
2654 instance33["PyCapsule_GetContext"],
2655 instance33["PyCapsule_GetName"],
2656 instance33["PyCapsule_GetPointer"],
2657 instance33["PyCapsule_Import"],
2658 instance33["PyCapsule_IsValid"],
2659 instance33["PyCapsule_SetContext"],
2660 instance33["PyComplex_FromDoubles"],
2661 instance33["PyComplex_ImagAsDouble"],
2662 instance33["PyComplex_RealAsDouble"],
2663 instance33["PyDict_Clear"],
2664 instance33["PyDict_Contains"],
2665 instance33["PyDict_Copy"],
2666 instance33["PyDict_DelItem"],
2667 instance33["PyDict_GetItemWithError"],
2668 instance33["PyDict_Items"],
2669 instance33["PyDict_Keys"],
2670 instance33["PyDict_Merge"],
2671 instance33["PyDict_MergeFromSeq2"],
2672 instance33["PyDict_New"],
2673 instance33["PyDict_SetItem"],
2674 instance33["PyDict_Update"],
2675 instance33["PyDict_Values"],
2676 instance33["PyErr_CheckSignals"],
2677 instance33["PyErr_Clear"],
2678 instance33["PyErr_DisplayException"],
2679 instance33["PyErr_GetRaisedException"],
2680 instance33["PyErr_GivenExceptionMatches"],
2681 instance33["PyErr_NewExceptionWithDoc"],
2682 instance33["PyErr_Occurred"],
2683 instance33["PyErr_Print"],
2684 instance33["PyErr_PrintEx"],
2685 instance33["PyErr_SetObject"],
2686 instance33["PyErr_SetRaisedException"],
2687 instance33["PyErr_SetString"],
2688 instance33["PyErr_WarnEx"],
2689 instance33["PyErr_WarnExplicit"],
2690 instance33["PyErr_WriteUnraisable"],
2691 instance33["PyEval_EvalCode"],
2692 instance33["PyEval_GetBuiltins"],
2693 instance33["PyEval_RestoreThread"],
2694 instance33["PyEval_SaveThread"],
2695 instance33["PyException_GetCause"],
2696 instance33["PyException_GetTraceback"],
2697 instance33["PyException_SetCause"],
2698 instance33["PyException_SetTraceback"],
2699 instance33["PyFloat_AsDouble"],
2700 instance33["PyFloat_FromDouble"],
2701 instance33["PyFrozenSet_New"],
2702 instance33["PyGILState_Ensure"],
2703 instance33["PyGILState_Release"],
2704 instance33["PyImport_AddModule"],
2705 instance33["PyImport_AppendInittab"],
2706 instance33["PyImport_ExecCodeModuleEx"],
2707 instance33["PyImport_Import"],
2708 instance33["PyInterpreterState_Get"],
2709 instance33["PyInterpreterState_GetID"],
2710 instance33["PyIter_Check"],
2711 instance33["PyIter_Next"],
2712 instance33["PyList_Append"],
2713 instance33["PyList_AsTuple"],
2714 instance33["PyList_GetItem"],
2715 instance33["PyList_GetSlice"],
2716 instance33["PyList_Insert"],
2717 instance33["PyList_New"],
2718 instance33["PyList_Reverse"],
2719 instance33["PyList_SetItem"],
2720 instance33["PyList_Sort"],
2721 instance33["PyLong_AsLong"],
2722 instance33["PyLong_AsLongLong"],
2723 instance33["PyLong_AsUnsignedLongLong"],
2724 instance33["PyLong_FromLong"],
2725 instance33["PyLong_FromLongLong"],
2726 instance33["PyLong_FromSsize_t"],
2727 instance33["PyLong_FromUnsignedLongLong"],
2728 instance33["PyMapping_Keys"],
2729 instance33["PyMemoryView_FromObject"],
2730 instance33["PyModule_Create2"],
2731 instance33["PyModule_GetDict"],
2732 instance33["PyModule_GetFilenameObject"],
2733 instance33["PyModule_GetNameObject"],
2734 instance33["PyModule_New"],
2735 instance33["PyNumber_Absolute"],
2736 instance33["PyNumber_Add"],
2737 instance33["PyNumber_And"],
2738 instance33["PyNumber_Divmod"],
2739 instance33["PyNumber_FloorDivide"],
2740 instance33["PyNumber_Index"],
2741 instance33["PyNumber_Invert"],
2742 instance33["PyNumber_Lshift"],
2743 instance33["PyNumber_MatrixMultiply"],
2744 instance33["PyNumber_Multiply"],
2745 instance33["PyNumber_Negative"],
2746 instance33["PyNumber_Or"],
2747 instance33["PyNumber_Positive"],
2748 instance33["PyNumber_Power"],
2749 instance33["PyNumber_Remainder"],
2750 instance33["PyNumber_Rshift"],
2751 instance33["PyNumber_Subtract"],
2752 instance33["PyNumber_TrueDivide"],
2753 instance33["PyNumber_Xor"],
2754 instance33["PyOS_FSPath"],
2755 instance33["PyObject_Call"],
2756 instance33["PyObject_CallNoArgs"],
2757 instance33["PyObject_DelItem"],
2758 instance33["PyObject_Dir"],
2759 instance33["PyObject_GetAttr"],
2760 instance33["PyObject_GetItem"],
2761 instance33["PyObject_GetIter"],
2762 instance33["PyObject_Hash"],
2763 instance33["PyObject_IsInstance"],
2764 instance33["PyObject_IsSubclass"],
2765 instance33["PyObject_IsTrue"],
2766 instance33["PyObject_LengthHint"],
2767 instance33["PyObject_Repr"],
2768 instance33["PyObject_RichCompare"],
2769 instance33["PyObject_SetAttr"],
2770 instance33["PyObject_SetAttrString"],
2771 instance33["PyObject_SetItem"],
2772 instance33["PyObject_Size"],
2773 instance33["PyObject_Str"],
2774 instance33["PyObject_VectorcallMethod"],
2775 instance33["PySequence_Check"],
2776 instance33["PySequence_Contains"],
2777 instance33["PySequence_Count"],
2778 instance33["PySequence_DelItem"],
2779 instance33["PySequence_Index"],
2780 instance33["PySequence_List"],
2781 instance33["PySequence_SetItem"],
2782 instance33["PySequence_Size"],
2783 instance33["PySet_Add"],
2784 instance33["PySet_Contains"],
2785 instance33["PySet_Discard"],
2786 instance33["PySet_New"],
2787 instance33["PySet_Pop"],
2788 instance33["PySet_Size"],
2789 instance33["PySlice_AdjustIndices"],
2790 instance33["PySlice_New"],
2791 instance33["PySlice_Unpack"],
2792 instance33["PyThreadState_Get"],
2793 instance33["PyTraceBack_Print"],
2794 instance33["PyTuple_GetItem"],
2795 instance33["PyTuple_GetSlice"],
2796 instance33["PyTuple_New"],
2797 instance33["PyType_FromSpec"],
2798 instance33["PyType_GetName"],
2799 instance33["PyType_GetQualName"],
2800 instance33["PyType_IsSubtype"],
2801 instance33["PyUnicodeDecodeError_Create"],
2802 instance33["PyUnicode_AsEncodedString"],
2803 instance33["PyUnicode_AsUTF8AndSize"],
2804 instance33["PyUnicode_AsUTF8String"],
2805 instance33["PyUnicode_DecodeFSDefaultAndSize"],
2806 instance33["PyUnicode_EncodeFSDefault"],
2807 instance33["PyUnicode_FromEncodedObject"],
2808 instance33["PyUnicode_FromStringAndSize"],
2809 instance33["PyUnicode_InternInPlace"],
2810 instance33["PyWeakref_GetObject"],
2811 instance33["PyWeakref_NewProxy"],
2812 instance33["PyWeakref_NewRef"],
2813 instance33["Py_CompileStringExFlags"],
2814 instance33["Py_GetVersion"],
2815 instance33["Py_InitializeEx"],
2816 instance33["Py_IsInitialized"],
2817 instance33["_PyLong_AsByteArray"],
2818 instance33["_PyLong_FromByteArray"],
2819 instance33["_PyLong_NumBits"],
2820 instance33["_PyObject_MakeTpCall"],
2821 instance33["_Py_CheckFunctionResult"],
2822 instance33["_Py_Dealloc"],
2823 instance34["__wasilibc_find_relpath"],
2824 instance34["__wasilibc_get_environ"],
2825 instance34["__wasilibc_reset_preopens"],
2826 instance34["abort"],
2827 instance34["calloc"],
2828 instance34["cbrt"],
2829 instance34["chdir"],
2830 instance34["close"],
2831 instance35["componentize-py#CallIndirect"],
2832 instance34["exit"],
2833 instance34["exp"],
2834 instance34["free"],
2835 instance34["getcwd"],
2836 instance34["getenv"],
2837 instance34["log"],
2838 instance34["log2"],
2839 instance34["malloc"],
2840 instance34["memcmp"],
2841 instance34["memcpy"],
2842 instance34["memmove"],
2843 instance34["memset"],
2844 instance34["posix_memalign"],
2845 instance34["realloc"],
2846 instance34["setenv"],
2847 instance34["strerror_r"],
2848 instance34["strlen"],
2849 instance34["unsetenv"],
2850 instance33["PyByteArray_Concat"],
2851 instance33["PyInit__abc"],
2852 instance33["PyInit__ast"],
2853 instance33["PyInit__asyncio"],
2854 instance33["PyInit__bisect"],
2855 instance33["PyInit__blake2"],
2856 instance33["PyInit__codecs"],
2857 instance33["PyInit__codecs_cn"],
2858 instance33["PyInit__codecs_hk"],
2859 instance33["PyInit__codecs_iso2022"],
2860 instance33["PyInit__codecs_jp"],
2861 instance33["PyInit__codecs_kr"],
2862 instance33["PyInit__codecs_tw"],
2863 instance33["PyInit__collections"],
2864 instance33["PyInit__contextvars"],
2865 instance33["PyInit__crypt"],
2866 instance33["PyInit__csv"],
2867 instance33["PyInit__datetime"],
2868 instance33["PyInit__decimal"],
2869 instance33["PyInit__elementtree"],
2870 instance33["PyInit__functools"],
2871 instance33["PyInit__heapq"],
2872 instance33["PyInit__imp"],
2873 instance33["PyInit__io"],
2874 instance33["PyInit__json"],
2875 instance33["PyInit__locale"],
2876 instance33["PyInit__lsprof"],
2877 instance33["PyInit__md5"],
2878 instance33["PyInit__multibytecodec"],
2879 instance33["PyInit__opcode"],
2880 instance33["PyInit__operator"],
2881 instance33["PyInit__pickle"],
2882 instance33["PyInit__queue"],
2883 instance33["PyInit__random"],
2884 instance33["PyInit__sha1"],
2885 instance33["PyInit__sha2"],
2886 instance33["PyInit__sha3"],
2887 instance33["PyInit__signal"],
2888 instance33["PyInit__socket"],
2889 instance33["PyInit__sre"],
2890 instance33["PyInit__stat"],
2891 instance33["PyInit__statistics"],
2892 instance33["PyInit__string"],
2893 instance33["PyInit__struct"],
2894 instance33["PyInit__symtable"],
2895 instance33["PyInit__thread"],
2896 instance33["PyInit__tokenize"],
2897 instance33["PyInit__tracemalloc"],
2898 instance33["PyInit__typing"],
2899 instance33["PyInit__weakref"],
2900 instance33["PyInit__zoneinfo"],
2901 instance33["PyInit_array"],
2902 instance33["PyInit_atexit"],
2903 instance33["PyInit_audioop"],
2904 instance33["PyInit_binascii"],
2905 instance33["PyInit_cmath"],
2906 instance33["PyInit_errno"],
2907 instance33["PyInit_faulthandler"],
2908 instance33["PyInit_gc"],
2909 instance33["PyInit_itertools"],
2910 instance33["PyInit_math"],
2911 instance33["PyInit_posix"],
2912 instance33["PyInit_pyexpat"],
2913 instance33["PyInit_select"],
2914 instance33["PyInit_time"],
2915 instance33["PyInit_unicodedata"],
2916 instance33["PyMarshal_Init"],
2917 instance33["PyMem_Free"],
2918 instance33["PyMem_Malloc"],
2919 instance33["PyMem_RawFree"],
2920 instance33["PyMem_RawMalloc"],
2921 instance33["PyMem_Realloc"],
2922 instance33["PyNumber_InPlaceAdd"],
2923 instance33["PyNumber_InPlaceAnd"],
2924 instance33["PyNumber_InPlaceFloorDivide"],
2925 instance33["PyNumber_InPlaceLshift"],
2926 instance33["PyNumber_InPlaceMatrixMultiply"],
2927 instance33["PyNumber_InPlaceMultiply"],
2928 instance33["PyNumber_InPlaceOr"],
2929 instance33["PyNumber_InPlaceRemainder"],
2930 instance33["PyNumber_InPlaceRshift"],
2931 instance33["PyNumber_InPlaceSubtract"],
2932 instance33["PyNumber_InPlaceTrueDivide"],
2933 instance33["PyNumber_InPlaceXor"],
2934 instance33["PyObject_ASCII"],
2935 instance33["PyObject_Free"],
2936 instance33["PyObject_GC_Del"],
2937 instance33["PyObject_GenericGetAttr"],
2938 instance33["PyObject_GenericSetAttr"],
2939 instance33["PyObject_HashNotImplemented"],
2940 instance33["PyObject_Malloc"],
2941 instance33["PyObject_Realloc"],
2942 instance33["PyObject_SelfIter"],
2943 instance33["PyType_GenericNew"],
2944 instance33["PyUnicode_AsASCIIString"],
2945 instance33["PyUnicode_Concat"],
2946 instance33["PyUnicode_Contains"],
2947 instance33["PyUnicode_RichCompare"],
2948 instance33["PyVectorcall_Call"],
2949 instance33["Py_GenericAlias"],
2950 instance33["_PyDictView_Intersect"],
2951 instance33["_PyEval_EvalFrameDefault"],
2952 instance33["_PyEval_SliceIndexNotNone"],
2953 instance33["_PyFloat_FormatAdvancedWriter"],
2954 instance33["_PyFunction_Vectorcall"],
2955 instance33["_PyGen_Finalize"],
2956 instance33["_PyLong_FormatAdvancedWriter"],
2957 instance33["_PyObject_NextNotImplemented"],
2958 instance33["_PyTime_gmtime"],
2959 instance33["_PyTime_localtime"],
2960 instance33["_PyUnicode_FormatAdvancedWriter"],
2961 instance33["_PyWarnings_Init"],
2962 instance33["_Py_HashPointer"],
2963 instance33["_Py_add_one_to_index_C"],
2964 instance33["_Py_add_one_to_index_F"],
2965 instance33["_Py_hashtable_compare_direct"],
2966 instance33["_Py_hashtable_destroy"],
2967 instance33["_Py_hashtable_hash_ptr"],
2968 instance38["__SIG_ERR"],
2969 instance38["__SIG_IGN"],
2970 instance34["copysign"],
2971 instance34["cos"],
2972 instance34["exp2"],
2973 instance34["fabs"],
2974 instance34["sin"],
2975 instance34["sqrt"],
2976 instance34["__wasilibc_tell"],
2977 instance34["_Exit"],
2978 instance34["accept"],
2979 instance34["accept4"],
2980 instance34["access"],
2981 instance34["acos"],
2982 instance34["acosh"],
2983 instance34["asin"],
2984 instance34["asinh"],
2985 instance34["atan"],
2986 instance34["atan2"],
2987 instance34["atanh"],
2988 instance34["bind"],
2989 instance34["chmod"],
2990 instance34["clearerr"],
2991 instance36["__clock"],
2992 instance34["clock_getres"],
2993 instance34["clock_gettime"],
2994 instance34["clock_nanosleep"],
2995 instance34["closedir"],
2996 instance34["confstr"],
2997 instance34["connect"],
2998 instance34["cosh"],
2999 instance34["crypt_r"],
3000 instance37["dlerror"],
3001 instance37["dlopen"],
3002 instance37["dlsym"],
3003 instance34["erf"],
3004 instance34["erfc"],
3005 instance34["explicit_bzero"],
3006 instance34["expm1"],
3007 instance34["faccessat"],
3008 instance34["fchmod"],
3009 instance34["fchmodat"],
3010 instance34["fclose"],
3011 instance34["fcntl"],
3012 instance34["fdatasync"],
3013 instance34["fdopen"],
3014 instance34["feof"],
3015 instance34["ferror"],
3016 instance34["fflush"],
3017 instance34["fgets"],
3018 instance34["fileno"],
3019 instance34["fma"],
3020 instance34["fmod"],
3021 instance34["fopen"],
3022 instance34["fopencookie"],
3023 instance34["fpathconf"],
3024 instance34["fprintf"],
3025 instance34["fputc"],
3026 instance34["fputs"],
3027 instance34["fread"],
3028 instance34["freeaddrinfo"],
3029 instance34["frexp"],
3030 instance34["fstat"],
3031 instance34["fstatat"],
3032 instance34["fstatvfs"],
3033 instance34["fsync"],
3034 instance34["ftell"],
3035 instance34["ftruncate"],
3036 instance34["futimens"],
3037 instance34["fwrite"],
3038 instance34["gai_strerror"],
3039 instance34["getaddrinfo"],
3040 instance34["getc"],
3041 instance34["__getentropy"],
3042 instance34["gethostbyaddr"],
3043 instance34["gethostbyname"],
3044 instance34["getnameinfo"],
3045 instance34["getpeername"],
3046 instance34["getprotobyname"],
3047 instance34["getservbyname"],
3048 instance34["getservbyport"],
3049 instance34["getsockname"],
3050 instance34["getsockopt"],
3051 instance34["gettimeofday"],
3052 instance34["gmtime_r"],
3053 instance34["hstrerror"],
3054 instance34["htonl"],
3055 instance34["htons"],
3056 instance34["hypot"],
3057 instance34["inet_aton"],
3058 instance34["inet_ntop"],
3059 instance34["inet_pton"],
3060 instance34["ioctl"],
3061 instance34["isalnum"],
3062 instance34["__isatty"],
3063 instance34["isxdigit"],
3064 instance34["ldexp"],
3065 instance34["link"],
3066 instance34["linkat"],
3067 instance34["listen"],
3068 instance34["localeconv"],
3069 instance34["localtime_r"],
3070 instance34["log10"],
3071 instance34["log1p"],
3072 instance34["lseek"],
3073 instance34["lstat"],
3074 instance34["mbrtowc"],
3075 instance34["mbstowcs"],
3076 instance34["memchr"],
3077 instance34["memrchr"],
3078 instance34["mkdir"],
3079 instance34["mkdirat"],
3080 instance34["mktime"],
3081 instance34["modf"],
3082 instance34["nextafter"],
3083 instance34["__nl_langinfo"],
3084 instance34["ntohl"],
3085 instance34["ntohs"],
3086 instance34["open"],
3087 instance34["openat"],
3088 instance34["opendir"],
3089 instance34["pathconf"],
3090 instance34["poll"],
3091 instance34["posix_fadvise"],
3092 instance34["pow"],
3093 instance34["pread"],
3094 instance34["preadv"],
3095 instance34["printf"],
3096 instance34["puts"],
3097 instance34["pwrite"],
3098 instance34["pwritev"],
3099 instance34["qsort"],
3100 instance38["raise"],
3101 instance34["read"],
3102 instance34["readdir"],
3103 instance34["readlink"],
3104 instance34["readlinkat"],
3105 instance34["readv"],
3106 instance34["realpath"],
3107 instance34["recv"],
3108 instance34["recvfrom"],
3109 instance34["rename"],
3110 instance34["renameat"],
3111 instance34["rewind"],
3112 instance34["rmdir"],
3113 instance34["round"],
3114 instance34["sched_yield"],
3115 instance34["select"],
3116 instance34["send"],
3117 instance34["sendto"],
3118 instance34["setlocale"],
3119 instance34["setsockopt"],
3120 instance34["setvbuf"],
3121 instance34["shutdown"],
3122 instance38["signal"],
3123 instance34["sinh"],
3124 instance34["snprintf"],
3125 instance34["socket"],
3126 instance34["sprintf"],
3127 instance34["stat"],
3128 instance34["statvfs"],
3129 instance34["strchr"],
3130 instance34["strcmp"],
3131 instance34["strcpy"],
3132 instance34["strcspn"],
3133 instance34["strerror"],
3134 instance34["strncat"],
3135 instance34["strncmp"],
3136 instance34["strncpy"],
3137 instance34["strpbrk"],
3138 instance34["strrchr"],
3139 instance38["strsignal"],
3140 instance34["strstr"],
3141 instance34["strtol"],
3142 instance34["strtoul"],
3143 instance34["symlink"],
3144 instance34["symlinkat"],
3145 instance34["sysconf"],
3146 instance34["tan"],
3147 instance34["tanh"],
3148 instance34["time"],
3149 instance36["times"],
3150 instance34["tolower"],
3151 instance34["toupper"],
3152 instance34["truncate"],
3153 instance34["uname"],
3154 instance34["ungetc"],
3155 instance34["unlink"],
3156 instance34["unlinkat"],
3157 instance34["utimensat"],
3158 instance34["vfprintf"],
3159 instance34["vsnprintf"],
3160 instance34["wcschr"],
3161 instance34["wcscmp"],
3162 instance34["wcscoll"],
3163 instance34["wcscpy"],
3164 instance34["wcsftime"],
3165 instance34["wcslen"],
3166 instance34["wcsncmp"],
3167 instance34["wcsncpy"],
3168 instance34["wcsrchr"],
3169 instance34["wcstok"],
3170 instance34["wcstol"],
3171 instance34["wcstombs"],
3172 instance34["wcsxfrm"],
3173 instance34["wmemchr"],
3174 instance34["wmemcmp"],
3175 instance34["write"],
3176 instance34["writev"],
3177 instance34["__wasilibc_find_relpath_alloc"],
3178 instance34["feof"],
3179 instance34["ferror"],
3180 instance34["getc"],
3181 instance34["getc_unlocked"],
3182 instance34["putc"],
3183 instance34["putc_unlocked"],
3184 instance34["freelocale"],
3185 instance34["getdelim"],
3186 instance34["fscanf"],
3187 instance34["fwscanf"],
3188 instance34["scanf"],
3189 instance34["sscanf"],
3190 instance34["swscanf"],
3191 instance34["vfscanf"],
3192 instance34["vfwscanf"],
3193 instance34["vscanf"],
3194 instance34["vsscanf"],
3195 instance34["vswscanf"],
3196 instance34["vwscanf"],
3197 instance34["wscanf"],
3198 instance34["__main_void"],
3199 instance34["getopt"],
3200 instance34["printf"],
3201 instance34["strtod_l"],
3202 instance34["strtof_l"],
3203 instance34["strtoimax"],
3204 instance34["strtol"],
3205 instance34["strtold_l"],
3206 instance34["strtoll"],
3207 instance34["strtoul"],
3208 instance34["strtoull"],
3209 instance34["strtoumax"],
3210 instance34["basename"],
3211 instance34["strerror_r"],
3212 instance34["alphasort"],
3213 instance34["asctime_r"],
3214 instance34["clearerr"],
3215 instance34["creat"],
3216 instance34["remainder"],
3217 instance34["remainderf"],
3218 instance34["__duplocale"],
3219 instance34["feof"],
3220 instance34["ferror"],
3221 instance34["fflush"],
3222 instance34["getc_unlocked"],
3223 instance34["fgetpos"],
3224 instance34["fgets"],
3225 instance34["__fgetwc_unlocked"],
3226 instance34["fgetws"],
3227 instance34["fileno"],
3228 instance34["fopen"],
3229 instance34["__fpurge"],
3230 instance34["putc_unlocked"],
3231 instance34["fputs"],
3232 instance34["__fputwc_unlocked"],
3233 instance34["fputws"],
3234 instance34["fread"],
3235 instance34["freopen"],
3236 instance34["fseeko"],
3237 instance34["fseeko"],
3238 instance34["fsetpos"],
3239 instance34["ftello"],
3240 instance34["ftello"],
3241 instance34["futimesat"],
3242 instance34["fwrite"],
3243 instance34["__fgetwc_unlocked"],
3244 instance34["getwchar"],
3245 instance34["glob"],
3246 instance34["globfree"],
3247 instance34["hcreate_r"],
3248 instance34["hdestroy_r"],
3249 instance34["hsearch_r"],
3250 instance34["printf"],
3251 instance34["__isalnum_l"],
3252 instance34["__isalpha_l"],
3253 instance34["__isblank_l"],
3254 instance34["__iscntrl_l"],
3255 instance34["__isdigit_l"],
3256 instance34["__isgraph_l"],
3257 instance34["__islower_l"],
3258 instance34["__isprint_l"],
3259 instance34["__ispunct_l"],
3260 instance34["__isspace_l"],
3261 instance34["__isupper_l"],
3262 instance34["__iswalnum_l"],
3263 instance34["__iswalpha_l"],
3264 instance34["__iswblank_l"],
3265 instance34["__iswcntrl_l"],
3266 instance34["__iswctype_l"],
3267 instance34["__iswdigit_l"],
3268 instance34["__iswgraph_l"],
3269 instance34["__iswlower_l"],
3270 instance34["__iswprint_l"],
3271 instance34["__iswpunct_l"],
3272 instance34["__iswspace_l"],
3273 instance34["__iswupper_l"],
3274 instance34["__iswxdigit_l"],
3275 instance34["__isxdigit_l"],
3276 instance34["lgamma_r"],
3277 instance34["lgammaf_r"],
3278 instance34["__lgammal_r"],
3279 instance34["__newlocale"],
3280 instance34["nftw"],
3281 instance34["__nl_langinfo_l"],
3282 instance34["exp10"],
3283 instance34["exp10f"],
3284 instance34["exp10l"],
3285 instance34["__fputwc_unlocked"],
3286 instance34["putwchar"],
3287 instance34["qsort_r"],
3288 instance34["__reallocarray"],
3289 instance34["stpcpy"],
3290 instance34["stpncpy"],
3291 instance34["__strcasecmp_l"],
3292 instance34["strchrnul"],
3293 instance34["__strcoll_l"],
3294 instance34["__strerror_l"],
3295 instance34["strftime_l"],
3296 instance34["__strncasecmp_l"],
3297 instance34["__strxfrm_l"],
3298 instance34["__tolower_l"],
3299 instance34["__toupper_l"],
3300 instance34["__towctrans_l"],
3301 instance34["__towlower_l"],
3302 instance34["__towupper_l"],
3303 instance34["__uselocale"],
3304 instance34["versionsort"],
3305 instance34["__wcscoll_l"],
3306 instance34["__wcsftime_l"],
3307 instance34["__wcsxfrm_l"],
3308 instance34["__wctrans_l"],
3309 instance34["__wctype_l"],
3310 instance38["signal"],
3311 instance38["signal"],
3312 ]).exports(store)
3313 core_memory0 = instance1["memory"]
3314 assert(isinstance(core_memory0, wasmtime.Memory))
3315 self._core_memory0 = core_memory0
3316 realloc0 = instance32["cabi_realloc"]
3317 assert(isinstance(realloc0, wasmtime.Func))
3318 self._realloc0 = realloc0
3319 post_return0 = instance32["cabi_post_exports#init"]
3320 assert(isinstance(post_return0, wasmtime.Func))
3321 self._post_return0 = post_return0
3322 realloc1 = instance35["cabi_import_realloc"]
3323 assert(isinstance(realloc1, wasmtime.Func))
3324 self._realloc1 = realloc1
3325 post_return1 = instance35["cabi_post_strings"]
3326 assert(isinstance(post_return1, wasmtime.Func))
3327 self._post_return1 = post_return1
3328 post_return2 = instance35["cabi_post_bytes"]
3329 assert(isinstance(post_return2, wasmtime.Func))
3330 self._post_return2 = post_return2
3331 post_return3 = instance35["cabi_post_ints"]
3332 assert(isinstance(post_return3, wasmtime.Func))
3333 self._post_return3 = post_return3
3334 post_return4 = instance35["cabi_post_string-list"]
3335 assert(isinstance(post_return4, wasmtime.Func))
3336 self._post_return4 = post_return4
3337 lift_callee0 = instance32["exports#init"]
3338 assert(isinstance(lift_callee0, wasmtime.Func))
3339 self.lift_callee0 = lift_callee0
3340 lift_callee1 = instance35["strings"]
3341 assert(isinstance(lift_callee1, wasmtime.Func))
3342 self.lift_callee1 = lift_callee1
3343 lift_callee2 = instance35["bytes"]
3344 assert(isinstance(lift_callee2, wasmtime.Func))
3345 self.lift_callee2 = lift_callee2
3346 lift_callee3 = instance35["ints"]
3347 assert(isinstance(lift_callee3, wasmtime.Func))
3348 self.lift_callee3 = lift_callee3
3349 lift_callee4 = instance35["string-list"]
3350 assert(isinstance(lift_callee4, wasmtime.Func))
3351 self.lift_callee4 = lift_callee4
3352 def strings(self, caller: wasmtime.Store, a: str) -> str:
3353 ptr, len0 = _encode_utf8(a, self._realloc1, self._core_memory0, caller)
3354 ret = self.lift_callee1(caller, ptr, len0)
3355 assert(isinstance(ret, int))
3356 load = _load(ctypes.c_int32, self._core_memory0, caller, ret, 0)
3357 load1 = _load(ctypes.c_int32, self._core_memory0, caller, ret, 4)
3358 ptr2 = load
3359 len3 = load1
3360 list = _decode_utf8(self._core_memory0, caller, ptr2, len3)
3361 tmp = list
3362 self._post_return1(caller, ret)
3363 return tmp
3364 def bytes(self, caller: wasmtime.Store, a: bytes) -> bytes:
3365 ptr, len0 = _list_canon_lower(a, ctypes.c_uint8, 1, 1, self._realloc1, self._core_memory0, caller)
3366 ret = self.lift_callee2(caller, ptr, len0)
3367 assert(isinstance(ret, int))
3368 load = _load(ctypes.c_int32, self._core_memory0, caller, ret, 0)
3369 load1 = _load(ctypes.c_int32, self._core_memory0, caller, ret, 4)
3370 ptr2 = load
3371 len3 = load1
3372 list = cast(bytes, _list_canon_lift(ptr2, len3, 1, ctypes.c_uint8, self._core_memory0, caller))
3373 tmp = list
3374 self._post_return2(caller, ret)
3375 return tmp
3376 def ints(self, caller: wasmtime.Store, a: List[int]) -> List[int]:
3377 ptr, len0 = _list_canon_lower(a, ctypes.c_uint32, 4, 4, self._realloc1, self._core_memory0, caller)
3378 ret = self.lift_callee3(caller, ptr, len0)
3379 assert(isinstance(ret, int))
3380 load = _load(ctypes.c_int32, self._core_memory0, caller, ret, 0)
3381 load1 = _load(ctypes.c_int32, self._core_memory0, caller, ret, 4)
3382 ptr2 = load
3383 len3 = load1
3384 list = cast(List[int], _list_canon_lift(ptr2, len3, 4, ctypes.c_uint32, self._core_memory0, caller))
3385 tmp = list
3386 self._post_return3(caller, ret)
3387 return tmp
3388 def string_list(self, caller: wasmtime.Store, a: List[str]) -> List[str]:
3389 vec = a
3390 len2 = len(vec)
3391 result = self._realloc1(caller, 0, 0, 4, len2 * 8)
3392 assert(isinstance(result, int))
3393 for i3 in range(0, len2):
3394 e = vec[i3]
3395 base0 = result + i3 * 8
3396 ptr, len1 = _encode_utf8(e, self._realloc1, self._core_memory0, caller)
3397 _store(ctypes.c_uint32, self._core_memory0, caller, base0, 4, len1)
3398 _store(ctypes.c_uint32, self._core_memory0, caller, base0, 0, ptr)
3399 ret = self.lift_callee4(caller, result, len2)
3400 assert(isinstance(ret, int))
3401 load = _load(ctypes.c_int32, self._core_memory0, caller, ret, 0)
3402 load4 = _load(ctypes.c_int32, self._core_memory0, caller, ret, 4)
3403 ptr10 = load
3404 len11 = load4
3405 result12: List[str] = []
3406 for i13 in range(0, len11):
3407 base5 = ptr10 + i13 * 8
3408 load6 = _load(ctypes.c_int32, self._core_memory0, caller, base5, 0)
3409 load7 = _load(ctypes.c_int32, self._core_memory0, caller, base5, 4)
3410 ptr8 = load6
3411 len9 = load7
3412 list = _decode_utf8(self._core_memory0, caller, ptr8, len9)
3413 result12.append(list)
3414 tmp = result12
3415 self._post_return4(caller, ret)
3416 return tmp
3417 def exports(self) -> exports.Exports:
3418 return exports.Exports(self)