How to use uint16Array method in fast-check-monorepo

Best JavaScript code snippet using fast-check-monorepo

test-bi-typedarray-proto-subarray.js

Source:test-bi-typedarray-proto-subarray.js Github

copy

Full Screen

1/*2 * TypedArray subarray() method3 */4/*@include util-buffer.js@*/5/*===6basic test78 bytes: 101112131415161788 bytes: 10111213141516179object true102 bytes: 131411object true128 bytes: 101112dead151617138 bytes: 101112dead151617142 bytes: dead15===*/16function subarrayBasicTest() {17 var i;18 var b = new ArrayBuffer(8);19 var v0 = new Uint8Array(b);20 for (i = 0; i < 8; i++) {21 v0[i] = 0x10 + i;22 }23 printBuffer(b);24 var v1 = new Uint8Array(b);25 printBuffer(v1);26 print(typeof v1.buffer, v1.buffer === b);27 var v2 = v1.subarray(3, 5);28 printBuffer(v2);29 print(typeof v2.buffer, v2.buffer === b);30 v2[0] = 0xde; // ok, map to b[3]31 v2[1] = 0xad; // ok, map to b[4]32 v2[2] = 0xbe; // out of subarray, becomes a concrete property on v233 v2[3] = 0xef; // out of subarray, becomes a concrete property on v234 printBuffer(b);35 printBuffer(v1);36 printBuffer(v2);37}38try {39 print('basic test');40 subarrayBasicTest();41} catch (e) {42 print(e.stack || e);43}44/*===45bruteforce test460 0 0 [object Int8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f470 0 1 [object Int8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f480 0 2 [object Int8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f490 0 3 [object Int8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f500 0 4 [object Int8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f510 0 5 [object Int8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f520 0 6 [object Int8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f530 0 7 [object Int8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f540 1 0 [object Int8Array] 5d5e5f550 1 1 [object Int8Array] 560 1 2 [object Int8Array] 5d5e570 1 3 [object Int8Array] 580 1 4 [object Int8Array] 590 1 5 [object Int8Array] 600 1 6 [object Int8Array] 610 1 7 [object Int8Array] 620 2 0 [object Int8Array] 5f630 2 1 [object Int8Array] 640 2 2 [object Int8Array] 650 2 3 [object Int8Array] 660 2 4 [object Int8Array] 670 2 5 [object Int8Array] 680 2 6 [object Int8Array] 690 2 7 [object Int8Array] 700 3 0 [object Int8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f710 3 1 [object Int8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c720 3 2 [object Int8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e730 3 3 [object Int8Array] 740 3 4 [object Int8Array] 40750 3 5 [object Int8Array] 4041760 3 6 [object Int8Array] 404142770 3 7 [object Int8Array] 40414243444546474849780 4 0 [object Int8Array] 4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f790 4 1 [object Int8Array] 4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c800 4 2 [object Int8Array] 4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e810 4 3 [object Int8Array] 820 4 4 [object Int8Array] 830 4 5 [object Int8Array] 41840 4 6 [object Int8Array] 4142850 4 7 [object Int8Array] 414243444546474849860 5 0 [object Int8Array] 42434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f870 5 1 [object Int8Array] 42434445464748494a4b4c4d4e4f505152535455565758595a5b5c880 5 2 [object Int8Array] 42434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e890 5 3 [object Int8Array] 900 5 4 [object Int8Array] 910 5 5 [object Int8Array] 920 5 6 [object Int8Array] 42930 5 7 [object Int8Array] 4243444546474849940 6 0 [object Int8Array] 434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f950 6 1 [object Int8Array] 434445464748494a4b4c4d4e4f505152535455565758595a5b5c960 6 2 [object Int8Array] 434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e970 6 3 [object Int8Array] 980 6 4 [object Int8Array] 990 6 5 [object Int8Array] 1000 6 6 [object Int8Array] 1010 6 7 [object Int8Array] 434445464748491020 7 0 [object Int8Array] 4a4b4c4d4e4f505152535455565758595a5b5c5d5e5f1030 7 1 [object Int8Array] 4a4b4c4d4e4f505152535455565758595a5b5c1040 7 2 [object Int8Array] 4a4b4c4d4e4f505152535455565758595a5b5c5d5e1050 7 3 [object Int8Array] 1060 7 4 [object Int8Array] 1070 7 5 [object Int8Array] 1080 7 6 [object Int8Array] 1090 7 7 [object Int8Array] 1101 0 0 [object Int8Array] 45464748494a4b4c4d4e4f50511111 0 1 [object Int8Array] 45464748494a4b4c4d4e4f50511121 0 2 [object Int8Array] 45464748494a4b4c4d4e4f50511131 0 3 [object Int8Array] 45464748494a4b4c4d4e4f50511141 0 4 [object Int8Array] 45464748494a4b4c4d4e4f50511151 0 5 [object Int8Array] 45464748494a4b4c4d4e4f50511161 0 6 [object Int8Array] 45464748494a4b4c4d4e4f50511171 0 7 [object Int8Array] 45464748494a4b4c4d4e4f50511181 1 0 [object Int8Array] 4f50511191 1 1 [object Int8Array] 1201 1 2 [object Int8Array] 4f501211 1 3 [object Int8Array] 1221 1 4 [object Int8Array] 1231 1 5 [object Int8Array] 1241 1 6 [object Int8Array] 1251 1 7 [object Int8Array] 1261 2 0 [object Int8Array] 511271 2 1 [object Int8Array] 1281 2 2 [object Int8Array] 1291 2 3 [object Int8Array] 1301 2 4 [object Int8Array] 1311 2 5 [object Int8Array] 1321 2 6 [object Int8Array] 1331 2 7 [object Int8Array] 1341 3 0 [object Int8Array] 45464748494a4b4c4d4e4f50511351 3 1 [object Int8Array] 45464748494a4b4c4d4e1361 3 2 [object Int8Array] 45464748494a4b4c4d4e4f501371 3 3 [object Int8Array] 1381 3 4 [object Int8Array] 451391 3 5 [object Int8Array] 45461401 3 6 [object Int8Array] 4546471411 3 7 [object Int8Array] 45464748494a4b4c4d4e1421 4 0 [object Int8Array] 464748494a4b4c4d4e4f50511431 4 1 [object Int8Array] 464748494a4b4c4d4e1441 4 2 [object Int8Array] 464748494a4b4c4d4e4f501451 4 3 [object Int8Array] 1461 4 4 [object Int8Array] 1471 4 5 [object Int8Array] 461481 4 6 [object Int8Array] 46471491 4 7 [object Int8Array] 464748494a4b4c4d4e1501 5 0 [object Int8Array] 4748494a4b4c4d4e4f50511511 5 1 [object Int8Array] 4748494a4b4c4d4e1521 5 2 [object Int8Array] 4748494a4b4c4d4e4f501531 5 3 [object Int8Array] 1541 5 4 [object Int8Array] 1551 5 5 [object Int8Array] 1561 5 6 [object Int8Array] 471571 5 7 [object Int8Array] 4748494a4b4c4d4e1581 6 0 [object Int8Array] 48494a4b4c4d4e4f50511591 6 1 [object Int8Array] 48494a4b4c4d4e1601 6 2 [object Int8Array] 48494a4b4c4d4e4f501611 6 3 [object Int8Array] 1621 6 4 [object Int8Array] 1631 6 5 [object Int8Array] 1641 6 6 [object Int8Array] 1651 6 7 [object Int8Array] 48494a4b4c4d4e1661 7 0 [object Int8Array] 4f50511671 7 1 [object Int8Array] 1681 7 2 [object Int8Array] 4f501691 7 3 [object Int8Array] 1701 7 4 [object Int8Array] 1711 7 5 [object Int8Array] 1721 7 6 [object Int8Array] 1731 7 7 [object Int8Array] 1742 0 0 [object Uint8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f1752 0 1 [object Uint8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f1762 0 2 [object Uint8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f1772 0 3 [object Uint8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f1782 0 4 [object Uint8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f1792 0 5 [object Uint8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f1802 0 6 [object Uint8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f1812 0 7 [object Uint8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f1822 1 0 [object Uint8Array] 5d5e5f1832 1 1 [object Uint8Array] 1842 1 2 [object Uint8Array] 5d5e1852 1 3 [object Uint8Array] 1862 1 4 [object Uint8Array] 1872 1 5 [object Uint8Array] 1882 1 6 [object Uint8Array] 1892 1 7 [object Uint8Array] 1902 2 0 [object Uint8Array] 5f1912 2 1 [object Uint8Array] 1922 2 2 [object Uint8Array] 1932 2 3 [object Uint8Array] 1942 2 4 [object Uint8Array] 1952 2 5 [object Uint8Array] 1962 2 6 [object Uint8Array] 1972 2 7 [object Uint8Array] 1982 3 0 [object Uint8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f1992 3 1 [object Uint8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c2002 3 2 [object Uint8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e2012 3 3 [object Uint8Array] 2022 3 4 [object Uint8Array] 402032 3 5 [object Uint8Array] 40412042 3 6 [object Uint8Array] 4041422052 3 7 [object Uint8Array] 404142434445464748492062 4 0 [object Uint8Array] 4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f2072 4 1 [object Uint8Array] 4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c2082 4 2 [object Uint8Array] 4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e2092 4 3 [object Uint8Array] 2102 4 4 [object Uint8Array] 2112 4 5 [object Uint8Array] 412122 4 6 [object Uint8Array] 41422132 4 7 [object Uint8Array] 4142434445464748492142 5 0 [object Uint8Array] 42434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f2152 5 1 [object Uint8Array] 42434445464748494a4b4c4d4e4f505152535455565758595a5b5c2162 5 2 [object Uint8Array] 42434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e2172 5 3 [object Uint8Array] 2182 5 4 [object Uint8Array] 2192 5 5 [object Uint8Array] 2202 5 6 [object Uint8Array] 422212 5 7 [object Uint8Array] 42434445464748492222 6 0 [object Uint8Array] 434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f2232 6 1 [object Uint8Array] 434445464748494a4b4c4d4e4f505152535455565758595a5b5c2242 6 2 [object Uint8Array] 434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e2252 6 3 [object Uint8Array] 2262 6 4 [object Uint8Array] 2272 6 5 [object Uint8Array] 2282 6 6 [object Uint8Array] 2292 6 7 [object Uint8Array] 434445464748492302 7 0 [object Uint8Array] 4a4b4c4d4e4f505152535455565758595a5b5c5d5e5f2312 7 1 [object Uint8Array] 4a4b4c4d4e4f505152535455565758595a5b5c2322 7 2 [object Uint8Array] 4a4b4c4d4e4f505152535455565758595a5b5c5d5e2332 7 3 [object Uint8Array] 2342 7 4 [object Uint8Array] 2352 7 5 [object Uint8Array] 2362 7 6 [object Uint8Array] 2372 7 7 [object Uint8Array] 2383 0 0 [object Uint8Array] 45464748494a4b4c4d4e4f50512393 0 1 [object Uint8Array] 45464748494a4b4c4d4e4f50512403 0 2 [object Uint8Array] 45464748494a4b4c4d4e4f50512413 0 3 [object Uint8Array] 45464748494a4b4c4d4e4f50512423 0 4 [object Uint8Array] 45464748494a4b4c4d4e4f50512433 0 5 [object Uint8Array] 45464748494a4b4c4d4e4f50512443 0 6 [object Uint8Array] 45464748494a4b4c4d4e4f50512453 0 7 [object Uint8Array] 45464748494a4b4c4d4e4f50512463 1 0 [object Uint8Array] 4f50512473 1 1 [object Uint8Array] 2483 1 2 [object Uint8Array] 4f502493 1 3 [object Uint8Array] 2503 1 4 [object Uint8Array] 2513 1 5 [object Uint8Array] 2523 1 6 [object Uint8Array] 2533 1 7 [object Uint8Array] 2543 2 0 [object Uint8Array] 512553 2 1 [object Uint8Array] 2563 2 2 [object Uint8Array] 2573 2 3 [object Uint8Array] 2583 2 4 [object Uint8Array] 2593 2 5 [object Uint8Array] 2603 2 6 [object Uint8Array] 2613 2 7 [object Uint8Array] 2623 3 0 [object Uint8Array] 45464748494a4b4c4d4e4f50512633 3 1 [object Uint8Array] 45464748494a4b4c4d4e2643 3 2 [object Uint8Array] 45464748494a4b4c4d4e4f502653 3 3 [object Uint8Array] 2663 3 4 [object Uint8Array] 452673 3 5 [object Uint8Array] 45462683 3 6 [object Uint8Array] 4546472693 3 7 [object Uint8Array] 45464748494a4b4c4d4e2703 4 0 [object Uint8Array] 464748494a4b4c4d4e4f50512713 4 1 [object Uint8Array] 464748494a4b4c4d4e2723 4 2 [object Uint8Array] 464748494a4b4c4d4e4f502733 4 3 [object Uint8Array] 2743 4 4 [object Uint8Array] 2753 4 5 [object Uint8Array] 462763 4 6 [object Uint8Array] 46472773 4 7 [object Uint8Array] 464748494a4b4c4d4e2783 5 0 [object Uint8Array] 4748494a4b4c4d4e4f50512793 5 1 [object Uint8Array] 4748494a4b4c4d4e2803 5 2 [object Uint8Array] 4748494a4b4c4d4e4f502813 5 3 [object Uint8Array] 2823 5 4 [object Uint8Array] 2833 5 5 [object Uint8Array] 2843 5 6 [object Uint8Array] 472853 5 7 [object Uint8Array] 4748494a4b4c4d4e2863 6 0 [object Uint8Array] 48494a4b4c4d4e4f50512873 6 1 [object Uint8Array] 48494a4b4c4d4e2883 6 2 [object Uint8Array] 48494a4b4c4d4e4f502893 6 3 [object Uint8Array] 2903 6 4 [object Uint8Array] 2913 6 5 [object Uint8Array] 2923 6 6 [object Uint8Array] 2933 6 7 [object Uint8Array] 48494a4b4c4d4e2943 7 0 [object Uint8Array] 4f50512953 7 1 [object Uint8Array] 2963 7 2 [object Uint8Array] 4f502973 7 3 [object Uint8Array] 2983 7 4 [object Uint8Array] 2993 7 5 [object Uint8Array] 3003 7 6 [object Uint8Array] 3013 7 7 [object Uint8Array] 3024 0 0 [object Uint8ClampedArray] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f3034 0 1 [object Uint8ClampedArray] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f3044 0 2 [object Uint8ClampedArray] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f3054 0 3 [object Uint8ClampedArray] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f3064 0 4 [object Uint8ClampedArray] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f3074 0 5 [object Uint8ClampedArray] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f3084 0 6 [object Uint8ClampedArray] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f3094 0 7 [object Uint8ClampedArray] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f3104 1 0 [object Uint8ClampedArray] 5d5e5f3114 1 1 [object Uint8ClampedArray] 3124 1 2 [object Uint8ClampedArray] 5d5e3134 1 3 [object Uint8ClampedArray] 3144 1 4 [object Uint8ClampedArray] 3154 1 5 [object Uint8ClampedArray] 3164 1 6 [object Uint8ClampedArray] 3174 1 7 [object Uint8ClampedArray] 3184 2 0 [object Uint8ClampedArray] 5f3194 2 1 [object Uint8ClampedArray] 3204 2 2 [object Uint8ClampedArray] 3214 2 3 [object Uint8ClampedArray] 3224 2 4 [object Uint8ClampedArray] 3234 2 5 [object Uint8ClampedArray] 3244 2 6 [object Uint8ClampedArray] 3254 2 7 [object Uint8ClampedArray] 3264 3 0 [object Uint8ClampedArray] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f3274 3 1 [object Uint8ClampedArray] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c3284 3 2 [object Uint8ClampedArray] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e3294 3 3 [object Uint8ClampedArray] 3304 3 4 [object Uint8ClampedArray] 403314 3 5 [object Uint8ClampedArray] 40413324 3 6 [object Uint8ClampedArray] 4041423334 3 7 [object Uint8ClampedArray] 404142434445464748493344 4 0 [object Uint8ClampedArray] 4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f3354 4 1 [object Uint8ClampedArray] 4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c3364 4 2 [object Uint8ClampedArray] 4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e3374 4 3 [object Uint8ClampedArray] 3384 4 4 [object Uint8ClampedArray] 3394 4 5 [object Uint8ClampedArray] 413404 4 6 [object Uint8ClampedArray] 41423414 4 7 [object Uint8ClampedArray] 4142434445464748493424 5 0 [object Uint8ClampedArray] 42434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f3434 5 1 [object Uint8ClampedArray] 42434445464748494a4b4c4d4e4f505152535455565758595a5b5c3444 5 2 [object Uint8ClampedArray] 42434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e3454 5 3 [object Uint8ClampedArray] 3464 5 4 [object Uint8ClampedArray] 3474 5 5 [object Uint8ClampedArray] 3484 5 6 [object Uint8ClampedArray] 423494 5 7 [object Uint8ClampedArray] 42434445464748493504 6 0 [object Uint8ClampedArray] 434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f3514 6 1 [object Uint8ClampedArray] 434445464748494a4b4c4d4e4f505152535455565758595a5b5c3524 6 2 [object Uint8ClampedArray] 434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e3534 6 3 [object Uint8ClampedArray] 3544 6 4 [object Uint8ClampedArray] 3554 6 5 [object Uint8ClampedArray] 3564 6 6 [object Uint8ClampedArray] 3574 6 7 [object Uint8ClampedArray] 434445464748493584 7 0 [object Uint8ClampedArray] 4a4b4c4d4e4f505152535455565758595a5b5c5d5e5f3594 7 1 [object Uint8ClampedArray] 4a4b4c4d4e4f505152535455565758595a5b5c3604 7 2 [object Uint8ClampedArray] 4a4b4c4d4e4f505152535455565758595a5b5c5d5e3614 7 3 [object Uint8ClampedArray] 3624 7 4 [object Uint8ClampedArray] 3634 7 5 [object Uint8ClampedArray] 3644 7 6 [object Uint8ClampedArray] 3654 7 7 [object Uint8ClampedArray] 3665 0 0 [object Uint8ClampedArray] 45464748494a4b4c4d4e4f50513675 0 1 [object Uint8ClampedArray] 45464748494a4b4c4d4e4f50513685 0 2 [object Uint8ClampedArray] 45464748494a4b4c4d4e4f50513695 0 3 [object Uint8ClampedArray] 45464748494a4b4c4d4e4f50513705 0 4 [object Uint8ClampedArray] 45464748494a4b4c4d4e4f50513715 0 5 [object Uint8ClampedArray] 45464748494a4b4c4d4e4f50513725 0 6 [object Uint8ClampedArray] 45464748494a4b4c4d4e4f50513735 0 7 [object Uint8ClampedArray] 45464748494a4b4c4d4e4f50513745 1 0 [object Uint8ClampedArray] 4f50513755 1 1 [object Uint8ClampedArray] 3765 1 2 [object Uint8ClampedArray] 4f503775 1 3 [object Uint8ClampedArray] 3785 1 4 [object Uint8ClampedArray] 3795 1 5 [object Uint8ClampedArray] 3805 1 6 [object Uint8ClampedArray] 3815 1 7 [object Uint8ClampedArray] 3825 2 0 [object Uint8ClampedArray] 513835 2 1 [object Uint8ClampedArray] 3845 2 2 [object Uint8ClampedArray] 3855 2 3 [object Uint8ClampedArray] 3865 2 4 [object Uint8ClampedArray] 3875 2 5 [object Uint8ClampedArray] 3885 2 6 [object Uint8ClampedArray] 3895 2 7 [object Uint8ClampedArray] 3905 3 0 [object Uint8ClampedArray] 45464748494a4b4c4d4e4f50513915 3 1 [object Uint8ClampedArray] 45464748494a4b4c4d4e3925 3 2 [object Uint8ClampedArray] 45464748494a4b4c4d4e4f503935 3 3 [object Uint8ClampedArray] 3945 3 4 [object Uint8ClampedArray] 453955 3 5 [object Uint8ClampedArray] 45463965 3 6 [object Uint8ClampedArray] 4546473975 3 7 [object Uint8ClampedArray] 45464748494a4b4c4d4e3985 4 0 [object Uint8ClampedArray] 464748494a4b4c4d4e4f50513995 4 1 [object Uint8ClampedArray] 464748494a4b4c4d4e4005 4 2 [object Uint8ClampedArray] 464748494a4b4c4d4e4f504015 4 3 [object Uint8ClampedArray] 4025 4 4 [object Uint8ClampedArray] 4035 4 5 [object Uint8ClampedArray] 464045 4 6 [object Uint8ClampedArray] 46474055 4 7 [object Uint8ClampedArray] 464748494a4b4c4d4e4065 5 0 [object Uint8ClampedArray] 4748494a4b4c4d4e4f50514075 5 1 [object Uint8ClampedArray] 4748494a4b4c4d4e4085 5 2 [object Uint8ClampedArray] 4748494a4b4c4d4e4f504095 5 3 [object Uint8ClampedArray] 4105 5 4 [object Uint8ClampedArray] 4115 5 5 [object Uint8ClampedArray] 4125 5 6 [object Uint8ClampedArray] 474135 5 7 [object Uint8ClampedArray] 4748494a4b4c4d4e4145 6 0 [object Uint8ClampedArray] 48494a4b4c4d4e4f50514155 6 1 [object Uint8ClampedArray] 48494a4b4c4d4e4165 6 2 [object Uint8ClampedArray] 48494a4b4c4d4e4f504175 6 3 [object Uint8ClampedArray] 4185 6 4 [object Uint8ClampedArray] 4195 6 5 [object Uint8ClampedArray] 4205 6 6 [object Uint8ClampedArray] 4215 6 7 [object Uint8ClampedArray] 48494a4b4c4d4e4225 7 0 [object Uint8ClampedArray] 4f50514235 7 1 [object Uint8ClampedArray] 4245 7 2 [object Uint8ClampedArray] 4f504255 7 3 [object Uint8ClampedArray] 4265 7 4 [object Uint8ClampedArray] 4275 7 5 [object Uint8ClampedArray] 4285 7 6 [object Uint8ClampedArray] 4295 7 7 [object Uint8ClampedArray] 4306 0 0 [object Int16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f4316 0 1 [object Int16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f4326 0 2 [object Int16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f4336 0 3 [object Int16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f4346 0 4 [object Int16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f4356 0 5 [object Int16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f4366 0 6 [object Int16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f4376 0 7 [object Int16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f4386 1 0 [object Int16Array] 5a5b5c5d5e5f4396 1 1 [object Int16Array] 4406 1 2 [object Int16Array] 5a5b5c5d4416 1 3 [object Int16Array] 4426 1 4 [object Int16Array] 4436 1 5 [object Int16Array] 4446 1 6 [object Int16Array] 4456 1 7 [object Int16Array] 4466 2 0 [object Int16Array] 5e5f4476 2 1 [object Int16Array] 4486 2 2 [object Int16Array] 4496 2 3 [object Int16Array] 4506 2 4 [object Int16Array] 4516 2 5 [object Int16Array] 4526 2 6 [object Int16Array] 4536 2 7 [object Int16Array] 4546 3 0 [object Int16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f4556 3 1 [object Int16Array] 404142434445464748494a4b4c4d4e4f505152535455565758594566 3 2 [object Int16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d4576 3 3 [object Int16Array] 4586 3 4 [object Int16Array] 40414596 3 5 [object Int16Array] 404142434606 3 6 [object Int16Array] 4041424344454616 3 7 [object Int16Array] 404142434445464748494a4b4c4d4e4f505152534626 4 0 [object Int16Array] 42434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f4636 4 1 [object Int16Array] 42434445464748494a4b4c4d4e4f505152535455565758594646 4 2 [object Int16Array] 42434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d4656 4 3 [object Int16Array] 4666 4 4 [object Int16Array] 4676 4 5 [object Int16Array] 42434686 4 6 [object Int16Array] 424344454696 4 7 [object Int16Array] 42434445464748494a4b4c4d4e4f505152534706 5 0 [object Int16Array] 4445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f4716 5 1 [object Int16Array] 4445464748494a4b4c4d4e4f505152535455565758594726 5 2 [object Int16Array] 4445464748494a4b4c4d4e4f505152535455565758595a5b5c5d4736 5 3 [object Int16Array] 4746 5 4 [object Int16Array] 4756 5 5 [object Int16Array] 4766 5 6 [object Int16Array] 44454776 5 7 [object Int16Array] 4445464748494a4b4c4d4e4f505152534786 6 0 [object Int16Array] 464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f4796 6 1 [object Int16Array] 464748494a4b4c4d4e4f505152535455565758594806 6 2 [object Int16Array] 464748494a4b4c4d4e4f505152535455565758595a5b5c5d4816 6 3 [object Int16Array] 4826 6 4 [object Int16Array] 4836 6 5 [object Int16Array] 4846 6 6 [object Int16Array] 4856 6 7 [object Int16Array] 464748494a4b4c4d4e4f505152534866 7 0 [object Int16Array] 5455565758595a5b5c5d5e5f4876 7 1 [object Int16Array] 5455565758594886 7 2 [object Int16Array] 5455565758595a5b5c5d4896 7 3 [object Int16Array] 4906 7 4 [object Int16Array] 4916 7 5 [object Int16Array] 4926 7 6 [object Int16Array] 4936 7 7 [object Int16Array] 4947 0 0 [object Int16Array] 4445464748494a4b4c4d4e4f505152534957 0 1 [object Int16Array] 4445464748494a4b4c4d4e4f505152534967 0 2 [object Int16Array] 4445464748494a4b4c4d4e4f505152534977 0 3 [object Int16Array] 4445464748494a4b4c4d4e4f505152534987 0 4 [object Int16Array] 4445464748494a4b4c4d4e4f505152534997 0 5 [object Int16Array] 4445464748494a4b4c4d4e4f505152535007 0 6 [object Int16Array] 4445464748494a4b4c4d4e4f505152535017 0 7 [object Int16Array] 4445464748494a4b4c4d4e4f505152535027 1 0 [object Int16Array] 4e4f505152535037 1 1 [object Int16Array] 5047 1 2 [object Int16Array] 4e4f50515057 1 3 [object Int16Array] 5067 1 4 [object Int16Array] 5077 1 5 [object Int16Array] 5087 1 6 [object Int16Array] 5097 1 7 [object Int16Array] 4e4f505152535107 2 0 [object Int16Array] 52535117 2 1 [object Int16Array] 5127 2 2 [object Int16Array] 5137 2 3 [object Int16Array] 5147 2 4 [object Int16Array] 5157 2 5 [object Int16Array] 5167 2 6 [object Int16Array] 5177 2 7 [object Int16Array] 52535187 3 0 [object Int16Array] 4445464748494a4b4c4d4e4f505152535197 3 1 [object Int16Array] 4445464748494a4b4c4d5207 3 2 [object Int16Array] 4445464748494a4b4c4d4e4f50515217 3 3 [object Int16Array] 5227 3 4 [object Int16Array] 44455237 3 5 [object Int16Array] 444546475247 3 6 [object Int16Array] 4445464748495257 3 7 [object Int16Array] 4445464748494a4b4c4d4e4f505152535267 4 0 [object Int16Array] 464748494a4b4c4d4e4f505152535277 4 1 [object Int16Array] 464748494a4b4c4d5287 4 2 [object Int16Array] 464748494a4b4c4d4e4f50515297 4 3 [object Int16Array] 5307 4 4 [object Int16Array] 5317 4 5 [object Int16Array] 46475327 4 6 [object Int16Array] 464748495337 4 7 [object Int16Array] 464748494a4b4c4d4e4f505152535347 5 0 [object Int16Array] 48494a4b4c4d4e4f505152535357 5 1 [object Int16Array] 48494a4b4c4d5367 5 2 [object Int16Array] 48494a4b4c4d4e4f50515377 5 3 [object Int16Array] 5387 5 4 [object Int16Array] 5397 5 5 [object Int16Array] 5407 5 6 [object Int16Array] 48495417 5 7 [object Int16Array] 48494a4b4c4d4e4f505152535427 6 0 [object Int16Array] 4a4b4c4d4e4f505152535437 6 1 [object Int16Array] 4a4b4c4d5447 6 2 [object Int16Array] 4a4b4c4d4e4f50515457 6 3 [object Int16Array] 5467 6 4 [object Int16Array] 5477 6 5 [object Int16Array] 5487 6 6 [object Int16Array] 5497 6 7 [object Int16Array] 4a4b4c4d4e4f505152535507 7 0 [object Int16Array] 5517 7 1 [object Int16Array] 5527 7 2 [object Int16Array] 5537 7 3 [object Int16Array] 5547 7 4 [object Int16Array] 5557 7 5 [object Int16Array] 5567 7 6 [object Int16Array] 5577 7 7 [object Int16Array] 5588 0 0 [object Uint16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f5598 0 1 [object Uint16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f5608 0 2 [object Uint16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f5618 0 3 [object Uint16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f5628 0 4 [object Uint16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f5638 0 5 [object Uint16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f5648 0 6 [object Uint16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f5658 0 7 [object Uint16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f5668 1 0 [object Uint16Array] 5a5b5c5d5e5f5678 1 1 [object Uint16Array] 5688 1 2 [object Uint16Array] 5a5b5c5d5698 1 3 [object Uint16Array] 5708 1 4 [object Uint16Array] 5718 1 5 [object Uint16Array] 5728 1 6 [object Uint16Array] 5738 1 7 [object Uint16Array] 5748 2 0 [object Uint16Array] 5e5f5758 2 1 [object Uint16Array] 5768 2 2 [object Uint16Array] 5778 2 3 [object Uint16Array] 5788 2 4 [object Uint16Array] 5798 2 5 [object Uint16Array] 5808 2 6 [object Uint16Array] 5818 2 7 [object Uint16Array] 5828 3 0 [object Uint16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f5838 3 1 [object Uint16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595848 3 2 [object Uint16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5858 3 3 [object Uint16Array] 5868 3 4 [object Uint16Array] 40415878 3 5 [object Uint16Array] 404142435888 3 6 [object Uint16Array] 4041424344455898 3 7 [object Uint16Array] 404142434445464748494a4b4c4d4e4f505152535908 4 0 [object Uint16Array] 42434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f5918 4 1 [object Uint16Array] 42434445464748494a4b4c4d4e4f505152535455565758595928 4 2 [object Uint16Array] 42434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5938 4 3 [object Uint16Array] 5948 4 4 [object Uint16Array] 5958 4 5 [object Uint16Array] 42435968 4 6 [object Uint16Array] 424344455978 4 7 [object Uint16Array] 42434445464748494a4b4c4d4e4f505152535988 5 0 [object Uint16Array] 4445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f5998 5 1 [object Uint16Array] 4445464748494a4b4c4d4e4f505152535455565758596008 5 2 [object Uint16Array] 4445464748494a4b4c4d4e4f505152535455565758595a5b5c5d6018 5 3 [object Uint16Array] 6028 5 4 [object Uint16Array] 6038 5 5 [object Uint16Array] 6048 5 6 [object Uint16Array] 44456058 5 7 [object Uint16Array] 4445464748494a4b4c4d4e4f505152536068 6 0 [object Uint16Array] 464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f6078 6 1 [object Uint16Array] 464748494a4b4c4d4e4f505152535455565758596088 6 2 [object Uint16Array] 464748494a4b4c4d4e4f505152535455565758595a5b5c5d6098 6 3 [object Uint16Array] 6108 6 4 [object Uint16Array] 6118 6 5 [object Uint16Array] 6128 6 6 [object Uint16Array] 6138 6 7 [object Uint16Array] 464748494a4b4c4d4e4f505152536148 7 0 [object Uint16Array] 5455565758595a5b5c5d5e5f6158 7 1 [object Uint16Array] 5455565758596168 7 2 [object Uint16Array] 5455565758595a5b5c5d6178 7 3 [object Uint16Array] 6188 7 4 [object Uint16Array] 6198 7 5 [object Uint16Array] 6208 7 6 [object Uint16Array] 6218 7 7 [object Uint16Array] 6229 0 0 [object Uint16Array] 4c4d4e4f505152535455565758595a5b6239 0 1 [object Uint16Array] 4c4d4e4f505152535455565758595a5b6249 0 2 [object Uint16Array] 4c4d4e4f505152535455565758595a5b6259 0 3 [object Uint16Array] 4c4d4e4f505152535455565758595a5b6269 0 4 [object Uint16Array] 4c4d4e4f505152535455565758595a5b6279 0 5 [object Uint16Array] 4c4d4e4f505152535455565758595a5b6289 0 6 [object Uint16Array] 4c4d4e4f505152535455565758595a5b6299 0 7 [object Uint16Array] 4c4d4e4f505152535455565758595a5b6309 1 0 [object Uint16Array] 565758595a5b6319 1 1 [object Uint16Array] 6329 1 2 [object Uint16Array] 565758596339 1 3 [object Uint16Array] 6349 1 4 [object Uint16Array] 6359 1 5 [object Uint16Array] 6369 1 6 [object Uint16Array] 6379 1 7 [object Uint16Array] 565758595a5b6389 2 0 [object Uint16Array] 5a5b6399 2 1 [object Uint16Array] 6409 2 2 [object Uint16Array] 6419 2 3 [object Uint16Array] 6429 2 4 [object Uint16Array] 6439 2 5 [object Uint16Array] 6449 2 6 [object Uint16Array] 6459 2 7 [object Uint16Array] 5a5b6469 3 0 [object Uint16Array] 4c4d4e4f505152535455565758595a5b6479 3 1 [object Uint16Array] 4c4d4e4f5051525354556489 3 2 [object Uint16Array] 4c4d4e4f505152535455565758596499 3 3 [object Uint16Array] 6509 3 4 [object Uint16Array] 4c4d6519 3 5 [object Uint16Array] 4c4d4e4f6529 3 6 [object Uint16Array] 4c4d4e4f50516539 3 7 [object Uint16Array] 4c4d4e4f505152535455565758595a5b6549 4 0 [object Uint16Array] 4e4f505152535455565758595a5b6559 4 1 [object Uint16Array] 4e4f5051525354556569 4 2 [object Uint16Array] 4e4f505152535455565758596579 4 3 [object Uint16Array] 6589 4 4 [object Uint16Array] 6599 4 5 [object Uint16Array] 4e4f6609 4 6 [object Uint16Array] 4e4f50516619 4 7 [object Uint16Array] 4e4f505152535455565758595a5b6629 5 0 [object Uint16Array] 505152535455565758595a5b6639 5 1 [object Uint16Array] 5051525354556649 5 2 [object Uint16Array] 505152535455565758596659 5 3 [object Uint16Array] 6669 5 4 [object Uint16Array] 6679 5 5 [object Uint16Array] 6689 5 6 [object Uint16Array] 50516699 5 7 [object Uint16Array] 505152535455565758595a5b6709 6 0 [object Uint16Array] 52535455565758595a5b6719 6 1 [object Uint16Array] 525354556729 6 2 [object Uint16Array] 52535455565758596739 6 3 [object Uint16Array] 6749 6 4 [object Uint16Array] 6759 6 5 [object Uint16Array] 6769 6 6 [object Uint16Array] 6779 6 7 [object Uint16Array] 52535455565758595a5b6789 7 0 [object Uint16Array] 6799 7 1 [object Uint16Array] 6809 7 2 [object Uint16Array] 6819 7 3 [object Uint16Array] 6829 7 4 [object Uint16Array] 6839 7 5 [object Uint16Array] 6849 7 6 [object Uint16Array] 6859 7 7 [object Uint16Array] 68610 0 0 [object Int32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f68710 0 1 [object Int32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f68810 0 2 [object Int32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f68910 0 3 [object Int32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f69010 0 4 [object Int32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f69110 0 5 [object Int32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f69210 0 6 [object Int32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f69310 0 7 [object Int32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f69410 1 0 [object Int32Array] 5455565758595a5b5c5d5e5f69510 1 1 [object Int32Array] 69610 1 2 [object Int32Array] 5455565758595a5b69710 1 3 [object Int32Array] 69810 1 4 [object Int32Array] 69910 1 5 [object Int32Array] 70010 1 6 [object Int32Array] 70110 1 7 [object Int32Array] 5455565758595a5b5c5d5e5f70210 2 0 [object Int32Array] 5c5d5e5f70310 2 1 [object Int32Array] 70410 2 2 [object Int32Array] 70510 2 3 [object Int32Array] 70610 2 4 [object Int32Array] 70710 2 5 [object Int32Array] 70810 2 6 [object Int32Array] 70910 2 7 [object Int32Array] 5c5d5e5f71010 3 0 [object Int32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f71110 3 1 [object Int32Array] 404142434445464748494a4b4c4d4e4f5051525371210 3 2 [object Int32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b71310 3 3 [object Int32Array] 71410 3 4 [object Int32Array] 4041424371510 3 5 [object Int32Array] 404142434445464771610 3 6 [object Int32Array] 404142434445464748494a4b71710 3 7 [object Int32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f71810 4 0 [object Int32Array] 4445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f71910 4 1 [object Int32Array] 4445464748494a4b4c4d4e4f5051525372010 4 2 [object Int32Array] 4445464748494a4b4c4d4e4f505152535455565758595a5b72110 4 3 [object Int32Array] 72210 4 4 [object Int32Array] 72310 4 5 [object Int32Array] 4445464772410 4 6 [object Int32Array] 4445464748494a4b72510 4 7 [object Int32Array] 4445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f72610 5 0 [object Int32Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f72710 5 1 [object Int32Array] 48494a4b4c4d4e4f5051525372810 5 2 [object Int32Array] 48494a4b4c4d4e4f505152535455565758595a5b72910 5 3 [object Int32Array] 73010 5 4 [object Int32Array] 73110 5 5 [object Int32Array] 73210 5 6 [object Int32Array] 48494a4b73310 5 7 [object Int32Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f73410 6 0 [object Int32Array] 4c4d4e4f505152535455565758595a5b5c5d5e5f73510 6 1 [object Int32Array] 4c4d4e4f5051525373610 6 2 [object Int32Array] 4c4d4e4f505152535455565758595a5b73710 6 3 [object Int32Array] 73810 6 4 [object Int32Array] 73910 6 5 [object Int32Array] 74010 6 6 [object Int32Array] 74110 6 7 [object Int32Array] 4c4d4e4f505152535455565758595a5b5c5d5e5f74210 7 0 [object Int32Array] 74310 7 1 [object Int32Array] 74410 7 2 [object Int32Array] 74510 7 3 [object Int32Array] 74610 7 4 [object Int32Array] 74710 7 5 [object Int32Array] 74810 7 6 [object Int32Array] 74910 7 7 [object Int32Array] 75011 0 0 [object Int32Array] 4445464748494a4b4c4d4e4f5051525375111 0 1 [object Int32Array] 4445464748494a4b4c4d4e4f5051525375211 0 2 [object Int32Array] 4445464748494a4b4c4d4e4f5051525375311 0 3 [object Int32Array] 4445464748494a4b4c4d4e4f5051525375411 0 4 [object Int32Array] 4445464748494a4b4c4d4e4f5051525375511 0 5 [object Int32Array] 4445464748494a4b4c4d4e4f5051525375611 0 6 [object Int32Array] 4445464748494a4b4c4d4e4f5051525375711 0 7 [object Int32Array] 4445464748494a4b4c4d4e4f5051525375811 1 0 [object Int32Array] 48494a4b4c4d4e4f5051525375911 1 1 [object Int32Array] 76011 1 2 [object Int32Array] 48494a4b4c4d4e4f76111 1 3 [object Int32Array] 76211 1 4 [object Int32Array] 76311 1 5 [object Int32Array] 48494a4b76411 1 6 [object Int32Array] 48494a4b4c4d4e4f76511 1 7 [object Int32Array] 48494a4b4c4d4e4f5051525376611 2 0 [object Int32Array] 5051525376711 2 1 [object Int32Array] 76811 2 2 [object Int32Array] 76911 2 3 [object Int32Array] 77011 2 4 [object Int32Array] 77111 2 5 [object Int32Array] 77211 2 6 [object Int32Array] 77311 2 7 [object Int32Array] 5051525377411 3 0 [object Int32Array] 4445464748494a4b4c4d4e4f5051525377511 3 1 [object Int32Array] 4445464777611 3 2 [object Int32Array] 4445464748494a4b4c4d4e4f77711 3 3 [object Int32Array] 77811 3 4 [object Int32Array] 4445464777911 3 5 [object Int32Array] 4445464748494a4b78011 3 6 [object Int32Array] 4445464748494a4b4c4d4e4f78111 3 7 [object Int32Array] 4445464748494a4b4c4d4e4f5051525378211 4 0 [object Int32Array] 48494a4b4c4d4e4f5051525378311 4 1 [object Int32Array] 78411 4 2 [object Int32Array] 48494a4b4c4d4e4f78511 4 3 [object Int32Array] 78611 4 4 [object Int32Array] 78711 4 5 [object Int32Array] 48494a4b78811 4 6 [object Int32Array] 48494a4b4c4d4e4f78911 4 7 [object Int32Array] 48494a4b4c4d4e4f5051525379011 5 0 [object Int32Array] 4c4d4e4f5051525379111 5 1 [object Int32Array] 79211 5 2 [object Int32Array] 4c4d4e4f79311 5 3 [object Int32Array] 79411 5 4 [object Int32Array] 79511 5 5 [object Int32Array] 79611 5 6 [object Int32Array] 4c4d4e4f79711 5 7 [object Int32Array] 4c4d4e4f5051525379811 6 0 [object Int32Array] 5051525379911 6 1 [object Int32Array] 80011 6 2 [object Int32Array] 80111 6 3 [object Int32Array] 80211 6 4 [object Int32Array] 80311 6 5 [object Int32Array] 80411 6 6 [object Int32Array] 80511 6 7 [object Int32Array] 5051525380611 7 0 [object Int32Array] 80711 7 1 [object Int32Array] 80811 7 2 [object Int32Array] 80911 7 3 [object Int32Array] 81011 7 4 [object Int32Array] 81111 7 5 [object Int32Array] 81211 7 6 [object Int32Array] 81311 7 7 [object Int32Array] 81412 0 0 [object Uint32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f81512 0 1 [object Uint32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f81612 0 2 [object Uint32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f81712 0 3 [object Uint32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f81812 0 4 [object Uint32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f81912 0 5 [object Uint32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f82012 0 6 [object Uint32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f82112 0 7 [object Uint32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f82212 1 0 [object Uint32Array] 5455565758595a5b5c5d5e5f82312 1 1 [object Uint32Array] 82412 1 2 [object Uint32Array] 5455565758595a5b82512 1 3 [object Uint32Array] 82612 1 4 [object Uint32Array] 82712 1 5 [object Uint32Array] 82812 1 6 [object Uint32Array] 82912 1 7 [object Uint32Array] 5455565758595a5b5c5d5e5f83012 2 0 [object Uint32Array] 5c5d5e5f83112 2 1 [object Uint32Array] 83212 2 2 [object Uint32Array] 83312 2 3 [object Uint32Array] 83412 2 4 [object Uint32Array] 83512 2 5 [object Uint32Array] 83612 2 6 [object Uint32Array] 83712 2 7 [object Uint32Array] 5c5d5e5f83812 3 0 [object Uint32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f83912 3 1 [object Uint32Array] 404142434445464748494a4b4c4d4e4f5051525384012 3 2 [object Uint32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b84112 3 3 [object Uint32Array] 84212 3 4 [object Uint32Array] 4041424384312 3 5 [object Uint32Array] 404142434445464784412 3 6 [object Uint32Array] 404142434445464748494a4b84512 3 7 [object Uint32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f84612 4 0 [object Uint32Array] 4445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f84712 4 1 [object Uint32Array] 4445464748494a4b4c4d4e4f5051525384812 4 2 [object Uint32Array] 4445464748494a4b4c4d4e4f505152535455565758595a5b84912 4 3 [object Uint32Array] 85012 4 4 [object Uint32Array] 85112 4 5 [object Uint32Array] 4445464785212 4 6 [object Uint32Array] 4445464748494a4b85312 4 7 [object Uint32Array] 4445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f85412 5 0 [object Uint32Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f85512 5 1 [object Uint32Array] 48494a4b4c4d4e4f5051525385612 5 2 [object Uint32Array] 48494a4b4c4d4e4f505152535455565758595a5b85712 5 3 [object Uint32Array] 85812 5 4 [object Uint32Array] 85912 5 5 [object Uint32Array] 86012 5 6 [object Uint32Array] 48494a4b86112 5 7 [object Uint32Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f86212 6 0 [object Uint32Array] 4c4d4e4f505152535455565758595a5b5c5d5e5f86312 6 1 [object Uint32Array] 4c4d4e4f5051525386412 6 2 [object Uint32Array] 4c4d4e4f505152535455565758595a5b86512 6 3 [object Uint32Array] 86612 6 4 [object Uint32Array] 86712 6 5 [object Uint32Array] 86812 6 6 [object Uint32Array] 86912 6 7 [object Uint32Array] 4c4d4e4f505152535455565758595a5b5c5d5e5f87012 7 0 [object Uint32Array] 87112 7 1 [object Uint32Array] 87212 7 2 [object Uint32Array] 87312 7 3 [object Uint32Array] 87412 7 4 [object Uint32Array] 87512 7 5 [object Uint32Array] 87612 7 6 [object Uint32Array] 87712 7 7 [object Uint32Array] 87813 0 0 [object Uint32Array] 4c4d4e4f505152535455565758595a5b87913 0 1 [object Uint32Array] 4c4d4e4f505152535455565758595a5b88013 0 2 [object Uint32Array] 4c4d4e4f505152535455565758595a5b88113 0 3 [object Uint32Array] 4c4d4e4f505152535455565758595a5b88213 0 4 [object Uint32Array] 4c4d4e4f505152535455565758595a5b88313 0 5 [object Uint32Array] 4c4d4e4f505152535455565758595a5b88413 0 6 [object Uint32Array] 4c4d4e4f505152535455565758595a5b88513 0 7 [object Uint32Array] 4c4d4e4f505152535455565758595a5b88613 1 0 [object Uint32Array] 505152535455565758595a5b88713 1 1 [object Uint32Array] 88813 1 2 [object Uint32Array] 505152535455565788913 1 3 [object Uint32Array] 89013 1 4 [object Uint32Array] 89113 1 5 [object Uint32Array] 5051525389213 1 6 [object Uint32Array] 505152535455565789313 1 7 [object Uint32Array] 505152535455565758595a5b89413 2 0 [object Uint32Array] 58595a5b89513 2 1 [object Uint32Array] 89613 2 2 [object Uint32Array] 89713 2 3 [object Uint32Array] 89813 2 4 [object Uint32Array] 89913 2 5 [object Uint32Array] 90013 2 6 [object Uint32Array] 90113 2 7 [object Uint32Array] 58595a5b90213 3 0 [object Uint32Array] 4c4d4e4f505152535455565758595a5b90313 3 1 [object Uint32Array] 4c4d4e4f90413 3 2 [object Uint32Array] 4c4d4e4f505152535455565790513 3 3 [object Uint32Array] 90613 3 4 [object Uint32Array] 4c4d4e4f90713 3 5 [object Uint32Array] 4c4d4e4f5051525390813 3 6 [object Uint32Array] 4c4d4e4f505152535455565790913 3 7 [object Uint32Array] 4c4d4e4f505152535455565758595a5b91013 4 0 [object Uint32Array] 505152535455565758595a5b91113 4 1 [object Uint32Array] 91213 4 2 [object Uint32Array] 505152535455565791313 4 3 [object Uint32Array] 91413 4 4 [object Uint32Array] 91513 4 5 [object Uint32Array] 5051525391613 4 6 [object Uint32Array] 505152535455565791713 4 7 [object Uint32Array] 505152535455565758595a5b91813 5 0 [object Uint32Array] 5455565758595a5b91913 5 1 [object Uint32Array] 92013 5 2 [object Uint32Array] 5455565792113 5 3 [object Uint32Array] 92213 5 4 [object Uint32Array] 92313 5 5 [object Uint32Array] 92413 5 6 [object Uint32Array] 5455565792513 5 7 [object Uint32Array] 5455565758595a5b92613 6 0 [object Uint32Array] 58595a5b92713 6 1 [object Uint32Array] 92813 6 2 [object Uint32Array] 92913 6 3 [object Uint32Array] 93013 6 4 [object Uint32Array] 93113 6 5 [object Uint32Array] 93213 6 6 [object Uint32Array] 93313 6 7 [object Uint32Array] 58595a5b93413 7 0 [object Uint32Array] 93513 7 1 [object Uint32Array] 93613 7 2 [object Uint32Array] 93713 7 3 [object Uint32Array] 93813 7 4 [object Uint32Array] 93913 7 5 [object Uint32Array] 94013 7 6 [object Uint32Array] 94113 7 7 [object Uint32Array] 94214 0 0 [object Float32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f94314 0 1 [object Float32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f94414 0 2 [object Float32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f94514 0 3 [object Float32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f94614 0 4 [object Float32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f94714 0 5 [object Float32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f94814 0 6 [object Float32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f94914 0 7 [object Float32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f95014 1 0 [object Float32Array] 5455565758595a5b5c5d5e5f95114 1 1 [object Float32Array] 95214 1 2 [object Float32Array] 5455565758595a5b95314 1 3 [object Float32Array] 95414 1 4 [object Float32Array] 95514 1 5 [object Float32Array] 95614 1 6 [object Float32Array] 95714 1 7 [object Float32Array] 5455565758595a5b5c5d5e5f95814 2 0 [object Float32Array] 5c5d5e5f95914 2 1 [object Float32Array] 96014 2 2 [object Float32Array] 96114 2 3 [object Float32Array] 96214 2 4 [object Float32Array] 96314 2 5 [object Float32Array] 96414 2 6 [object Float32Array] 96514 2 7 [object Float32Array] 5c5d5e5f96614 3 0 [object Float32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f96714 3 1 [object Float32Array] 404142434445464748494a4b4c4d4e4f5051525396814 3 2 [object Float32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b96914 3 3 [object Float32Array] 97014 3 4 [object Float32Array] 4041424397114 3 5 [object Float32Array] 404142434445464797214 3 6 [object Float32Array] 404142434445464748494a4b97314 3 7 [object Float32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f97414 4 0 [object Float32Array] 4445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f97514 4 1 [object Float32Array] 4445464748494a4b4c4d4e4f5051525397614 4 2 [object Float32Array] 4445464748494a4b4c4d4e4f505152535455565758595a5b97714 4 3 [object Float32Array] 97814 4 4 [object Float32Array] 97914 4 5 [object Float32Array] 4445464798014 4 6 [object Float32Array] 4445464748494a4b98114 4 7 [object Float32Array] 4445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f98214 5 0 [object Float32Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f98314 5 1 [object Float32Array] 48494a4b4c4d4e4f5051525398414 5 2 [object Float32Array] 48494a4b4c4d4e4f505152535455565758595a5b98514 5 3 [object Float32Array] 98614 5 4 [object Float32Array] 98714 5 5 [object Float32Array] 98814 5 6 [object Float32Array] 48494a4b98914 5 7 [object Float32Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f99014 6 0 [object Float32Array] 4c4d4e4f505152535455565758595a5b5c5d5e5f99114 6 1 [object Float32Array] 4c4d4e4f5051525399214 6 2 [object Float32Array] 4c4d4e4f505152535455565758595a5b99314 6 3 [object Float32Array] 99414 6 4 [object Float32Array] 99514 6 5 [object Float32Array] 99614 6 6 [object Float32Array] 99714 6 7 [object Float32Array] 4c4d4e4f505152535455565758595a5b5c5d5e5f99814 7 0 [object Float32Array] 99914 7 1 [object Float32Array] 100014 7 2 [object Float32Array] 100114 7 3 [object Float32Array] 100214 7 4 [object Float32Array] 100314 7 5 [object Float32Array] 100414 7 6 [object Float32Array] 100514 7 7 [object Float32Array] 100615 0 0 [object Float32Array] 4445464748494a4b4c4d4e4f50515253100715 0 1 [object Float32Array] 4445464748494a4b4c4d4e4f50515253100815 0 2 [object Float32Array] 4445464748494a4b4c4d4e4f50515253100915 0 3 [object Float32Array] 4445464748494a4b4c4d4e4f50515253101015 0 4 [object Float32Array] 4445464748494a4b4c4d4e4f50515253101115 0 5 [object Float32Array] 4445464748494a4b4c4d4e4f50515253101215 0 6 [object Float32Array] 4445464748494a4b4c4d4e4f50515253101315 0 7 [object Float32Array] 4445464748494a4b4c4d4e4f50515253101415 1 0 [object Float32Array] 48494a4b4c4d4e4f50515253101515 1 1 [object Float32Array] 101615 1 2 [object Float32Array] 48494a4b4c4d4e4f101715 1 3 [object Float32Array] 101815 1 4 [object Float32Array] 101915 1 5 [object Float32Array] 48494a4b102015 1 6 [object Float32Array] 48494a4b4c4d4e4f102115 1 7 [object Float32Array] 48494a4b4c4d4e4f50515253102215 2 0 [object Float32Array] 50515253102315 2 1 [object Float32Array] 102415 2 2 [object Float32Array] 102515 2 3 [object Float32Array] 102615 2 4 [object Float32Array] 102715 2 5 [object Float32Array] 102815 2 6 [object Float32Array] 102915 2 7 [object Float32Array] 50515253103015 3 0 [object Float32Array] 4445464748494a4b4c4d4e4f50515253103115 3 1 [object Float32Array] 44454647103215 3 2 [object Float32Array] 4445464748494a4b4c4d4e4f103315 3 3 [object Float32Array] 103415 3 4 [object Float32Array] 44454647103515 3 5 [object Float32Array] 4445464748494a4b103615 3 6 [object Float32Array] 4445464748494a4b4c4d4e4f103715 3 7 [object Float32Array] 4445464748494a4b4c4d4e4f50515253103815 4 0 [object Float32Array] 48494a4b4c4d4e4f50515253103915 4 1 [object Float32Array] 104015 4 2 [object Float32Array] 48494a4b4c4d4e4f104115 4 3 [object Float32Array] 104215 4 4 [object Float32Array] 104315 4 5 [object Float32Array] 48494a4b104415 4 6 [object Float32Array] 48494a4b4c4d4e4f104515 4 7 [object Float32Array] 48494a4b4c4d4e4f50515253104615 5 0 [object Float32Array] 4c4d4e4f50515253104715 5 1 [object Float32Array] 104815 5 2 [object Float32Array] 4c4d4e4f104915 5 3 [object Float32Array] 105015 5 4 [object Float32Array] 105115 5 5 [object Float32Array] 105215 5 6 [object Float32Array] 4c4d4e4f105315 5 7 [object Float32Array] 4c4d4e4f50515253105415 6 0 [object Float32Array] 50515253105515 6 1 [object Float32Array] 105615 6 2 [object Float32Array] 105715 6 3 [object Float32Array] 105815 6 4 [object Float32Array] 105915 6 5 [object Float32Array] 106015 6 6 [object Float32Array] 106115 6 7 [object Float32Array] 50515253106215 7 0 [object Float32Array] 106315 7 1 [object Float32Array] 106415 7 2 [object Float32Array] 106515 7 3 [object Float32Array] 106615 7 4 [object Float32Array] 106715 7 5 [object Float32Array] 106815 7 6 [object Float32Array] 106915 7 7 [object Float32Array] 107016 0 0 [object Float64Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f107116 0 1 [object Float64Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f107216 0 2 [object Float64Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f107316 0 3 [object Float64Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f107416 0 4 [object Float64Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f107516 0 5 [object Float64Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f107616 0 6 [object Float64Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f107716 0 7 [object Float64Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f107816 1 0 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f107916 1 1 [object Float64Array] 108016 1 2 [object Float64Array] 48494a4b4c4d4e4f5051525354555657108116 1 3 [object Float64Array] 108216 1 4 [object Float64Array] 108316 1 5 [object Float64Array] 48494a4b4c4d4e4f108416 1 6 [object Float64Array] 48494a4b4c4d4e4f5051525354555657108516 1 7 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f108616 2 0 [object Float64Array] 58595a5b5c5d5e5f108716 2 1 [object Float64Array] 108816 2 2 [object Float64Array] 108916 2 3 [object Float64Array] 109016 2 4 [object Float64Array] 109116 2 5 [object Float64Array] 109216 2 6 [object Float64Array] 109316 2 7 [object Float64Array] 58595a5b5c5d5e5f109416 3 0 [object Float64Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f109516 3 1 [object Float64Array] 4041424344454647109616 3 2 [object Float64Array] 404142434445464748494a4b4c4d4e4f5051525354555657109716 3 3 [object Float64Array] 109816 3 4 [object Float64Array] 4041424344454647109916 3 5 [object Float64Array] 404142434445464748494a4b4c4d4e4f110016 3 6 [object Float64Array] 404142434445464748494a4b4c4d4e4f5051525354555657110116 3 7 [object Float64Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f110216 4 0 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f110316 4 1 [object Float64Array] 110416 4 2 [object Float64Array] 48494a4b4c4d4e4f5051525354555657110516 4 3 [object Float64Array] 110616 4 4 [object Float64Array] 110716 4 5 [object Float64Array] 48494a4b4c4d4e4f110816 4 6 [object Float64Array] 48494a4b4c4d4e4f5051525354555657110916 4 7 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f111016 5 0 [object Float64Array] 505152535455565758595a5b5c5d5e5f111116 5 1 [object Float64Array] 111216 5 2 [object Float64Array] 5051525354555657111316 5 3 [object Float64Array] 111416 5 4 [object Float64Array] 111516 5 5 [object Float64Array] 111616 5 6 [object Float64Array] 5051525354555657111716 5 7 [object Float64Array] 505152535455565758595a5b5c5d5e5f111816 6 0 [object Float64Array] 58595a5b5c5d5e5f111916 6 1 [object Float64Array] 112016 6 2 [object Float64Array] 112116 6 3 [object Float64Array] 112216 6 4 [object Float64Array] 112316 6 5 [object Float64Array] 112416 6 6 [object Float64Array] 112516 6 7 [object Float64Array] 58595a5b5c5d5e5f112616 7 0 [object Float64Array] 112716 7 1 [object Float64Array] 112816 7 2 [object Float64Array] 112916 7 3 [object Float64Array] 113016 7 4 [object Float64Array] 113116 7 5 [object Float64Array] 113216 7 6 [object Float64Array] 113316 7 7 [object Float64Array] 113417 0 0 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f113517 0 1 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f113617 0 2 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f113717 0 3 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f113817 0 4 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f113917 0 5 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f114017 0 6 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f114117 0 7 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f114217 1 0 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f114317 1 1 [object Float64Array] 114417 1 2 [object Float64Array] 48494a4b4c4d4e4f5051525354555657114517 1 3 [object Float64Array] 114617 1 4 [object Float64Array] 48494a4b4c4d4e4f114717 1 5 [object Float64Array] 48494a4b4c4d4e4f5051525354555657114817 1 6 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f114917 1 7 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f115017 2 0 [object Float64Array] 58595a5b5c5d5e5f115117 2 1 [object Float64Array] 115217 2 2 [object Float64Array] 115317 2 3 [object Float64Array] 115417 2 4 [object Float64Array] 115517 2 5 [object Float64Array] 115617 2 6 [object Float64Array] 58595a5b5c5d5e5f115717 2 7 [object Float64Array] 58595a5b5c5d5e5f115817 3 0 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f115917 3 1 [object Float64Array] 116017 3 2 [object Float64Array] 48494a4b4c4d4e4f5051525354555657116117 3 3 [object Float64Array] 116217 3 4 [object Float64Array] 48494a4b4c4d4e4f116317 3 5 [object Float64Array] 48494a4b4c4d4e4f5051525354555657116417 3 6 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f116517 3 7 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f116617 4 0 [object Float64Array] 505152535455565758595a5b5c5d5e5f116717 4 1 [object Float64Array] 116817 4 2 [object Float64Array] 5051525354555657116917 4 3 [object Float64Array] 117017 4 4 [object Float64Array] 117117 4 5 [object Float64Array] 5051525354555657117217 4 6 [object Float64Array] 505152535455565758595a5b5c5d5e5f117317 4 7 [object Float64Array] 505152535455565758595a5b5c5d5e5f117417 5 0 [object Float64Array] 58595a5b5c5d5e5f117517 5 1 [object Float64Array] 117617 5 2 [object Float64Array] 117717 5 3 [object Float64Array] 117817 5 4 [object Float64Array] 117917 5 5 [object Float64Array] 118017 5 6 [object Float64Array] 58595a5b5c5d5e5f118117 5 7 [object Float64Array] 58595a5b5c5d5e5f118217 6 0 [object Float64Array] 118317 6 1 [object Float64Array] 118417 6 2 [object Float64Array] 118517 6 3 [object Float64Array] 118617 6 4 [object Float64Array] 118717 6 5 [object Float64Array] 118817 6 6 [object Float64Array] 118917 6 7 [object Float64Array] 119017 7 0 [object Float64Array] 119117 7 1 [object Float64Array] 119217 7 2 [object Float64Array] 119317 7 3 [object Float64Array] 119417 7 4 [object Float64Array] 119517 7 5 [object Float64Array] 119617 7 6 [object Float64Array] 119717 7 7 [object Float64Array] 1198===*/1199function subarrayBruteforceTest() {1200 var buf = new ArrayBuffer(32);1201 var tmp;1202 var i;1203 tmp = new Uint8Array(buf);1204 for (i = 0; i < tmp.length; i++) {1205 tmp[i] = 0x40 + i;1206 }1207 // Include both 1:1 mapped views and offsetted views, we want to test1208 // both with subarray().1209 var views = [1210 new Int8Array(buf),1211 new Int8Array(buf, 5, 13),1212 new Uint8Array(buf),1213 new Uint8Array(buf, 5, 13),1214 new Uint8ClampedArray(buf),1215 new Uint8ClampedArray(buf, 5, 13),1216 new Int16Array(buf),1217 new Int16Array(buf, 4, 8),1218 new Uint16Array(buf),1219 new Uint16Array(buf, 12, 8),1220 new Int32Array(buf),1221 new Int32Array(buf, 4, 4),1222 new Uint32Array(buf),1223 new Uint32Array(buf, 12, 4),1224 new Float32Array(buf),1225 new Float32Array(buf, 4, 4),1226 new Float64Array(buf),1227 new Float64Array(buf, 8, 3),1228 ];1229 var offsets = [1230 'NONE', -3, -1, 0, 1, 2, '3', 101231 ];1232 views.forEach(function (view, idx1) {1233 offsets.forEach(function (start, idx2) {1234 offsets.forEach(function (end, idx3) {1235 var sub;1236 try {1237 if (start === 'NONE') {1238 sub = view.subarray();1239 } else if (end === 'NONE') {1240 sub = view.subarray(start);1241 } else {1242 sub = view.subarray(start, end);1243 }1244 print(idx1, idx2, idx3, Object.prototype.toString.call(sub), printableBuffer(sub));1245 } catch (e) {1246 print(idx1, idx2, idx3, Object.prototype.toString.call(sub), e.name, printableBuffer(sub));1247 }1248 });1249 });1250 });1251}1252try {1253 print('bruteforce test');1254 subarrayBruteforceTest();1255} catch (e) {1256 print(e.stack || e);...

Full Screen

Full Screen

bitMasks.ts

Source:bitMasks.ts Github

copy

Full Screen

1export const BITMAP_TOP_LEFT_8: Uint16Array = new Uint16Array([2 0xFF00, 0xFE00, 0xFC00, 0xF800, 0xF000, 0xE000, 0xC000, 0x8000,3 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,4]);export const BITMAP_TOP_LEFT_8_STRIP: Uint16Array = new Uint16Array([5 0x00FF, 0x01FE, 0x03FC, 0x07F8, 0x0FF0, 0x1FE0, 0x3FC0, 0x7F80,6 0xFF00, 0xFE00, 0xFC00, 0xF800, 0xF000, 0xE000, 0xC000, 0x8000,7]);8export const BITMAP_TOP_RIGHT_8: Uint16Array = new Uint16Array([9 0x00FF, 0x007F, 0x003F, 0x001F, 0x000F, 0x0007, 0x0003, 0x0001,10 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,11]);12export const BITMAP_TOP_RIGHT_8_STRIP: Uint16Array = new Uint16Array([13 0xFF00, 0x7F80, 0x3FC0, 0x1FE0, 0x0FF0, 0x07F8, 0x03FC, 0x01FE,14 0x00FF, 0x007F, 0x003F, 0x001F, 0x000F, 0x0007, 0x0003, 0x0001,15]);16export const BITMAP_TOP_LEFT: Uint16Array = new Uint16Array([17 0xFFFF, 0xFFFE, 0xFFFC, 0xFFF8, 0xFFF0, 0xFFE0, 0xFFC0, 0xFF80,18 0xFF00, 0xFE00, 0xFC00, 0xF800, 0xF000, 0xE000, 0xC000, 0x8000,19]);20export const BITMAP_TOP_RIGHT: Uint16Array = new Uint16Array([21 0xFFFF, 0x7FFF, 0x3FFF, 0x1FFF, 0x0FFF, 0x07FF, 0x03FF, 0x01FF,22 0x00FF, 0x007F, 0x003F, 0x001F, 0x000F, 0x0007, 0x0003, 0x0001,23]);24export const BITMAP_BOTTOM_LEFT: Uint16Array = new Uint16Array([...BITMAP_TOP_LEFT].reverse());25export const BITMAP_BOTTOM_RIGHT: Uint16Array = new Uint16Array([...BITMAP_TOP_RIGHT].reverse());26export const BITMAP_BOTTOM_LEFT_8: Uint16Array = new Uint16Array([...BITMAP_TOP_LEFT_8].reverse());27export const BITMAP_BOTTOM_RIGHT_8: Uint16Array = new Uint16Array([...BITMAP_TOP_RIGHT_8].reverse());28export const BITMAP_BOTTOM_LEFT_8_STRIP: Uint16Array = new Uint16Array([...BITMAP_TOP_LEFT_8_STRIP].reverse());29export const BITMAP_BOTTOM_RIGHT_8_STRIP: Uint16Array = new Uint16Array([...BITMAP_TOP_RIGHT_8_STRIP].reverse());30export const BITMAP_TOP: Uint16Array = new Uint16Array([31 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF,32 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,33]);34export const BITMAP_TOP_6: Uint16Array = new Uint16Array([35 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF, 0x0000, 0x0000,36 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,37]);38export const BITMAP_BOTTOM: Uint16Array = new Uint16Array([39 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,40 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF,41]);42export const BITMAP_BOTTOM_6: Uint16Array = new Uint16Array([43 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,44 0x0000, 0x0000, 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF,45]);46export const BITMAP_LEFT: Uint16Array = new Uint16Array([47 0xFF00, 0xFF00, 0xFF00, 0xFF00, 0xFF00, 0xFF00, 0xFF00, 0xFF00,48 0xFF00, 0xFF00, 0xFF00, 0xFF00, 0xFF00, 0xFF00, 0xFF00, 0xFF00,49]);50export const BITMAP_BOTTOM_LEFT_QUARTER: Uint16Array = new Uint16Array([51 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,52 0xFF00, 0xFF00, 0xFF00, 0xFF00, 0xFF00, 0xFF00, 0xFF00, 0xFF00,53]);54export const BITMAP_RIGHT: Uint16Array = new Uint16Array([55 0x00FF, 0x00FF, 0x00FF, 0x00FF, 0x00FF, 0x00FF, 0x00FF, 0x00FF,56 0x00FF, 0x00FF, 0x00FF, 0x00FF, 0x00FF, 0x00FF, 0x00FF, 0x00FF,57]);58export const BITMAP_BOTTOM_RIGHT_QUARTER: Uint16Array = new Uint16Array([59 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,60 0x00FF, 0x00FF, 0x00FF, 0x00FF, 0x00FF, 0x00FF, 0x00FF, 0x00FF,61]);62export const BITMAP_TOP_12: Uint16Array = new Uint16Array([63 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF,64 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF, 0, 0, 0, 0,65]);66export const BITMAP_BOTTOM_12: Uint16Array = new Uint16Array([67 0, 0, 0, 0, 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF,68 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF,69]);70export const BITMAP_LEFT_12: Uint16Array = new Uint16Array([71 0xFFF0, 0xFFF0, 0xFFF0, 0xFFF0, 0xFFF0, 0xFFF0, 0xFFF0, 0xFFF0,72 0xFFF0, 0xFFF0, 0xFFF0, 0xFFF0, 0xFFF0, 0xFFF0, 0xFFF0, 0xFFF0,73]);74export const BITMAP_RIGHT_12: Uint16Array = new Uint16Array([75 0x0FFF, 0x0FFF, 0x0FFF, 0x0FFF, 0x0FFF, 0x0FFF, 0x0FFF, 0x0FFF,76 0x0FFF, 0x0FFF, 0x0FFF, 0x0FFF, 0x0FFF, 0x0FFF, 0x0FFF, 0x0FFF,77]);78export const BITMAP_LEFT_6: Uint16Array = new Uint16Array([79 0xFC00, 0xFC00, 0xFC00, 0xFC00, 0xFC00, 0xFC00, 0xFC00, 0xFC00,80 0xFC00, 0xFC00, 0xFC00, 0xFC00, 0xFC00, 0xFC00, 0xFC00, 0xFC00,81]);82export const BITMAP_RIGHT_6: Uint16Array = new Uint16Array([83 0x003F, 0x003F, 0x003F, 0x003F, 0x003F, 0x003F, 0x003F, 0x003F,84 0x003F, 0x003F, 0x003F, 0x003F, 0x003F, 0x003F, 0x003F, 0x003F,85]);86export const BITMAP_LEFT_6_BOTTOM_9: Uint16Array = new Uint16Array([87 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0xFC00,88 0xFC00, 0xFC00, 0xFC00, 0xFC00, 0xFC00, 0xFC00, 0xFC00, 0xFC00,89]);90export const BITMAP_RIGHT_6_BOTTOM_9: Uint16Array = new Uint16Array([91 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x003F,92 0x003F, 0x003F, 0x003F, 0x003F, 0x003F, 0x003F, 0x003F, 0x003F,93]);94export const BITMAP_LEFT_6_TOP_5: Uint16Array = new Uint16Array([95 0xFC00, 0xFC00, 0xFC00, 0xFC00, 0xFC00, 0x0000, 0x0000, 0x0000,96 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,97]);98export const BITMAP_RIGHT_6_TOP_5: Uint16Array = new Uint16Array([99 0x003F, 0x003F, 0x003F, 0x003F, 0x003F, 0x0000, 0x0000, 0x0000,100 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,101]);102// A strip 9 px wide from TL to BR corner centered in the tile.103export const BITMAP_MIDDLE_DOWN_RIGHT: Uint16Array = new Uint16Array([104 0xF800, 0xFC00, 0xFE00, 0xFF00, 0xFF80, 0x7FC0, 0x3FE0, 0x1FF0,105 0x0FF8, 0x07FC, 0x03FE, 0x01FF, 0x00FF, 0x007F, 0x003F, 0x001F,106]);107// A strip 9 px wide from BL to TR corner centered in the tile....

Full Screen

Full Screen

uint16array.js

Source:uint16array.js Github

copy

Full Screen

1//-------------------------------------------------------------------------------------------------------2// Copyright (C) Microsoft. All rights reserved.3// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.4//-------------------------------------------------------------------------------------------------------56WScript.LoadScriptFile("util.js");78function oneTest(a)9{10 a[1] = 0x8000;11 a[5] = 10;12 WScript.Echo(a[5]);13 if (Object.getOwnPropertyDescriptor(a, 100000) != undefined) {14 WScript.Echo('FAIL');15 }1617 try {18 var pro = Uint16Array.prototype;19 WScript.Echo(pro.toString());2021 WScript.Echo("prototype is");22 printObj(pro);23 } catch(e) {24 WScript.Echo("constructor is");25 printObj(Uint16Array);26 }2728 WScript.Echo("object is");29 printObj(a);3031 a[20] =20;32 a.foo ='bar';33 WScript.Echo("object after expando is");34 printObj(a);35 WScript.Echo("");36}3738WScript.Echo("test1");39var test1 = new Uint16Array(9);40oneTest(test1);4142WScript.Echo("test2");43var test2 = new Uint16Array(0);44oneTest(test2);4546WScript.Echo("test3");47var arrayBuffer = new ArrayBuffer(30);48var test3 = new Uint16Array(arrayBuffer);49oneTest(test3);5051WScript.Echo("test4");52var test4 = new Uint16Array(arrayBuffer, 2);53oneTest(test4);5455WScript.Echo("test5");56var test5 = new Uint16Array(arrayBuffer, 2, 6);57oneTest(test5);5859WScript.Echo("test6");60var mybuffer = test1.buffer; 61WScript.Echo(mybuffer);62var test6 = new Uint16Array(mybuffer);63oneTest(test6);6465WScript.Echo("test7");66var test7 = new Uint16Array(test1.buffer, 2);67oneTest(test7);6869WScript.Echo("test8");70var test8 = new Uint16Array(test1.buffer, 2, 6);71oneTest(test8);7273var arr = [1,2,3,4,5,6,7,8,9,10,11,12];7475WScript.Echo("test9");76var test9 = new Uint16Array(arr);77oneTest(test9);7879WScript.Echo("test9.1");80printObj(test1);81test9.set(test1);82oneTest(test9);8384WScript.Echo("test9.2");85test9.set(test5);86oneTest(test9); 8788WScript.Echo("test10");89var test10 = new Uint16Array({});90oneTest(test10);9192WScript.Echo("test10.1");93try {94 var test101 = new Uint16Array(test1.buffer, 3, 6);95 oneTest(test101);96}97catch(e)98{99 WScript.Echo("succeed with catching" + e); 100}101102WScript.Echo("test11");103var test11 = new Uint16Array('abcdefg');104oneTest(test11);105106WScript.Echo("test11.1");107var test111 = new Uint16Array(new String('abcdefg'));108oneTest(test111);109110WScript.Echo("test12");111var test12 = new Uint16Array(0);112oneTest(test12);113114115WScript.Echo("test13");116var test13 = new Uint16Array(arrayBuffer, 0);117oneTest(test13);118119120WScript.Echo("test14");121try 122{123 var test14 = new Uint16Array(arrayBuffer, 0, 0);124 oneTest(test14);125}126catch(e)127{128 WScript.Echo("succeed with catching" + e); 129}130131132WScript.Echo("test15");133try 134{135 var test15 = new Uint16Array(arrayBuffer, 0, 40);136 oneTest(test15);137}138catch(e)139{140 WScript.Echo("succeed with catching" + e); 141}142143WScript.Echo("test16");144try 145{146 var test16 = new Uint16Array(arrayBuffer, 40, 4);147 oneTest(test16);148}149catch(e)150{151 WScript.Echo("succeed with catching" + e); 152}153154printObj(test5);155WScript.Echo("test17");156var test17 = test5.subarray(0);157printObj(test17);158159WScript.Echo("test18");160var test18 = test5.subarray(4);161printObj(test18);162163WScript.Echo("test19");164var test19 = test5.subarray(0, 3);165printObj(test19);166167WScript.Echo("test20");168WScript.Echo(Uint16Array.prototype[10]);169WScript.Echo(Uint16Array.prototype[-1]);170WScript.Echo(Uint16Array.prototype[2]);171Uint16Array.prototype[2] = 10;172WScript.Echo(Uint16Array.prototype[2]);173174WScript.Echo("test21");175testSetWithInt(-1, 2, new Uint16Array(3), new Uint16Array(3), new Uint16Array(3));176testSetWithFloat(-1, 2, new Uint16Array(3), new Uint16Array(3), new Uint16Array(3));177testSetWithObj(-1, 2, new Uint16Array(3), new Uint16Array(3), new Uint16Array(3));178179WScript.Echo("test21 JIT");180testSetWithInt(-1, 2, new Uint16Array(3), new Uint16Array(3), new Uint16Array(3));181testSetWithFloat(-1, 2, new Uint16Array(3), new Uint16Array(3), new Uint16Array(3));182testSetWithObj(-1, 2, new Uint16Array(3), new Uint16Array(3), new Uint16Array(3));183184WScript.Echo("test22");185testIndexValueForSet(new Uint16Array(5));186WScript.Echo("test22 JIT"); ...

Full Screen

Full Screen

Using AI Code Generation

copy

Full Screen

1const { check, property } = require('fast-check');2const { uint16Array } = require('fast-check/lib/arbitrary/Uint16ArrayArbitrary');3const { array } = require('fast-check/lib/arbitrary/ArrayArbitrary');4const { oneof } = require('fast-check/lib/arbitrary/OneOfArbitrary');5const { tuple } = require('fast-check/lib/arbitrary/TupleArbitrary');6const { bigUintN } = require('fast-check/lib/arbitrary/BigIntArbitrary');7const { array, uint16Array, oneof, tuple, bigUintN } = require('fast-check');8describe("test3", () => {9 it("test3", () => {10 check(11 property(array(uint16Array()), (arrayOfUint16Arrays) => {12 console.log(arrayOfUint16Arrays);13 return true;14 })15 );16 });17});18const { check, property } = require('fast-check');19const { uint16Array } = require('fast-check/lib/arbitrary/Uint16ArrayArbitrary');20const { array } = require('fast-check/lib/arbitrary/ArrayArbitrary');21const { oneof } = require('fast-check/lib/arbitrary/OneOfArbitrary');22const { tuple } = require('fast-check/lib/arbitrary/TupleArbitrary');23const { bigUintN } = require('fast-check/lib/arbitrary/BigIntArbitrary');24const { array, uint16Array, oneof, tuple, bigUintN } = require('fast-check');25describe("test4", () => {26 it("test4", () => {27 check(28 property(array(uint16Array()), (arrayOfUint16Arrays) => {29 console.log(arrayOfUint16Arrays);30 return true;31 })32 );33 });34});35const { check, property } = require('fast-check');36const { uint16Array } = require('fast-check/lib/arbitrary/Uint16ArrayArbitrary');37const { array } = require('fast-check/lib/arbitrary/ArrayArbitrary');38const { oneof } = require('fast-check/lib/arbitrary/OneOfArbitrary');39const { tuple } = require('fast-check/lib/arbitrary/TupleArbitrary');

Full Screen

Using AI Code Generation

copy

Full Screen

1const fc = require('fast-check');2const { uint16Array } = require('fast-check/lib/arbitrary/uint16Array.js');3const uint16ArrayArb = uint16Array();4fc.assert(5 fc.property(uint16ArrayArb, (arr) => {6 return true;7 })8);

Full Screen

Using AI Code Generation

copy

Full Screen

1const fc = require('fast-check');2const uint16Array = require('fast-check/lib/arbitrary/uint16Array');3fc.assert(4 fc.property(uint16Array({ maxLength: 5 }), arr => {5 return arr.length <= 5;6 })7);8const fc = require('fast-check');9const uint16Array = require('fast-check-monorepo/lib/arbitrary/uint16Array');10fc.assert(11 fc.property(uint16Array({ maxLength: 5 }), arr => {12 return arr.length <= 5;13 })14);

Full Screen

Using AI Code Generation

copy

Full Screen

1var fc = require('fast-check');2fc.assert(3 fc.property(fc.uint16Array(), function (as) {4 return as.every(function (n) {5 return typeof n === 'number' && n >= 0 && n <= 65535;6 });7 }),8 { numRuns: 1000 }9);

Full Screen

Using AI Code Generation

copy

Full Screen

1const fc = require('fast-check');2const { uint16Array } = require('fast-check/lib/types/array/Uint16ArrayArbitrary');3const uint16ArrayArb = uint16Array(fc.integer(0, 100), 10);4fc.assert(5 fc.property(uint16ArrayArb, (arr) => {6 return true;7 })8);9const fc = require('fast-check');10const { uint32Array } = require('fast-check/lib/types/array/Uint32ArrayArbitrary');11const uint32ArrayArb = uint32Array(fc.integer(0, 100), 10);12fc.assert(13 fc.property(uint32ArrayArb, (arr) => {14 return true;15 })16);17const fc = require('fast-check');18const { uint8Array } = require('fast-check/lib/types/array/Uint8ArrayArbitrary');19const uint8ArrayArb = uint8Array(fc.integer(0, 100), 10);20fc.assert(21 fc.property(uint8ArrayArb, (arr) => {22 return true;23 })24);25const fc = require('fast-check');26const { uint8ClampedArray } = require('fast-check/lib/types/array/Uint8ClampedArrayArbitrary');27const uint8ClampedArrayArb = uint8ClampedArray(fc.integer(0, 100), 10);28fc.assert(29 fc.property(uint8ClampedArrayArb, (arr) => {30 return true;31 })32);33const fc = require('fast-check');34const { array } = require('fast-check/lib/types/array/ArrayArbitrary');35const arrayArb = array(fc.integer(0, 100), 10);36fc.assert(37 fc.property(arrayArb, (arr) => {38 return true;39 })40);

Full Screen

Using AI Code Generation

copy

Full Screen

1const { uint16Array } = require('fast-check');2const fc = require('fast-check');3const { assert } = require('chai');4describe('uint16Array', () => {5 it('should produce arrays of uint16', () => {6 fc.assert(7 fc.property(uint16Array(), (arr) => {8 assert.ok(arr.every((v) => v >= 0 && v <= 65535));9 })10 );11 });12});13const { uint16Array } = require('fast-check');14const fc = require('fast-check');15const { assert } = require('chai');16describe('uint16Array', () => {17 it('should produce arrays of uint16', () => {18 fc.assert(19 fc.property(uint16Array(), (arr) => {20 assert.ok(arr.every((v) => v >= 0 && v <= 65535));21 })22 );23 });24});25const { uint16Array } = require('fast-check');26const fc = require('fast-check');27const { assert } = require('chai');28describe('uint16Array', () => {29 it('should produce arrays of uint16', () => {30 fc.assert(31 fc.property(uint16Array(), (arr) => {32 assert.ok(arr.every((v) => v >= 0 && v <= 65535));33 })34 );35 });36});37const { uint16Array } = require('fast-check');38const fc = require('fast-check');39const { assert } = require('chai');40describe('uint16Array', () => {41 it('should produce arrays of uint16', () => {42 fc.assert(43 fc.property(uint16Array(), (arr) => {44 assert.ok(arr.every((v) => v >= 0 && v <= 65535));45 })46 );47 });48});49const { uint16Array } = require('fast-check');50const fc = require('fast-check');51const { assert } = require('chai');52describe('uint16Array

Full Screen

Using AI Code Generation

copy

Full Screen

1const fc = require ( 'fast-check' ) ;2const uint16Array = fc . uint16Array ( ) ;3const uint16Array = fc . uint16Array ( { minLength : 20 , maxLength : 100 } ) ;4const uint16Array = fc . uint16Array ( { minLength : 20 , maxLength : 100 , noDefaultInfinity : true } ) ;5const uint16Array = fc . uint16Array ( { minLength : 20 , maxLength : 100 , noNaN : true } ) ;6const uint16Array = fc . uint16Array ( { minLength : 20 , maxLength : 100 , noDefaultNaN : true } ) ;7const uint16Array = fc . uint16Array ( { minLength : 20 , maxLength : 100 , noDefaultZero : true } ) ;8const uint16Array = fc . uint16Array ( { minLength : 20 , maxLength : 100 , noEmpty : true } ) ;9const uint16Array = fc . uint16Array ( { minLength : 20 , maxLength : 100 , noUndefined : true } ) ;10const uint16Array = fc . uint16Array ( { minLength : 20 , maxLength : 100 , noNull : true } ) ;11const uint16Array = fc . uint16Array ( { minLength : 20 , maxLength : 100 , noDefaultEmptyString : true } ) ;12const uint16Array = fc . uint16Array ( { minLength : 20 , maxLength : 100 , noSparse : true } ) ;13const uint16Array = fc . uint16Array ( { minLength : 20 , maxLength : 100 , noNegative : true } ) ;14const uint16Array = fc . uint16Array ( { minLength : 20 , maxLength : 100 , noPositive : true } ) ;15const uint16Array = fc . uint16Array ( { minLength : 20 , maxLength : 100 , noZero : true } ) ;16const uint16Array = fc . uint16Array ( { minLength : 20 , maxLength : 100 , noSubnormal : true } ) ;17const uint16Array = fc . uint16Array ( { minLength : 20 , maxLength : 100 , noInfinite : true } ) ;18const uint16Array = fc . uint16Array ( { minLength : 20 , maxLength : 100 , noNaN : true } ) ;

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run fast-check-monorepo automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful