shuishen
2022-11-02 764cb58899b8ca0e9632a5e83c6950569442c41c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
/**
 * Cesium - https://github.com/CesiumGS/cesium
 *
 * Copyright 2011-2020 Cesium Contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 * Columbus View (Pat. Pend.)
 *
 * Portions licensed separately.
 * See https://github.com/CesiumGS/cesium/blob/master/LICENSE.md for full licensing details.
 */
define(['exports'], function (exports) { 'use strict';
 
    // Copyright 2010 The Emscripten Authors.  All rights reserved.
    // Emscripten is available under two separate licenses, the MIT license and the
    // University of Illinois/NCSA Open Source License.  Both these licenses can be
    // found in the LICENSE file.
 
    // The Module object: Our interface to the outside world. We import
    // and export values on it. There are various ways Module can be used:
    // 1. Not defined. We create it here
    // 2. A function parameter, function(Module) { ..generated code.. }
    // 3. pre-run appended it, var Module = {}; ..generated code..
    // 4. External script tag defines var Module.
    // We need to check if Module already exists (e.g. case 3 above).
    // Substitution will be replaced with actual code on later stage of the build,
    // this way Closure Compiler will not mangle it (e.g. case 4. above).
    // Note that if you want to run closure, and also to use Module
    // after the generated code, you will need to define   var Module = {};
    // before the code. Then that object will be used in the code, and you
    // can continue to use Module afterwards as well.
    if (typeof WebAssembly !== 'undefined') {
        var Module = typeof Module !== 'undefined' ? Module : {};
 
        // --pre-jses are emitted after the Module integration code, so that they can
        // refer to Module (if they choose; they can also define Module)
        // {{PRE_JSES}}
 
        // Sometimes an existing Module object exists with properties
        // meant to overwrite the default module functionality. Here
        // we collect those properties and reapply _after_ we configure
        // the current environment's defaults to avoid having to be so
        // defensive during initialization.
        var moduleOverrides = {};
        var key;
        for (key in Module) {
          if (Module.hasOwnProperty(key)) {
            moduleOverrides[key] = Module[key];
          }
        }
 
        Module['arguments'] = [];
        Module['thisProgram'] = './this.program';
        Module['quit'] = function(status, toThrow) {
          throw toThrow;
        };
        Module['preRun'] = [];
        Module['postRun'] = [];
 
        // Determine the runtime environment we are in. You can customize this by
        // setting the ENVIRONMENT setting at compile time (see settings.js).
 
        var ENVIRONMENT_IS_WEB = false;
        var ENVIRONMENT_IS_WORKER = false;
        var ENVIRONMENT_IS_NODE = false;
        var ENVIRONMENT_HAS_NODE = false;
        var ENVIRONMENT_IS_SHELL = false;
        ENVIRONMENT_IS_WEB = typeof window === 'object';
        ENVIRONMENT_IS_WORKER = typeof importScripts === 'function';
        // A web environment like Electron.js can have Node enabled, so we must
        // distinguish between Node-enabled environments and Node environments per se.
        // This will allow the former to do things like mount NODEFS.
        ENVIRONMENT_HAS_NODE = typeof process === 'object' && typeof require === 'function';
        ENVIRONMENT_IS_NODE = ENVIRONMENT_HAS_NODE && !ENVIRONMENT_IS_WEB && !ENVIRONMENT_IS_WORKER;
        ENVIRONMENT_IS_SHELL = !ENVIRONMENT_IS_WEB && !ENVIRONMENT_IS_NODE && !ENVIRONMENT_IS_WORKER;
 
        if (Module['ENVIRONMENT']) {
          throw new Error('Module.ENVIRONMENT has been deprecated. To force the environment, use the ENVIRONMENT compile-time option (for example, -s ENVIRONMENT=web or -s ENVIRONMENT=node)');
        }
 
 
        // Three configurations we can be running in:
        // 1) We could be the application main() thread running in the main JS UI thread. (ENVIRONMENT_IS_WORKER == false and ENVIRONMENT_IS_PTHREAD == false)
        // 2) We could be the application main() thread proxied to worker. (with Emscripten -s PROXY_TO_WORKER=1) (ENVIRONMENT_IS_WORKER == true, ENVIRONMENT_IS_PTHREAD == false)
        // 3) We could be an application pthread running in a worker. (ENVIRONMENT_IS_WORKER == true and ENVIRONMENT_IS_PTHREAD == true)
 
 
 
 
        // `/` should be present at the end if `scriptDirectory` is not empty
        var scriptDirectory = '';
        function locateFile(path) {
          if (Module['locateFile']) {
            return Module['locateFile'](path, scriptDirectory);
          } else {
            return scriptDirectory + path;
          }
        }
 
        if (ENVIRONMENT_IS_NODE) {
          scriptDirectory = __dirname + '/';
 
          // Expose functionality in the same simple way that the shells work
          // Note that we pollute the global namespace here, otherwise we break in node
          var nodeFS;
          var nodePath;
 
          Module['read'] = function shell_read(filename, binary) {
            var ret;
              if (!nodeFS) nodeFS = require('fs');
              if (!nodePath) nodePath = require('path');
              filename = nodePath['normalize'](filename);
              ret = nodeFS['readFileSync'](filename);
            return binary ? ret : ret.toString();
          };
 
          Module['readBinary'] = function readBinary(filename) {
            var ret = Module['read'](filename, true);
            if (!ret.buffer) {
              ret = new Uint8Array(ret);
            }
            assert(ret.buffer);
            return ret;
          };
 
          if (process['argv'].length > 1) {
            Module['thisProgram'] = process['argv'][1].replace(/\\/g, '/');
          }
 
          Module['arguments'] = process['argv'].slice(2);
 
          if (typeof module !== 'undefined') {
            module['exports'] = Module;
          }
 
          process['on']('uncaughtException', function(ex) {
            // suppress ExitStatus exceptions from showing an error
            if (!(ex instanceof ExitStatus)) {
              throw ex;
            }
          });
          // Currently node will swallow unhandled rejections, but this behavior is
          // deprecated, and in the future it will exit with error status.
          process['on']('unhandledRejection', abort);
 
          Module['quit'] = function(status) {
            process['exit'](status);
          };
 
          Module['inspect'] = function () { return '[Emscripten Module object]'; };
        } else
        if (ENVIRONMENT_IS_SHELL) {
 
 
          if (typeof read != 'undefined') {
            Module['read'] = function shell_read(f) {
              return read(f);
            };
          }
 
          Module['readBinary'] = function readBinary(f) {
            var data;
            if (typeof readbuffer === 'function') {
              return new Uint8Array(readbuffer(f));
            }
            data = read(f, 'binary');
            assert(typeof data === 'object');
            return data;
          };
 
          if (typeof scriptArgs != 'undefined') {
            Module['arguments'] = scriptArgs;
          } else if (typeof arguments != 'undefined') {
            Module['arguments'] = arguments;
          }
 
          if (typeof quit === 'function') {
            Module['quit'] = function(status) {
              quit(status);
            };
          }
        } else
        if (ENVIRONMENT_IS_WEB || ENVIRONMENT_IS_WORKER) {
          if (ENVIRONMENT_IS_WORKER) { // Check worker, not web, since window could be polyfilled
            scriptDirectory = self.location.href;
          } else if (document.currentScript) { // web
            scriptDirectory = document.currentScript.src;
          }
          // blob urls look like blob:http://site.com/etc/etc and we cannot infer anything from them.
          // otherwise, slice off the final part of the url to find the script directory.
          // if scriptDirectory does not contain a slash, lastIndexOf will return -1,
          // and scriptDirectory will correctly be replaced with an empty string.
          if (scriptDirectory.indexOf('blob:') !== 0) {
            scriptDirectory = scriptDirectory.substr(0, scriptDirectory.lastIndexOf('/')+1);
          } else {
            scriptDirectory = '';
          }
 
 
          Module['read'] = function shell_read(url) {
              var xhr = new XMLHttpRequest();
              xhr.open('GET', url, false);
              xhr.send(null);
              return xhr.responseText;
          };
 
          if (ENVIRONMENT_IS_WORKER) {
            Module['readBinary'] = function readBinary(url) {
                var xhr = new XMLHttpRequest();
                xhr.open('GET', url, false);
                xhr.responseType = 'arraybuffer';
                xhr.send(null);
                return new Uint8Array(xhr.response);
            };
          }
 
          Module['readAsync'] = function readAsync(url, onload, onerror) {
            var xhr = new XMLHttpRequest();
            xhr.open('GET', url, true);
            xhr.responseType = 'arraybuffer';
            xhr.onload = function xhr_onload() {
              if (xhr.status == 200 || (xhr.status == 0 && xhr.response)) { // file URLs can return 0
                onload(xhr.response);
                return;
              }
              onerror();
            };
            xhr.onerror = onerror;
            xhr.send(null);
          };
 
          Module['setWindowTitle'] = function(title) { document.title = title; };
        } else
        {
          throw new Error('environment detection error');
        }
 
        // Set up the out() and err() hooks, which are how we can print to stdout or
        // stderr, respectively.
        // If the user provided Module.print or printErr, use that. Otherwise,
        // console.log is checked first, as 'print' on the web will open a print dialogue
        // printErr is preferable to console.warn (works better in shells)
        // bind(console) is necessary to fix IE/Edge closed dev tools panel behavior.
        var out = Module['print'] || (typeof console !== 'undefined' ? console.log.bind(console) : (typeof print !== 'undefined' ? print : null));
        var err = Module['printErr'] || (typeof printErr !== 'undefined' ? printErr : ((typeof console !== 'undefined' && console.warn.bind(console)) || out));
 
        // Merge back in the overrides
        for (key in moduleOverrides) {
          if (moduleOverrides.hasOwnProperty(key)) {
            Module[key] = moduleOverrides[key];
          }
        }
        // Free the object hierarchy contained in the overrides, this lets the GC
        // reclaim data used e.g. in memoryInitializerRequest, which is a large typed array.
        moduleOverrides = undefined;
 
        // perform assertions in shell.js after we set up out() and err(), as otherwise if an assertion fails it cannot print the message
        assert(typeof Module['memoryInitializerPrefixURL'] === 'undefined', 'Module.memoryInitializerPrefixURL option was removed, use Module.locateFile instead');
        assert(typeof Module['pthreadMainPrefixURL'] === 'undefined', 'Module.pthreadMainPrefixURL option was removed, use Module.locateFile instead');
        assert(typeof Module['cdInitializerPrefixURL'] === 'undefined', 'Module.cdInitializerPrefixURL option was removed, use Module.locateFile instead');
        assert(typeof Module['filePackagePrefixURL'] === 'undefined', 'Module.filePackagePrefixURL option was removed, use Module.locateFile instead');
 
        // stack management, and other functionality that is provided by the compiled code,
        // should not be used before it is ready
        stackSave = stackRestore = stackAlloc = function() {
          abort('cannot use the stack before compiled code is ready to run, and has provided stack access');
        };
 
        function warnOnce(text) {
          if (!warnOnce.shown) warnOnce.shown = {};
          if (!warnOnce.shown[text]) {
            warnOnce.shown[text] = 1;
            //err(text);
          }
        }
 
        var asm2wasmImports = { // special asm2wasm imports
            "f64-rem": function(x, y) {
                return x % y;
            },
            "debugger": function() {
                debugger;
            }
        };
        var functionPointers = new Array(0);
 
        var tempRet0 = 0;
 
        var setTempRet0 = function(value) {
          tempRet0 = value;
        };
 
        var getTempRet0 = function() {
          return tempRet0;
        };
 
 
 
 
        // === Preamble library stuff ===
 
        // Documentation for the public APIs defined in this file must be updated in:
        //    site/source/docs/api_reference/preamble.js.rst
        // A prebuilt local version of the documentation is available at:
        //    site/build/text/docs/api_reference/preamble.js.txt
        // You can also build docs locally as HTML or other formats in site/
        // An online HTML version (which may be of a different version of Emscripten)
        //    is up at http://kripken.github.io/emscripten-site/docs/api_reference/preamble.js.html
 
 
 
        if (typeof WebAssembly !== 'object') {
          abort('No WebAssembly support found. Build with -s WASM=0 to target JavaScript instead.');
        }
 
        /** @type {function(number, string, boolean=)} */
        function getValue(ptr, type, noSafe) {
          type = type || 'i8';
          if (type.charAt(type.length-1) === '*') type = 'i32'; // pointers are 32-bit
            switch(type) {
              case 'i1': return HEAP8[((ptr)>>0)];
              case 'i8': return HEAP8[((ptr)>>0)];
              case 'i16': return HEAP16[((ptr)>>1)];
              case 'i32': return HEAP32[((ptr)>>2)];
              case 'i64': return HEAP32[((ptr)>>2)];
              case 'float': return HEAPF32[((ptr)>>2)];
              case 'double': return HEAPF64[((ptr)>>3)];
              default: abort('invalid type for getValue: ' + type);
            }
          return null;
        }
 
 
 
 
 
        // Wasm globals
 
        var wasmMemory;
 
        // Potentially used for direct table calls.
        var wasmTable;
 
 
        //========================================
        // Runtime essentials
        //========================================
 
        // whether we are quitting the application. no code should run after this.
        // set in exit() and abort()
        var ABORT = false;
 
        /** @type {function(*, string=)} */
        function assert(condition, text) {
          if (!condition) {
            abort('Assertion failed: ' + text);
          }
        }
 
        // Returns the C function with a specified identifier (for C++, you need to do manual name mangling)
        function getCFunc(ident) {
          var func = Module['_' + ident]; // closure exported function
          assert(func, 'Cannot call unknown function ' + ident + ', make sure it is exported');
          return func;
        }
 
        // C calling interface.
        function ccall(ident, returnType, argTypes, args, opts) {
          // For fast lookup of conversion functions
          var toC = {
            'string': function(str) {
              var ret = 0;
              if (str !== null && str !== undefined && str !== 0) { // null string
                // at most 4 bytes per UTF-8 code point, +1 for the trailing '\0'
                var len = (str.length << 2) + 1;
                ret = stackAlloc(len);
                stringToUTF8(str, ret, len);
              }
              return ret;
            },
            'array': function(arr) {
              var ret = stackAlloc(arr.length);
              writeArrayToMemory(arr, ret);
              return ret;
            }
          };
 
          function convertReturnValue(ret) {
            if (returnType === 'string') return UTF8ToString(ret);
            if (returnType === 'boolean') return Boolean(ret);
            return ret;
          }
 
          var func = getCFunc(ident);
          var cArgs = [];
          var stack = 0;
          assert(returnType !== 'array', 'Return type should not be "array".');
          if (args) {
            for (var i = 0; i < args.length; i++) {
              var converter = toC[argTypes[i]];
              if (converter) {
                if (stack === 0) stack = stackSave();
                cArgs[i] = converter(args[i]);
              } else {
                cArgs[i] = args[i];
              }
            }
          }
          var ret = func.apply(null, cArgs);
          ret = convertReturnValue(ret);
          if (stack !== 0) stackRestore(stack);
          return ret;
        }
 
        function cwrap(ident, returnType, argTypes, opts) {
          return function() {
            return ccall(ident, returnType, argTypes, arguments);
          }
        }
 
 
        // Given a pointer 'ptr' to a null-terminated UTF8-encoded string in the given array that contains uint8 values, returns
        // a copy of that string as a Javascript String object.
 
        var UTF8Decoder = typeof TextDecoder !== 'undefined' ? new TextDecoder('utf8') : undefined;
 
        /**
         * @param {number} idx
         * @param {number=} maxBytesToRead
         * @return {string}
         */
        function UTF8ArrayToString(u8Array, idx, maxBytesToRead) {
          var endIdx = idx + maxBytesToRead;
          var endPtr = idx;
          // TextDecoder needs to know the byte length in advance, it doesn't stop on null terminator by itself.
          // Also, use the length info to avoid running tiny strings through TextDecoder, since .subarray() allocates garbage.
          // (As a tiny code save trick, compare endPtr against endIdx using a negation, so that undefined means Infinity)
          while (u8Array[endPtr] && !(endPtr >= endIdx)) ++endPtr;
 
          if (endPtr - idx > 16 && u8Array.subarray && UTF8Decoder) {
            return UTF8Decoder.decode(u8Array.subarray(idx, endPtr));
          } else {
            var str = '';
            // If building with TextDecoder, we have already computed the string length above, so test loop end condition against that
            while (idx < endPtr) {
              // For UTF8 byte structure, see:
              // http://en.wikipedia.org/wiki/UTF-8#Description
              // https://www.ietf.org/rfc/rfc2279.txt
              // https://tools.ietf.org/html/rfc3629
              var u0 = u8Array[idx++];
              if (!(u0 & 0x80)) { str += String.fromCharCode(u0); continue; }
              var u1 = u8Array[idx++] & 63;
              if ((u0 & 0xE0) == 0xC0) { str += String.fromCharCode(((u0 & 31) << 6) | u1); continue; }
              var u2 = u8Array[idx++] & 63;
              if ((u0 & 0xF0) == 0xE0) {
                u0 = ((u0 & 15) << 12) | (u1 << 6) | u2;
              } else {
                if ((u0 & 0xF8) != 0xF0) warnOnce('Invalid UTF-8 leading byte 0x' + u0.toString(16) + ' encountered when deserializing a UTF-8 string on the asm.js/wasm heap to a JS string!');
                u0 = ((u0 & 7) << 18) | (u1 << 12) | (u2 << 6) | (u8Array[idx++] & 63);
              }
 
              if (u0 < 0x10000) {
                str += String.fromCharCode(u0);
              } else {
                var ch = u0 - 0x10000;
                str += String.fromCharCode(0xD800 | (ch >> 10), 0xDC00 | (ch & 0x3FF));
              }
            }
          }
          return str;
        }
 
        // Given a pointer 'ptr' to a null-terminated UTF8-encoded string in the emscripten HEAP, returns a
        // copy of that string as a Javascript String object.
        // maxBytesToRead: an optional length that specifies the maximum number of bytes to read. You can omit
        //                 this parameter to scan the string until the first \0 byte. If maxBytesToRead is
        //                 passed, and the string at [ptr, ptr+maxBytesToReadr[ contains a null byte in the
        //                 middle, then the string will cut short at that byte index (i.e. maxBytesToRead will
        //                 not produce a string of exact length [ptr, ptr+maxBytesToRead[)
        //                 N.B. mixing frequent uses of UTF8ToString() with and without maxBytesToRead may
        //                 throw JS JIT optimizations off, so it is worth to consider consistently using one
        //                 style or the other.
        /**
         * @param {number} ptr
         * @param {number=} maxBytesToRead
         * @return {string}
         */
        function UTF8ToString(ptr, maxBytesToRead) {
          return ptr ? UTF8ArrayToString(HEAPU8, ptr, maxBytesToRead) : '';
        }
 
        // Copies the given Javascript String object 'str' to the given byte array at address 'outIdx',
        // encoded in UTF8 form and null-terminated. The copy will require at most str.length*4+1 bytes of space in the HEAP.
        // Use the function lengthBytesUTF8 to compute the exact number of bytes (excluding null terminator) that this function will write.
        // Parameters:
        //   str: the Javascript string to copy.
        //   outU8Array: the array to copy to. Each index in this array is assumed to be one 8-byte element.
        //   outIdx: The starting offset in the array to begin the copying.
        //   maxBytesToWrite: The maximum number of bytes this function can write to the array.
        //                    This count should include the null terminator,
        //                    i.e. if maxBytesToWrite=1, only the null terminator will be written and nothing else.
        //                    maxBytesToWrite=0 does not write any bytes to the output, not even the null terminator.
        // Returns the number of bytes written, EXCLUDING the null terminator.
 
        function stringToUTF8Array(str, outU8Array, outIdx, maxBytesToWrite) {
          if (!(maxBytesToWrite > 0)) // Parameter maxBytesToWrite is not optional. Negative values, 0, null, undefined and false each don't write out any bytes.
            return 0;
 
          var startIdx = outIdx;
          var endIdx = outIdx + maxBytesToWrite - 1; // -1 for string null terminator.
          for (var i = 0; i < str.length; ++i) {
            // Gotcha: charCodeAt returns a 16-bit word that is a UTF-16 encoded code unit, not a Unicode code point of the character! So decode UTF16->UTF32->UTF8.
            // See http://unicode.org/faq/utf_bom.html#utf16-3
            // For UTF8 byte structure, see http://en.wikipedia.org/wiki/UTF-8#Description and https://www.ietf.org/rfc/rfc2279.txt and https://tools.ietf.org/html/rfc3629
            var u = str.charCodeAt(i); // possibly a lead surrogate
            if (u >= 0xD800 && u <= 0xDFFF) {
              var u1 = str.charCodeAt(++i);
              u = 0x10000 + ((u & 0x3FF) << 10) | (u1 & 0x3FF);
            }
            if (u <= 0x7F) {
              if (outIdx >= endIdx) break;
              outU8Array[outIdx++] = u;
            } else if (u <= 0x7FF) {
              if (outIdx + 1 >= endIdx) break;
              outU8Array[outIdx++] = 0xC0 | (u >> 6);
              outU8Array[outIdx++] = 0x80 | (u & 63);
            } else if (u <= 0xFFFF) {
              if (outIdx + 2 >= endIdx) break;
              outU8Array[outIdx++] = 0xE0 | (u >> 12);
              outU8Array[outIdx++] = 0x80 | ((u >> 6) & 63);
              outU8Array[outIdx++] = 0x80 | (u & 63);
            } else {
              if (outIdx + 3 >= endIdx) break;
              if (u >= 0x200000) warnOnce('Invalid Unicode code point 0x' + u.toString(16) + ' encountered when serializing a JS string to an UTF-8 string on the asm.js/wasm heap! (Valid unicode code points should be in range 0-0x1FFFFF).');
              outU8Array[outIdx++] = 0xF0 | (u >> 18);
              outU8Array[outIdx++] = 0x80 | ((u >> 12) & 63);
              outU8Array[outIdx++] = 0x80 | ((u >> 6) & 63);
              outU8Array[outIdx++] = 0x80 | (u & 63);
            }
          }
          // Null-terminate the pointer to the buffer.
          outU8Array[outIdx] = 0;
          return outIdx - startIdx;
        }
 
        // Copies the given Javascript String object 'str' to the emscripten HEAP at address 'outPtr',
        // null-terminated and encoded in UTF8 form. The copy will require at most str.length*4+1 bytes of space in the HEAP.
        // Use the function lengthBytesUTF8 to compute the exact number of bytes (excluding null terminator) that this function will write.
        // Returns the number of bytes written, EXCLUDING the null terminator.
 
        function stringToUTF8(str, outPtr, maxBytesToWrite) {
          assert(typeof maxBytesToWrite == 'number', 'stringToUTF8(str, outPtr, maxBytesToWrite) is missing the third parameter that specifies the length of the output buffer!');
          return stringToUTF8Array(str, HEAPU8,outPtr, maxBytesToWrite);
        }
 
 
        // Given a pointer 'ptr' to a null-terminated UTF16LE-encoded string in the emscripten HEAP, returns
        // a copy of that string as a Javascript String object.
 
        var UTF16Decoder = typeof TextDecoder !== 'undefined' ? new TextDecoder('utf-16le') : undefined;
 
        function writeArrayToMemory(array, buffer) {
          assert(array.length >= 0, 'writeArrayToMemory array must have a length (should be an array or typed array)');
          HEAP8.set(array, buffer);
        }
 
 
 
 
 
        function demangle(func) {
          return func;
        }
 
        function demangleAll(text) {
          var regex =
            /__Z[\w\d_]+/g;
          return text.replace(regex,
            function(x) {
              var y = demangle(x);
              return x === y ? x : (y + ' [' + x + ']');
            });
        }
 
        function jsStackTrace() {
          var err = new Error();
          if (!err.stack) {
            // IE10+ special cases: It does have callstack info, but it is only populated if an Error object is thrown,
            // so try that as a special-case.
            try {
              throw new Error(0);
            } catch(e) {
              err = e;
            }
            if (!err.stack) {
              return '(no stack trace available)';
            }
          }
          return err.stack.toString();
        }
 
        function stackTrace() {
          var js = jsStackTrace();
          if (Module['extraStackTrace']) js += '\n' + Module['extraStackTrace']();
          return demangleAll(js);
        }
        var WASM_PAGE_SIZE = 65536;
 
        function alignUp(x, multiple) {
          if (x % multiple > 0) {
            x += multiple - (x % multiple);
          }
          return x;
        }
 
        var /** @type {ArrayBuffer} */
          buffer,
        /** @type {Int8Array} */
          HEAP8,
        /** @type {Uint8Array} */
          HEAPU8,
        /** @type {Int16Array} */
          HEAP16,
        /** @type {Uint16Array} */
          HEAPU16,
        /** @type {Int32Array} */
          HEAP32,
        /** @type {Uint32Array} */
          HEAPU32,
        /** @type {Float32Array} */
          HEAPF32,
        /** @type {Float64Array} */
          HEAPF64;
 
        function updateGlobalBufferViews() {
          Module['HEAP8'] = HEAP8 = new Int8Array(buffer);
          Module['HEAP16'] = HEAP16 = new Int16Array(buffer);
          Module['HEAP32'] = HEAP32 = new Int32Array(buffer);
          Module['HEAPU8'] = HEAPU8 = new Uint8Array(buffer);
          Module['HEAPU16'] = HEAPU16 = new Uint16Array(buffer);
          Module['HEAPU32'] = HEAPU32 = new Uint32Array(buffer);
          Module['HEAPF32'] = HEAPF32 = new Float32Array(buffer);
          Module['HEAPF64'] = HEAPF64 = new Float64Array(buffer);
        }
 
 
        var STACK_BASE = 15104,
            STACK_MAX = 5257984,
            DYNAMIC_BASE = 5257984,
            DYNAMICTOP_PTR = 15072;
 
        assert(STACK_BASE % 16 === 0, 'stack must start aligned');
        assert(DYNAMIC_BASE % 16 === 0, 'heap must start aligned');
 
 
 
        var TOTAL_STACK = 5242880;
        if (Module['TOTAL_STACK']) assert(TOTAL_STACK === Module['TOTAL_STACK'], 'the stack size can no longer be determined at runtime');
 
        var INITIAL_TOTAL_MEMORY = Module['TOTAL_MEMORY'] || 16777216;
        if (INITIAL_TOTAL_MEMORY < TOTAL_STACK) err('TOTAL_MEMORY should be larger than TOTAL_STACK, was ' + INITIAL_TOTAL_MEMORY + '! (TOTAL_STACK=' + TOTAL_STACK + ')');
 
        // Initialize the runtime's memory
        // check for full engine support (use string 'subarray' to avoid closure compiler confusion)
        assert(typeof Int32Array !== 'undefined' && typeof Float64Array !== 'undefined' && Int32Array.prototype.subarray !== undefined && Int32Array.prototype.set !== undefined,
               'JS engine does not provide full typed array support');
 
 
 
 
 
 
 
        // Use a provided buffer, if there is one, or else allocate a new one
        if (Module['buffer']) {
          buffer = Module['buffer'];
          assert(buffer.byteLength === INITIAL_TOTAL_MEMORY, 'provided buffer should be ' + INITIAL_TOTAL_MEMORY + ' bytes, but it is ' + buffer.byteLength);
        } else {
          // Use a WebAssembly memory where available
          if (typeof WebAssembly === 'object' && typeof WebAssembly.Memory === 'function') {
            assert(INITIAL_TOTAL_MEMORY % WASM_PAGE_SIZE === 0);
            wasmMemory = new WebAssembly.Memory({ 'initial': INITIAL_TOTAL_MEMORY / WASM_PAGE_SIZE });
            buffer = wasmMemory.buffer;
          } else
          {
            buffer = new ArrayBuffer(INITIAL_TOTAL_MEMORY);
          }
          assert(buffer.byteLength === INITIAL_TOTAL_MEMORY);
        }
        updateGlobalBufferViews();
 
 
        HEAP32[DYNAMICTOP_PTR>>2] = DYNAMIC_BASE;
 
 
        // Initializes the stack cookie. Called at the startup of main and at the startup of each thread in pthreads mode.
        function writeStackCookie() {
          assert((STACK_MAX & 3) == 0);
          HEAPU32[(STACK_MAX >> 2)-1] = 0x02135467;
          HEAPU32[(STACK_MAX >> 2)-2] = 0x89BACDFE;
        }
 
        function checkStackCookie() {
          if (HEAPU32[(STACK_MAX >> 2)-1] != 0x02135467 || HEAPU32[(STACK_MAX >> 2)-2] != 0x89BACDFE) {
            abort('Stack overflow! Stack cookie has been overwritten, expected hex dwords 0x89BACDFE and 0x02135467, but received 0x' + HEAPU32[(STACK_MAX >> 2)-2].toString(16) + ' ' + HEAPU32[(STACK_MAX >> 2)-1].toString(16));
          }
          // Also test the global address 0 for integrity.
          if (HEAP32[0] !== 0x63736d65 /* 'emsc' */) abort('Runtime error: The application has corrupted its heap memory area (address zero)!');
        }
 
        function abortStackOverflow(allocSize) {
          abort('Stack overflow! Attempted to allocate ' + allocSize + ' bytes on the stack, but stack has only ' + (STACK_MAX - stackSave() + allocSize) + ' bytes available!');
        }
 
 
          HEAP32[0] = 0x63736d65; /* 'emsc' */
 
 
 
        // Endianness check (note: assumes compiler arch was little-endian)
        HEAP16[1] = 0x6373;
        if (HEAPU8[2] !== 0x73 || HEAPU8[3] !== 0x63) throw 'Runtime error: expected the system to be little-endian!';
 
        function callRuntimeCallbacks(callbacks) {
          while(callbacks.length > 0) {
            var callback = callbacks.shift();
            if (typeof callback == 'function') {
              callback();
              continue;
            }
            var func = callback.func;
            if (typeof func === 'number') {
              if (callback.arg === undefined) {
                Module['dynCall_v'](func);
              } else {
                Module['dynCall_vi'](func, callback.arg);
              }
            } else {
              func(callback.arg === undefined ? null : callback.arg);
            }
          }
        }
 
        var __ATPRERUN__  = []; // functions called before the runtime is initialized
        var __ATINIT__    = []; // functions called during startup
        var __ATMAIN__    = []; // functions called when main() is to be run
        var __ATPOSTRUN__ = []; // functions called after the main() is called
 
        var runtimeInitialized = false;
        var runtimeExited = false;
 
 
        function preRun() {
          // compatibility - merge in anything from Module['preRun'] at this time
          if (Module['preRun']) {
            if (typeof Module['preRun'] == 'function') Module['preRun'] = [Module['preRun']];
            while (Module['preRun'].length) {
              addOnPreRun(Module['preRun'].shift());
            }
          }
          callRuntimeCallbacks(__ATPRERUN__);
        }
 
        function ensureInitRuntime() {
          checkStackCookie();
          if (runtimeInitialized) return;
          runtimeInitialized = true;
          
          callRuntimeCallbacks(__ATINIT__);
        }
 
        function preMain() {
          checkStackCookie();
          
          callRuntimeCallbacks(__ATMAIN__);
        }
 
        function postRun() {
          checkStackCookie();
          // compatibility - merge in anything from Module['postRun'] at this time
          if (Module['postRun']) {
            if (typeof Module['postRun'] == 'function') Module['postRun'] = [Module['postRun']];
            while (Module['postRun'].length) {
              addOnPostRun(Module['postRun'].shift());
            }
          }
          callRuntimeCallbacks(__ATPOSTRUN__);
        }
 
        function addOnPreRun(cb) {
          __ATPRERUN__.unshift(cb);
        }
 
        function addOnPostRun(cb) {
          __ATPOSTRUN__.unshift(cb);
        }
 
 
        assert(Math.imul, 'This browser does not support Math.imul(), build with LEGACY_VM_SUPPORT or POLYFILL_OLD_MATH_FUNCTIONS to add in a polyfill');
        assert(Math.fround, 'This browser does not support Math.fround(), build with LEGACY_VM_SUPPORT or POLYFILL_OLD_MATH_FUNCTIONS to add in a polyfill');
        assert(Math.clz32, 'This browser does not support Math.clz32(), build with LEGACY_VM_SUPPORT or POLYFILL_OLD_MATH_FUNCTIONS to add in a polyfill');
        assert(Math.trunc, 'This browser does not support Math.trunc(), build with LEGACY_VM_SUPPORT or POLYFILL_OLD_MATH_FUNCTIONS to add in a polyfill');
 
 
 
        // A counter of dependencies for calling run(). If we need to
        // do asynchronous work before running, increment this and
        // decrement it. Incrementing must happen in a place like
        // Module.preRun (used by emcc to add file preloading).
        // Note that you can add dependencies in preRun, even though
        // it happens right before run - run will be postponed until
        // the dependencies are met.
        var runDependencies = 0;
        var runDependencyWatcher = null;
        var dependenciesFulfilled = null; // overridden to take different actions when all run dependencies are fulfilled
        var runDependencyTracking = {};
 
        function addRunDependency(id) {
          runDependencies++;
          if (Module['monitorRunDependencies']) {
            Module['monitorRunDependencies'](runDependencies);
          }
          if (id) {
            assert(!runDependencyTracking[id]);
            runDependencyTracking[id] = 1;
            if (runDependencyWatcher === null && typeof setInterval !== 'undefined') {
              // Check for missing dependencies every few seconds
              runDependencyWatcher = setInterval(function() {
                if (ABORT) {
                  clearInterval(runDependencyWatcher);
                  runDependencyWatcher = null;
                  return;
                }
              }, 10000);
            }
          }
        }
 
        function removeRunDependency(id) {
          runDependencies--;
          if (Module['monitorRunDependencies']) {
            Module['monitorRunDependencies'](runDependencies);
          }
          if (id) {
            assert(runDependencyTracking[id]);
            delete runDependencyTracking[id];
          } else {
            err('warning: run dependency removed without ID');
          }
          if (runDependencies == 0) {
            if (runDependencyWatcher !== null) {
              clearInterval(runDependencyWatcher);
              runDependencyWatcher = null;
            }
            if (dependenciesFulfilled) {
              var callback = dependenciesFulfilled;
              dependenciesFulfilled = null;
              callback(); // can add another dependenciesFulfilled
            }
          }
        }
 
        Module["preloadedImages"] = {}; // maps url to image data
        Module["preloadedAudios"] = {}; // maps url to audio data
 
 
 
        // show errors on likely calls to FS when it was not included
        var FS = {
          error: function() {
            abort('Filesystem support (FS) was not included. The problem is that you are using files from JS, but files were not used from C/C++, so filesystem support was not auto-included. You can force-include filesystem support with  -s FORCE_FILESYSTEM=1');
          },
          init: function() { FS.error(); },
          createDataFile: function() { FS.error(); },
          createPreloadedFile: function() { FS.error(); },
          createLazyFile: function() { FS.error(); },
          open: function() { FS.error(); },
          mkdev: function() { FS.error(); },
          registerDevice: function() { FS.error(); },
          analyzePath: function() { FS.error(); },
          loadFilesFromDB: function() { FS.error(); },
 
          ErrnoError: function ErrnoError() { FS.error(); },
        };
        Module['FS_createDataFile'] = FS.createDataFile;
        Module['FS_createPreloadedFile'] = FS.createPreloadedFile;
 
 
 
        // Copyright 2017 The Emscripten Authors.  All rights reserved.
        // Emscripten is available under two separate licenses, the MIT license and the
        // University of Illinois/NCSA Open Source License.  Both these licenses can be
        // found in the LICENSE file.
 
        // Prefix of data URIs emitted by SINGLE_FILE and related options.
        var dataURIPrefix = 'data:application/octet-stream;base64,';
 
        // Indicates whether filename is a base64 data URI.
        function isDataURI(filename) {
          return String.prototype.startsWith ?
              filename.startsWith(dataURIPrefix) :
              filename.indexOf(dataURIPrefix) === 0;
        }
 
 
 
 
        var wasmBinaryFile = 'ThirdParty/unzip.wasm';
        if (!isDataURI(wasmBinaryFile)) {
          wasmBinaryFile = locateFile(wasmBinaryFile);
        }
 
        function getBinary() {
          try {
            if (Module['wasmBinary']) {
              return new Uint8Array(Module['wasmBinary']);
            }
            if (Module['readBinary']) {
              return Module['readBinary'](wasmBinaryFile);
            } else {
              throw "both async and sync fetching of the wasm failed";
            }
          }
          catch (err) {
            abort(err);
          }
        }
 
        function getBinaryPromise() {
          // if we don't have the binary yet, and have the Fetch api, use that
          // in some environments, like Electron's render process, Fetch api may be present, but have a different context than expected, let's only use it on the Web
          if (!Module['wasmBinary'] && (ENVIRONMENT_IS_WEB || ENVIRONMENT_IS_WORKER) && typeof fetch === 'function') {
            return fetch(wasmBinaryFile, { credentials: 'same-origin' }).then(function(response) {
              if (!response['ok']) {
                throw "failed to load wasm binary file at '" + wasmBinaryFile + "'";
              }
              return response['arrayBuffer']();
            }).catch(function () {
              return getBinary();
            });
          }
          // Otherwise, getBinary should be able to get it synchronously
          return new Promise(function(resolve, reject) {
            resolve(getBinary());
          });
        }
 
 
 
        // Create the wasm instance.
        // Receives the wasm imports, returns the exports.
        function createWasm(env) {
 
          // prepare imports
          var info = {
            'env': env
            ,
            'global': {
              'NaN': NaN,
              'Infinity': Infinity
            },
            'global.Math': Math,
            'asm2wasm': asm2wasmImports
          };
          // Load the wasm module and create an instance of using native support in the JS engine.
          // handle a generated wasm instance, receiving its exports and
          // performing other necessary setup
          function receiveInstance(instance, module) {
            var exports = instance.exports;
            Module['asm'] = exports;
            removeRunDependency('wasm-instantiate');
          }
          addRunDependency('wasm-instantiate');
 
 
          // Async compilation can be confusing when an error on the page overwrites Module
          // (for example, if the order of elements is wrong, and the one defining Module is
          // later), so we save Module and check it later.
          var trueModule = Module;
          function receiveInstantiatedSource(output) {
            // 'output' is a WebAssemblyInstantiatedSource object which has both the module and instance.
            // receiveInstance() will swap in the exports (to Module.asm) so they can be called
            assert(Module === trueModule, 'the Module object should not be replaced during async compilation - perhaps the order of HTML elements is wrong?');
            trueModule = null;
              // TODO: Due to Closure regression https://github.com/google/closure-compiler/issues/3193, the above line no longer optimizes out down to the following line.
              // When the regression is fixed, can restore the above USE_PTHREADS-enabled path.
            receiveInstance(output['instance']);
          }
 
 
          function instantiateArrayBuffer(receiver) {
            return getBinaryPromise().then(function(binary) {
              return WebAssembly.instantiate(binary, info);
            }).then(receiver, function(reason) {
              //err('failed to asynchronously prepare wasm: ' + reason);
              //abort(reason);
            });
          }
 
          // Prefer streaming instantiation if available.
          function instantiateAsync() {
            if (!Module['wasmBinary'] &&
                typeof WebAssembly.instantiateStreaming === 'function' &&
                !isDataURI(wasmBinaryFile) &&
                typeof fetch === 'function') {
              fetch(wasmBinaryFile, { credentials: 'same-origin' }).then(function (response) {
                return WebAssembly.instantiateStreaming(response, info)
                  .then(receiveInstantiatedSource, function(reason) {
                    // We expect the most common failure cause to be a bad MIME type for the binary,
                    // in which case falling back to ArrayBuffer instantiation should work.
                    // err('wasm streaming compile failed: ' + reason);
                    // err('falling back to ArrayBuffer instantiation');
                    instantiateArrayBuffer(receiveInstantiatedSource);
                  });
              });
            } else {
              return instantiateArrayBuffer(receiveInstantiatedSource);
            }
          }
          // User shell pages can write their own Module.instantiateWasm = function(imports, successCallback) callback
          // to manually instantiate the Wasm module themselves. This allows pages to run the instantiation parallel
          // to any other async startup actions they are performing.
          if (Module['instantiateWasm']) {
            try {
              return Module['instantiateWasm'](info, receiveInstance);
            } catch(e) {
              //err('Module.instantiateWasm callback failed with error: ' + e);
              return false;
            }
          }
 
          instantiateAsync();
          return {}; // no exports yet; we'll fill them in later
        }
 
        // Provide an "asm.js function" for the application, called to "link" the asm.js module. We instantiate
        // the wasm module at that time, and it receives imports and provides exports and so forth, the app
        // doesn't need to care that it is wasm or asm.js.
 
        Module['asm'] = function(global, env, providedBuffer) {
          // memory was already allocated (so js could use the buffer)
          env['memory'] = wasmMemory
          ;
          // import table
          env['table'] = wasmTable = new WebAssembly.Table({
            'initial': 22,
            'maximum': 22,
            'element': 'anyfunc'
          });
          // With the wasm backend __memory_base and __table_base and only needed for
          // relocatable output.
          env['__memory_base'] = 1024; // tell the memory segments where to place themselves
          // table starts at 0 by default (even in dynamic linking, for the main module)
          env['__table_base'] = 0;
 
          var exports = createWasm(env);
          assert(exports, 'binaryen setup failed (no wasm support?)');
          return exports;
        };
 
 
 
 
 
        // STATICTOP = STATIC_BASE + 14080;
        /* global initializers */ /*__ATINIT__.push();*/
 
 
 
 
 
 
 
 
        /* no memory initializer */
        var tempDoublePtr = 15088;
        assert(tempDoublePtr % 8 == 0);
 
        // {{PRE_LIBRARY}}
 
 
          function ___lock() {}
    var SYSCALLS={buffers:[null,[],[]],printChar:function (stream, curr) {
                var buffer = SYSCALLS.buffers[stream];
                assert(buffer);
                if (curr === 0 || curr === 10) {
                  (stream === 1 ? out : err)(UTF8ArrayToString(buffer, 0));
                  buffer.length = 0;
                } else {
                  buffer.push(curr);
                }
              },varargs:0,get:function (varargs) {
                SYSCALLS.varargs += 4;
                var ret = HEAP32[(((SYSCALLS.varargs)-(4))>>2)];
                return ret;
              },getStr:function () {
                var ret = UTF8ToString(SYSCALLS.get());
                return ret;
              },get64:function () {
                var low = SYSCALLS.get(), high = SYSCALLS.get();
                if (low >= 0) assert(high === 0);
                else assert(high === -1);
                return low;
              },getZero:function () {
                assert(SYSCALLS.get() === 0);
              }};function ___syscall140(which, varargs) {SYSCALLS.varargs = varargs;
          try {
           // llseek
              var stream = SYSCALLS.getStreamFromFD(), offset_high = SYSCALLS.get(), offset_low = SYSCALLS.get(), result = SYSCALLS.get(), whence = SYSCALLS.get();
              abort('it should not be possible to operate on streams when !SYSCALLS_REQUIRE_FILESYSTEM');
              return 0;
            } catch (e) {
            if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e);
            return -e.errno;
          }
          }
 
          
          function flush_NO_FILESYSTEM() {
              // flush anything remaining in the buffers during shutdown
              var fflush = Module["_fflush"];
              if (fflush) fflush(0);
              var buffers = SYSCALLS.buffers;
              if (buffers[1].length) SYSCALLS.printChar(1, 10);
              if (buffers[2].length) SYSCALLS.printChar(2, 10);
            }function ___syscall146(which, varargs) {SYSCALLS.varargs = varargs;
          try {
           // writev
              // hack to support printf in SYSCALLS_REQUIRE_FILESYSTEM=0
              var stream = SYSCALLS.get(), iov = SYSCALLS.get(), iovcnt = SYSCALLS.get();
              var ret = 0;
              for (var i = 0; i < iovcnt; i++) {
                var ptr = HEAP32[(((iov)+(i*8))>>2)];
                var len = HEAP32[(((iov)+(i*8 + 4))>>2)];
                for (var j = 0; j < len; j++) {
                  SYSCALLS.printChar(stream, HEAPU8[ptr+j]);
                }
                ret += len;
              }
              return ret;
            } catch (e) {
            if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e);
            return -e.errno;
          }
          }
 
          function ___syscall54(which, varargs) {SYSCALLS.varargs = varargs;
          try {
           // ioctl
              return 0;
            } catch (e) {
            if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e);
            return -e.errno;
          }
          }
 
          function ___syscall6(which, varargs) {SYSCALLS.varargs = varargs;
          try {
           // close
              var stream = SYSCALLS.getStreamFromFD();
              abort('it should not be possible to operate on streams when !SYSCALLS_REQUIRE_FILESYSTEM');
              return 0;
            } catch (e) {
            if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e);
            return -e.errno;
          }
          }
 
          function ___unlock() {}
 
          function _emscripten_get_heap_size() {
              return HEAP8.length;
            }
 
           
 
          
          function _emscripten_memcpy_big(dest, src, num) {
              HEAPU8.set(HEAPU8.subarray(src, src+num), dest);
            }
          
           
 
           
 
          
          function ___setErrNo(value) {
              if (Module['___errno_location']) HEAP32[((Module['___errno_location']())>>2)]=value;
              else err('failed to set errno from JS');
              return value;
            }
          
          
          function abortOnCannotGrowMemory(requestedSize) {
              abort('Cannot enlarge memory arrays to size ' + requestedSize + ' bytes (OOM). Either (1) compile with  -s TOTAL_MEMORY=X  with X higher than the current value ' + HEAP8.length + ', (2) compile with  -s ALLOW_MEMORY_GROWTH=1  which allows increasing the size at runtime, or (3) if you want malloc to return NULL (0) instead of this abort, compile with  -s ABORTING_MALLOC=0 ');
            }
          
          function emscripten_realloc_buffer(size) {
              var PAGE_MULTIPLE = 65536;
              size = alignUp(size, PAGE_MULTIPLE); // round up to wasm page size
              var oldSize = buffer.byteLength;
              // native wasm support
              // note that this is *not* threadsafe. multiple threads can call .grow(), and each
              // presents a delta, so in theory we may over-allocate here (e.g. if two threads
              // ask to grow from 256MB to 512MB, we get 2 requests to add +256MB, and may end
              // up growing to 768MB (even though we may have been able to make do with 512MB).
              // TODO: consider decreasing the step sizes in emscripten_resize_heap
              try {
                var result = wasmMemory.grow((size - oldSize) / 65536); // .grow() takes a delta compared to the previous size
                if (result !== (-1 | 0)) {
                  // success in native wasm memory growth, get the buffer from the memory
                  buffer = wasmMemory.buffer;
                  return true;
                } else {
                  return false;
                }
              } catch(e) {
                console.error('emscripten_realloc_buffer: Attempted to grow from ' + oldSize  + ' bytes to ' + size + ' bytes, but got error: ' + e);
                return false;
              }
            }function _emscripten_resize_heap(requestedSize) {
              var oldSize = _emscripten_get_heap_size();
              // With pthreads, races can happen (another thread might increase the size in between), so return a failure, and let the caller retry.
              assert(requestedSize > oldSize);
          
          
              var PAGE_MULTIPLE = 65536;
              var LIMIT = 2147483648 - PAGE_MULTIPLE; // We can do one page short of 2GB as theoretical maximum.
          
              if (requestedSize > LIMIT) {
                err('Cannot enlarge memory, asked to go up to ' + requestedSize + ' bytes, but the limit is ' + LIMIT + ' bytes!');
                return false;
              }
          
              var MIN_TOTAL_MEMORY = 16777216;
              var newSize = Math.max(oldSize, MIN_TOTAL_MEMORY); // So the loop below will not be infinite, and minimum asm.js memory size is 16MB.
          
              // TODO: see realloc_buffer - for PTHREADS we may want to decrease these jumps
              while (newSize < requestedSize) { // Keep incrementing the heap size as long as it's less than what is requested.
                if (newSize <= 536870912) {
                  newSize = alignUp(2 * newSize, PAGE_MULTIPLE); // Simple heuristic: double until 1GB...
                } else {
                  // ..., but after that, add smaller increments towards 2GB, which we cannot reach
                  newSize = Math.min(alignUp((3 * newSize + 2147483648) / 4, PAGE_MULTIPLE), LIMIT);
                }
          
                if (newSize === oldSize) {
                  warnOnce('Cannot ask for more memory since we reached the practical limit in browsers (which is just below 2GB), so the request would have failed. Requesting only ' + HEAP8.length);
                }
              }
          
              if (!emscripten_realloc_buffer(newSize)) {
                err('Failed to grow the heap from ' + oldSize + ' bytes to ' + newSize + ' bytes, not enough memory!');
                return false;
              }
          
              updateGlobalBufferViews();
          
          
          
              return true;
            } 
 
 
        // ASM_LIBRARY EXTERN PRIMITIVES: Int8Array,Int32Array
 
 
        function nullFunc_ii(x) { err("Invalid function pointer called with signature 'ii'. Perhaps this is an invalid value (e.g. caused by calling a virtual method on a NULL pointer)? Or calling a function with an incorrect type, which will fail? (it is worth building your source files with -Werror (warnings are errors), as warnings can indicate undefined behavior which can cause this)");  err("Build with ASSERTIONS=2 for more info.");abort(x); }
 
        function nullFunc_iiii(x) { err("Invalid function pointer called with signature 'iiii'. Perhaps this is an invalid value (e.g. caused by calling a virtual method on a NULL pointer)? Or calling a function with an incorrect type, which will fail? (it is worth building your source files with -Werror (warnings are errors), as warnings can indicate undefined behavior which can cause this)");  err("Build with ASSERTIONS=2 for more info.");abort(x); }
 
        function nullFunc_jiji(x) { err("Invalid function pointer called with signature 'jiji'. Perhaps this is an invalid value (e.g. caused by calling a virtual method on a NULL pointer)? Or calling a function with an incorrect type, which will fail? (it is worth building your source files with -Werror (warnings are errors), as warnings can indicate undefined behavior which can cause this)");  err("Build with ASSERTIONS=2 for more info.");abort(x); }
 
        function nullFunc_vii(x) { err("Invalid function pointer called with signature 'vii'. Perhaps this is an invalid value (e.g. caused by calling a virtual method on a NULL pointer)? Or calling a function with an incorrect type, which will fail? (it is worth building your source files with -Werror (warnings are errors), as warnings can indicate undefined behavior which can cause this)");  err("Build with ASSERTIONS=2 for more info.");abort(x); }
 
        var asmGlobalArg = {};
 
        var asmLibraryArg = {
          "abort": abort,
          "setTempRet0": setTempRet0,
          "getTempRet0": getTempRet0,
          "abortStackOverflow": abortStackOverflow,
          "nullFunc_ii": nullFunc_ii,
          "nullFunc_iiii": nullFunc_iiii,
          "nullFunc_jiji": nullFunc_jiji,
          "nullFunc_vii": nullFunc_vii,
          "___lock": ___lock,
          "___setErrNo": ___setErrNo,
          "___syscall140": ___syscall140,
          "___syscall146": ___syscall146,
          "___syscall54": ___syscall54,
          "___syscall6": ___syscall6,
          "___unlock": ___unlock,
          "_emscripten_get_heap_size": _emscripten_get_heap_size,
          "_emscripten_memcpy_big": _emscripten_memcpy_big,
          "_emscripten_resize_heap": _emscripten_resize_heap,
          "abortOnCannotGrowMemory": abortOnCannotGrowMemory,
          "emscripten_realloc_buffer": emscripten_realloc_buffer,
          "flush_NO_FILESYSTEM": flush_NO_FILESYSTEM,
          "tempDoublePtr": tempDoublePtr,
          "DYNAMICTOP_PTR": DYNAMICTOP_PTR
        };
        // EMSCRIPTEN_START_ASM
        var asm =Module["asm"]// EMSCRIPTEN_END_ASM
        (asmGlobalArg, asmLibraryArg, buffer);
 
        var real____errno_location = asm["___errno_location"];
        asm["___errno_location"] = function() {
          assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
          assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
          return real____errno_location.apply(null, arguments);
        };
 
        var real__fflush = asm["_fflush"];
        asm["_fflush"] = function() {
          assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
          assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
          return real__fflush.apply(null, arguments);
        };
 
        var real__free = asm["_free"];
        asm["_free"] = function() {
          assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
          assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
          return real__free.apply(null, arguments);
        };
 
        var real__freePointer = asm["_freePointer"];
        asm["_freePointer"] = function() {
          assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
          assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
          return real__freePointer.apply(null, arguments);
        };
 
        var real__llvm_bswap_i32 = asm["_llvm_bswap_i32"];
        asm["_llvm_bswap_i32"] = function() {
          assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
          assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
          return real__llvm_bswap_i32.apply(null, arguments);
        };
 
        var real__malloc = asm["_malloc"];
        asm["_malloc"] = function() {
          assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
          assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
          return real__malloc.apply(null, arguments);
        };
 
        var real__sbrk = asm["_sbrk"];
        asm["_sbrk"] = function() {
          assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
          assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
          return real__sbrk.apply(null, arguments);
        };
 
        var real__unzip = asm["_unzip"];
        asm["_unzip"] = function() {
          assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
          assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
          return real__unzip.apply(null, arguments);
        };
 
        var real_establishStackSpace = asm["establishStackSpace"];
        asm["establishStackSpace"] = function() {
          assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
          assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
          return real_establishStackSpace.apply(null, arguments);
        };
 
        var real_stackAlloc = asm["stackAlloc"];
        asm["stackAlloc"] = function() {
          assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
          assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
          return real_stackAlloc.apply(null, arguments);
        };
 
        var real_stackRestore = asm["stackRestore"];
        asm["stackRestore"] = function() {
          assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
          assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
          return real_stackRestore.apply(null, arguments);
        };
 
        var real_stackSave = asm["stackSave"];
        asm["stackSave"] = function() {
          assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
          assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
          return real_stackSave.apply(null, arguments);
        };
        Module["asm"] = asm;
        var ___errno_location = Module["___errno_location"] = function() {
          assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
          assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
          return Module["asm"]["___errno_location"].apply(null, arguments)
        };
 
        var _emscripten_replace_memory = Module["_emscripten_replace_memory"] = function() {
          assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
          assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
          return Module["asm"]["_emscripten_replace_memory"].apply(null, arguments)
        };
 
        var _fflush = Module["_fflush"] = function() {
          assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
          assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
          return Module["asm"]["_fflush"].apply(null, arguments)
        };
 
        var _free = Module["_free"] = function() {
          assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
          assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
          return Module["asm"]["_free"].apply(null, arguments)
        };
 
        var _freePointer = Module["_freePointer"] = function() {
          assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
          assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
          return Module["asm"]["_freePointer"].apply(null, arguments)
        };
 
        var _llvm_bswap_i32 = Module["_llvm_bswap_i32"] = function() {
          assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
          assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
          return Module["asm"]["_llvm_bswap_i32"].apply(null, arguments)
        };
 
        var _malloc = Module["_malloc"] = function() {
          assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
          assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
          return Module["asm"]["_malloc"].apply(null, arguments)
        };
 
        var _memcpy = Module["_memcpy"] = function() {
          assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
          assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
          return Module["asm"]["_memcpy"].apply(null, arguments)
        };
 
        var _memset = Module["_memset"] = function() {
          assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
          assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
          return Module["asm"]["_memset"].apply(null, arguments)
        };
 
        var _sbrk = Module["_sbrk"] = function() {
          assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
          assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
          return Module["asm"]["_sbrk"].apply(null, arguments)
        };
 
        var _unzip = Module["_unzip"] = function() {
          assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
          assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
          return Module["asm"]["_unzip"].apply(null, arguments)
        };
 
        var establishStackSpace = Module["establishStackSpace"] = function() {
          assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
          assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
          return Module["asm"]["establishStackSpace"].apply(null, arguments)
        };
 
        var stackAlloc = Module["stackAlloc"] = function() {
          assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
          assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
          return Module["asm"]["stackAlloc"].apply(null, arguments)
        };
 
        var stackRestore = Module["stackRestore"] = function() {
          assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
          assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
          return Module["asm"]["stackRestore"].apply(null, arguments)
        };
 
        var stackSave = Module["stackSave"] = function() {
          assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
          assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
          return Module["asm"]["stackSave"].apply(null, arguments)
        };
 
        var dynCall_ii = Module["dynCall_ii"] = function() {
          assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
          assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
          return Module["asm"]["dynCall_ii"].apply(null, arguments)
        };
 
        var dynCall_iiii = Module["dynCall_iiii"] = function() {
          assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
          assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
          return Module["asm"]["dynCall_iiii"].apply(null, arguments)
        };
 
        var dynCall_jiji = Module["dynCall_jiji"] = function() {
          assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
          assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
          return Module["asm"]["dynCall_jiji"].apply(null, arguments)
        };
 
        var dynCall_vii = Module["dynCall_vii"] = function() {
          assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
          assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
          return Module["asm"]["dynCall_vii"].apply(null, arguments)
        };
 
 
 
        // === Auto-generated postamble setup entry stuff ===
 
        Module['asm'] = asm;
 
        if (!Module["intArrayFromString"]) Module["intArrayFromString"] = function() { abort("'intArrayFromString' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["intArrayToString"]) Module["intArrayToString"] = function() { abort("'intArrayToString' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        Module["ccall"] = ccall;
        Module["cwrap"] = cwrap;
        if (!Module["setValue"]) Module["setValue"] = function() { abort("'setValue' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        Module["getValue"] = getValue;
        if (!Module["allocate"]) Module["allocate"] = function() { abort("'allocate' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["getMemory"]) Module["getMemory"] = function() { abort("'getMemory' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ). Alternatively, forcing filesystem support (-s FORCE_FILESYSTEM=1) can export this for you"); };
        if (!Module["AsciiToString"]) Module["AsciiToString"] = function() { abort("'AsciiToString' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["stringToAscii"]) Module["stringToAscii"] = function() { abort("'stringToAscii' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["UTF8ArrayToString"]) Module["UTF8ArrayToString"] = function() { abort("'UTF8ArrayToString' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["UTF8ToString"]) Module["UTF8ToString"] = function() { abort("'UTF8ToString' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["stringToUTF8Array"]) Module["stringToUTF8Array"] = function() { abort("'stringToUTF8Array' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["stringToUTF8"]) Module["stringToUTF8"] = function() { abort("'stringToUTF8' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["lengthBytesUTF8"]) Module["lengthBytesUTF8"] = function() { abort("'lengthBytesUTF8' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["UTF16ToString"]) Module["UTF16ToString"] = function() { abort("'UTF16ToString' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["stringToUTF16"]) Module["stringToUTF16"] = function() { abort("'stringToUTF16' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["lengthBytesUTF16"]) Module["lengthBytesUTF16"] = function() { abort("'lengthBytesUTF16' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["UTF32ToString"]) Module["UTF32ToString"] = function() { abort("'UTF32ToString' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["stringToUTF32"]) Module["stringToUTF32"] = function() { abort("'stringToUTF32' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["lengthBytesUTF32"]) Module["lengthBytesUTF32"] = function() { abort("'lengthBytesUTF32' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["allocateUTF8"]) Module["allocateUTF8"] = function() { abort("'allocateUTF8' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["stackTrace"]) Module["stackTrace"] = function() { abort("'stackTrace' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["addOnPreRun"]) Module["addOnPreRun"] = function() { abort("'addOnPreRun' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["addOnInit"]) Module["addOnInit"] = function() { abort("'addOnInit' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["addOnPreMain"]) Module["addOnPreMain"] = function() { abort("'addOnPreMain' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["addOnExit"]) Module["addOnExit"] = function() { abort("'addOnExit' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["addOnPostRun"]) Module["addOnPostRun"] = function() { abort("'addOnPostRun' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["writeStringToMemory"]) Module["writeStringToMemory"] = function() { abort("'writeStringToMemory' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["writeArrayToMemory"]) Module["writeArrayToMemory"] = function() { abort("'writeArrayToMemory' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["writeAsciiToMemory"]) Module["writeAsciiToMemory"] = function() { abort("'writeAsciiToMemory' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["addRunDependency"]) Module["addRunDependency"] = function() { abort("'addRunDependency' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ). Alternatively, forcing filesystem support (-s FORCE_FILESYSTEM=1) can export this for you"); };
        if (!Module["removeRunDependency"]) Module["removeRunDependency"] = function() { abort("'removeRunDependency' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ). Alternatively, forcing filesystem support (-s FORCE_FILESYSTEM=1) can export this for you"); };
        if (!Module["ENV"]) Module["ENV"] = function() { abort("'ENV' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["FS"]) Module["FS"] = function() { abort("'FS' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["FS_createFolder"]) Module["FS_createFolder"] = function() { abort("'FS_createFolder' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ). Alternatively, forcing filesystem support (-s FORCE_FILESYSTEM=1) can export this for you"); };
        if (!Module["FS_createPath"]) Module["FS_createPath"] = function() { abort("'FS_createPath' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ). Alternatively, forcing filesystem support (-s FORCE_FILESYSTEM=1) can export this for you"); };
        if (!Module["FS_createDataFile"]) Module["FS_createDataFile"] = function() { abort("'FS_createDataFile' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ). Alternatively, forcing filesystem support (-s FORCE_FILESYSTEM=1) can export this for you"); };
        if (!Module["FS_createPreloadedFile"]) Module["FS_createPreloadedFile"] = function() { abort("'FS_createPreloadedFile' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ). Alternatively, forcing filesystem support (-s FORCE_FILESYSTEM=1) can export this for you"); };
        if (!Module["FS_createLazyFile"]) Module["FS_createLazyFile"] = function() { abort("'FS_createLazyFile' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ). Alternatively, forcing filesystem support (-s FORCE_FILESYSTEM=1) can export this for you"); };
        if (!Module["FS_createLink"]) Module["FS_createLink"] = function() { abort("'FS_createLink' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ). Alternatively, forcing filesystem support (-s FORCE_FILESYSTEM=1) can export this for you"); };
        if (!Module["FS_createDevice"]) Module["FS_createDevice"] = function() { abort("'FS_createDevice' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ). Alternatively, forcing filesystem support (-s FORCE_FILESYSTEM=1) can export this for you"); };
        if (!Module["FS_unlink"]) Module["FS_unlink"] = function() { abort("'FS_unlink' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ). Alternatively, forcing filesystem support (-s FORCE_FILESYSTEM=1) can export this for you"); };
        if (!Module["GL"]) Module["GL"] = function() { abort("'GL' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["dynamicAlloc"]) Module["dynamicAlloc"] = function() { abort("'dynamicAlloc' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["warnOnce"]) Module["warnOnce"] = function() { abort("'warnOnce' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["loadDynamicLibrary"]) Module["loadDynamicLibrary"] = function() { abort("'loadDynamicLibrary' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["loadWebAssemblyModule"]) Module["loadWebAssemblyModule"] = function() { abort("'loadWebAssemblyModule' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["getLEB"]) Module["getLEB"] = function() { abort("'getLEB' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["getFunctionTables"]) Module["getFunctionTables"] = function() { abort("'getFunctionTables' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["alignFunctionTables"]) Module["alignFunctionTables"] = function() { abort("'alignFunctionTables' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["registerFunctions"]) Module["registerFunctions"] = function() { abort("'registerFunctions' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["addFunction"]) Module["addFunction"] = function() { abort("'addFunction' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["removeFunction"]) Module["removeFunction"] = function() { abort("'removeFunction' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["getFuncWrapper"]) Module["getFuncWrapper"] = function() { abort("'getFuncWrapper' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["prettyPrint"]) Module["prettyPrint"] = function() { abort("'prettyPrint' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["makeBigInt"]) Module["makeBigInt"] = function() { abort("'makeBigInt' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["dynCall"]) Module["dynCall"] = function() { abort("'dynCall' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["getCompilerSetting"]) Module["getCompilerSetting"] = function() { abort("'getCompilerSetting' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["stackSave"]) Module["stackSave"] = function() { abort("'stackSave' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["stackRestore"]) Module["stackRestore"] = function() { abort("'stackRestore' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["stackAlloc"]) Module["stackAlloc"] = function() { abort("'stackAlloc' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["establishStackSpace"]) Module["establishStackSpace"] = function() { abort("'establishStackSpace' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["print"]) Module["print"] = function() { abort("'print' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["printErr"]) Module["printErr"] = function() { abort("'printErr' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["getTempRet0"]) Module["getTempRet0"] = function() { abort("'getTempRet0' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["setTempRet0"]) Module["setTempRet0"] = function() { abort("'setTempRet0' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };
        if (!Module["Pointer_stringify"]) Module["Pointer_stringify"] = function() { abort("'Pointer_stringify' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); };if (!Module["ALLOC_NORMAL"]) Object.defineProperty(Module, "ALLOC_NORMAL", { get: function() { abort("'ALLOC_NORMAL' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); } });
        if (!Module["ALLOC_STACK"]) Object.defineProperty(Module, "ALLOC_STACK", { get: function() { abort("'ALLOC_STACK' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); } });
        if (!Module["ALLOC_DYNAMIC"]) Object.defineProperty(Module, "ALLOC_DYNAMIC", { get: function() { abort("'ALLOC_DYNAMIC' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); } });
        if (!Module["ALLOC_NONE"]) Object.defineProperty(Module, "ALLOC_NONE", { get: function() { abort("'ALLOC_NONE' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)"); } });
 
 
 
 
        /**
         * @constructor
         * @extends {Error}
         * @this {ExitStatus}
         */
        function ExitStatus(status) {
          this.name = "ExitStatus";
          this.message = "Program terminated with exit(" + status + ")";
          this.status = status;
        }    ExitStatus.prototype = new Error();
        ExitStatus.prototype.constructor = ExitStatus;
 
        dependenciesFulfilled = function runCaller() {
          // If run has never been called, and we should call run (INVOKE_RUN is true, and Module.noInitialRun is not false)
          if (!Module['calledRun']) run();
          if (!Module['calledRun']) dependenciesFulfilled = runCaller; // try this again later, after new deps are fulfilled
        };
 
 
 
 
 
        /** @type {function(Array=)} */
        function run(args) {
          args = args || Module['arguments'];
 
          if (runDependencies > 0) {
            return;
          }
 
          writeStackCookie();
 
          preRun();
 
          if (runDependencies > 0) return; // a preRun added a dependency, run will be called later
          if (Module['calledRun']) return; // run may have just been called through dependencies being fulfilled just in this very frame
 
          function doRun() {
            if (Module['calledRun']) return; // run may have just been called while the async setStatus time below was happening
            Module['calledRun'] = true;
 
            if (ABORT) return;
 
            ensureInitRuntime();
 
            preMain();
 
            if (Module['onRuntimeInitialized']) Module['onRuntimeInitialized']();
 
            assert(!Module['_main'], 'compiled without a main, but one is present. if you added it from JS, use Module["onRuntimeInitialized"]');
 
            postRun();
          }
 
          if (Module['setStatus']) {
            Module['setStatus']('Running...');
            setTimeout(function() {
              setTimeout(function() {
                Module['setStatus']('');
              }, 1);
              doRun();
            }, 1);
          } else {
            doRun();
          }
          checkStackCookie();
        }
        Module['run'] = run;
 
        var abortDecorators = [];
 
        function abort(what) {
          if (Module['onAbort']) {
            Module['onAbort'](what);
          }
 
          if (what !== undefined) {
            //out(what);
            //err(what);
            what = '"' + what + '"';
          } else {
            what = '';
          }
 
          ABORT = true;
 
          var extra = '';
          var output = 'abort(' + what + ') at ' + stackTrace() + extra;
          if (abortDecorators) {
            abortDecorators.forEach(function(decorator) {
              output = decorator(output, what);
            });
          }
          throw output;
        }
        Module['abort'] = abort;
 
        if (Module['preInit']) {
          if (typeof Module['preInit'] == 'function') Module['preInit'] = [Module['preInit']];
          while (Module['preInit'].length > 0) {
            Module['preInit'].pop()();
          }
        }
 
 
          Module["noExitRuntime"] = true;
 
        run();
    } else {
        var Module = null;
    }
 
    var unzip = Module;
 
 
 
 
    // {{MODULE_ADDITIONS}}
 
    exports.unzip = unzip;
 
});