summaryrefslogtreecommitdiffstats
path: root/test_code/old_logs/memtest_log_05
blob: a99c401174d2dd27a6203f2ce61a8625ebeb4d70 (plain) (blame)
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
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
STARTING LOGGING.
MemtestEfi started
test_start(): cpu order = 0
test_start(): my_cpu_num = 0
test_start(): my_cpu_ord = 0
test_start(): Command line parsed, now clear_screen()
query_memory_table() started.

query_memory_table(): New EfiConventionalMemory segment found.
Physical Start = 4096
NumberOfPages (4K) = 159
Attribute = 15

query_memory_table(): New EfiConventionalMemory segment found.
Physical Start = 1048576
NumberOfPages (4K) = 1792
Attribute = 15

query_memory_table(): New EfiConventionalMemory segment found.
Physical Start = 8421376
NumberOfPages (4K) = 8
Attribute = 15

query_memory_table(): New EfiConventionalMemory segment found.
Physical Start = 19922944
NumberOfPages (4K) = 11318
Attribute = 15

query_memory_table(): New EfiConventionalMemory segment found.
Physical Start = 66412544
NumberOfPages (4K) = 9955
Attribute = 15

query_memory_table(): New EfiConventionalMemory segment found.
Physical Start = 108060672
NumberOfPages (4K) = 80
Attribute = 15

query_memory_table(): New EfiConventionalMemory segment found.
Physical Start = 108584960
NumberOfPages (4K) = 5
Attribute = 15

query_memory_table(): New EfiConventionalMemory segment found.
Physical Start = 108761088
NumberOfPages (4K) = 6
Attribute = 15

query_memory_table(): New EfiConventionalMemory segment found.
Physical Start = 108789760
NumberOfPages (4K) = 5
Attribute = 15

query_memory_table(): New EfiConventionalMemory segment found.
Physical Start = 112398336
NumberOfPages (4K) = 4
Attribute = 15

query_memory_table(): New EfiConventionalMemory segment found.
Physical Start = 119681024
NumberOfPages (4K) = 7
Attribute = 15

query_memory_table(): New EfiConventionalMemory segment found.
Physical Start = 132120576
NumberOfPages (4K) = 250
Attribute = 15
query_memory_table(): Number of free memory segs = 12
query_memory_table(): Memory detected in MB = 127

get_cpuid() started.
get_cpuid(): max_cpuid = 6
get_cpuid(): Vendor ID = A
finishing get_cpuid().

get_cpuid() started.
get_cpuid(): max_cpuid = 6
get_cpuid(): Vendor ID = A
finishing get_cpuid().

pci_init() started.
pci_check_direct(): pci_conf_type = 1
get_cache_size() started.
get_cache_size(): l1_cache = 64
get_cache_size(): l2_cache = 512
get_cache_size(): l3_cache = 16384
cpu_cache_speed() started.
cpuspeed() started.
cpuspeed(): clks_msec = 0
cpu_cache_speed(): speed = 0

memspeed(ulong src, long len, int iter) started.

memspeed(ulong src, long len, int iter) started.

memspeed(ulong src, long len, int iter) started.
init(): vv->fail_safe = 2
init(): num_cpus = 1

set_defaults() started.
test_start(): set_defaults() finished.
test_start(): vv->msegs = 12
test_start(): vv->pmap[vv->msegs-1].end = 32256
test_start(): high_test_adr = 0x2000000
find_chunks(): wmax = 4096
find_chunks(): j = 0
compute_segments(): wstart = 0
compute_segments(): wend = 8192

compute_segments(): vv->msegs = 12

compute_segments(): start = 1
compute_segments(): end = 1
compute_segments(): wstart = 0
compute_segments(): wend = 8192

compute_segments(): start = 256
compute_segments(): end = 256
compute_segments(): wstart = 0
compute_segments(): wend = 8192

compute_segments(): start = 2056
compute_segments(): end = 2056
compute_segments(): wstart = 0
compute_segments(): wend = 8192

compute_segments(): start = 4864
compute_segments(): end = 4866
compute_segments(): wstart = 0
compute_segments(): wend = 8192
compute_segments(): segment is going to be added
compute_segments(): vv->map[sg].pbase_addr = 4864
compute_segments(): vv->map[sg].start = 19922944
compute_segments(): vv->map[sg].end = 19931132

compute_segments(): start = 16214
compute_segments(): end = 8192
compute_segments(): wstart = 0
compute_segments(): wend = 8192

compute_segments(): start = 26382
compute_segments(): end = 8192
compute_segments(): wstart = 0
compute_segments(): wend = 8192

compute_segments(): start = 26510
compute_segments(): end = 8192
compute_segments(): wstart = 0
compute_segments(): wend = 8192

compute_segments(): start = 26553
compute_segments(): end = 8192
compute_segments(): wstart = 0
compute_segments(): wend = 8192

compute_segments(): start = 26560
compute_segments(): end = 8192
compute_segments(): wstart = 0
compute_segments(): wend = 8192

compute_segments(): start = 27441
compute_segments(): end = 8192
compute_segments(): wstart = 0
compute_segments(): wend = 8192

compute_segments(): start = 29219
compute_segments(): end = 8192
compute_segments(): wstart = 0
compute_segments(): wend = 8192

compute_segments(): start = 32256
compute_segments(): end = 8192
compute_segments(): wstart = 0
compute_segments(): wend = 8192
find_chunks(): j = 1
compute_segments(): wstart = 256
compute_segments(): wend = 524288
compute_segments(): plim_upper = 32256

compute_segments(): vv->msegs = 12

compute_segments(): start = 256
compute_segments(): end = 1
compute_segments(): wstart = 256
compute_segments(): wend = 32256

compute_segments(): start = 256
compute_segments(): end = 256
compute_segments(): wstart = 256
compute_segments(): wend = 32256

compute_segments(): start = 2056
compute_segments(): end = 2056
compute_segments(): wstart = 256
compute_segments(): wend = 32256

compute_segments(): start = 4864
compute_segments(): end = 4866
compute_segments(): wstart = 256
compute_segments(): wend = 32256
compute_segments(): segment is going to be added
compute_segments(): vv->map[sg].pbase_addr = 4864
compute_segments(): vv->map[sg].start = 19922944
compute_segments(): vv->map[sg].end = 19931132

compute_segments(): start = 16214
compute_segments(): end = 16216
compute_segments(): wstart = 256
compute_segments(): wend = 32256
compute_segments(): segment is going to be added
compute_segments(): vv->map[sg].pbase_addr = 16214
compute_segments(): vv->map[sg].start = 66412544
compute_segments(): vv->map[sg].end = 66420732

compute_segments(): start = 26382
compute_segments(): end = 26382
compute_segments(): wstart = 256
compute_segments(): wend = 32256

compute_segments(): start = 26510
compute_segments(): end = 26510
compute_segments(): wstart = 256
compute_segments(): wend = 32256

compute_segments(): start = 26553
compute_segments(): end = 26553
compute_segments(): wstart = 256
compute_segments(): wend = 32256

compute_segments(): start = 26560
compute_segments(): end = 26560
compute_segments(): wstart = 256
compute_segments(): wend = 32256

compute_segments(): start = 27441
compute_segments(): end = 27441
compute_segments(): wstart = 256
compute_segments(): wend = 32256

compute_segments(): start = 29219
compute_segments(): end = 29219
compute_segments(): wstart = 256
compute_segments(): wend = 32256

compute_segments(): start = 32256
compute_segments(): end = 32256
compute_segments(): wstart = 256
compute_segments(): wend = 32256
find_chunks(): j = 2
compute_segments(): wstart = 524288
compute_segments(): wend = 1048576
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 3
compute_segments(): wstart = 1048576
compute_segments(): wend = 1572864
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 4
compute_segments(): wstart = 1572864
compute_segments(): wend = 2097152
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 5
compute_segments(): wstart = 2097152
compute_segments(): wend = 2621440
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 6
compute_segments(): wstart = 2621440
compute_segments(): wend = 3145728
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 7
compute_segments(): wstart = 3145728
compute_segments(): wend = 3670016
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 8
compute_segments(): wstart = 3670016
compute_segments(): wend = 4194304
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 9
compute_segments(): wstart = 4194304
compute_segments(): wend = 4718592
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 10
compute_segments(): wstart = 4718592
compute_segments(): wend = 5242880
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 11
compute_segments(): wstart = 5242880
compute_segments(): wend = 5767168
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 12
compute_segments(): wstart = 5767168
compute_segments(): wend = 6291456
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 13
compute_segments(): wstart = 6291456
compute_segments(): wend = 6815744
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 14
compute_segments(): wstart = 6815744
compute_segments(): wend = 7340032
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 15
compute_segments(): wstart = 7340032
compute_segments(): wend = 7864320
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 16
compute_segments(): wstart = 7864320
compute_segments(): wend = 8388608
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 17
compute_segments(): wstart = 8388608
compute_segments(): wend = 8912896
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 18
compute_segments(): wstart = 8912896
compute_segments(): wend = 9437184
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 19
compute_segments(): wstart = 9437184
compute_segments(): wend = 9961472
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 20
compute_segments(): wstart = 9961472
compute_segments(): wend = 10485760
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 21
compute_segments(): wstart = 10485760
compute_segments(): wend = 11010048
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 22
compute_segments(): wstart = 11010048
compute_segments(): wend = 11534336
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 23
compute_segments(): wstart = 11534336
compute_segments(): wend = 12058624
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 24
compute_segments(): wstart = 12058624
compute_segments(): wend = 12582912
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 25
compute_segments(): wstart = 12582912
compute_segments(): wend = 13107200
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 26
compute_segments(): wstart = 13107200
compute_segments(): wend = 13631488
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 27
compute_segments(): wstart = 13631488
compute_segments(): wend = 14155776
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 28
compute_segments(): wstart = 14155776
compute_segments(): wend = 14680064
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 29
compute_segments(): wstart = 14680064
compute_segments(): wend = 15204352
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 30
compute_segments(): wstart = 15204352
compute_segments(): wend = 15728640
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 31
compute_segments(): wstart = 15728640
compute_segments(): wend = 16252928
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 32
compute_segments(): wstart = 16252928
compute_segments(): wend = 16777216
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 33
compute_segments(): wstart = 16777216
compute_segments(): wend = 17301504
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 34
compute_segments(): wstart = 17301504
compute_segments(): wend = 17825792
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 35
compute_segments(): wstart = 17825792
compute_segments(): wend = 18350080
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 36
compute_segments(): wstart = 18350080
compute_segments(): wend = 18874368
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 37
compute_segments(): wstart = 18874368
compute_segments(): wend = 19398656
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 38
compute_segments(): wstart = 19398656
compute_segments(): wend = 19922944
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 39
compute_segments(): wstart = 19922944
compute_segments(): wend = 20447232
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 40
compute_segments(): wstart = 20447232
compute_segments(): wend = 20971520
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 41
compute_segments(): wstart = 20971520
compute_segments(): wend = 21495808
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 42
compute_segments(): wstart = 21495808
compute_segments(): wend = 22020096
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 43
compute_segments(): wstart = 22020096
compute_segments(): wend = 22544384
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 44
compute_segments(): wstart = 22544384
compute_segments(): wend = 23068672
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 45
compute_segments(): wstart = 23068672
compute_segments(): wend = 23592960
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 46
compute_segments(): wstart = 23592960
compute_segments(): wend = 24117248
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 47
compute_segments(): wstart = 24117248
compute_segments(): wend = 24641536
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 48
compute_segments(): wstart = 24641536
compute_segments(): wend = 25165824
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 49
compute_segments(): wstart = 25165824
compute_segments(): wend = 25690112
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 50
compute_segments(): wstart = 25690112
compute_segments(): wend = 26214400
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 51
compute_segments(): wstart = 26214400
compute_segments(): wend = 26738688
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 52
compute_segments(): wstart = 26738688
compute_segments(): wend = 27262976
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 53
compute_segments(): wstart = 27262976
compute_segments(): wend = 27787264
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 54
compute_segments(): wstart = 27787264
compute_segments(): wend = 28311552
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 55
compute_segments(): wstart = 28311552
compute_segments(): wend = 28835840
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 56
compute_segments(): wstart = 28835840
compute_segments(): wend = 29360128
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 57
compute_segments(): wstart = 29360128
compute_segments(): wend = 29884416
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 58
compute_segments(): wstart = 29884416
compute_segments(): wend = 30408704
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 59
compute_segments(): wstart = 30408704
compute_segments(): wend = 30932992
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 60
compute_segments(): wstart = 30932992
compute_segments(): wend = 31457280
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 61
compute_segments(): wstart = 31457280
compute_segments(): wend = 31981568
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 62
compute_segments(): wstart = 31981568
compute_segments(): wend = 32505856
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 63
compute_segments(): wstart = 32505856
compute_segments(): wend = 33030144
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 64
compute_segments(): wstart = 33030144
compute_segments(): wend = 33554432
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 65
compute_segments(): wstart = 33554432
compute_segments(): wend = 34078720
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 66
compute_segments(): wstart = 34078720
compute_segments(): wend = 34603008
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 67
compute_segments(): wstart = 34603008
compute_segments(): wend = 35127296
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 68
compute_segments(): wstart = 35127296
compute_segments(): wend = 35651584
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 69
compute_segments(): wstart = 35651584
compute_segments(): wend = 36175872
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 70
compute_segments(): wstart = 36175872
compute_segments(): wend = 36700160
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 71
compute_segments(): wstart = 36700160
compute_segments(): wend = 37224448
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 72
compute_segments(): wstart = 37224448
compute_segments(): wend = 37748736
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 73
compute_segments(): wstart = 37748736
compute_segments(): wend = 38273024
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 74
compute_segments(): wstart = 38273024
compute_segments(): wend = 38797312
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 75
compute_segments(): wstart = 38797312
compute_segments(): wend = 39321600
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 76
compute_segments(): wstart = 39321600
compute_segments(): wend = 39845888
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 77
compute_segments(): wstart = 39845888
compute_segments(): wend = 40370176
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 78
compute_segments(): wstart = 40370176
compute_segments(): wend = 40894464
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 79
compute_segments(): wstart = 40894464
compute_segments(): wend = 41418752
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 80
compute_segments(): wstart = 41418752
compute_segments(): wend = 41943040
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 81
compute_segments(): wstart = 41943040
compute_segments(): wend = 42467328
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 82
compute_segments(): wstart = 42467328
compute_segments(): wend = 42991616
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 83
compute_segments(): wstart = 42991616
compute_segments(): wend = 43515904
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 84
compute_segments(): wstart = 43515904
compute_segments(): wend = 44040192
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 85
compute_segments(): wstart = 44040192
compute_segments(): wend = 44564480
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 86
compute_segments(): wstart = 44564480
compute_segments(): wend = 45088768
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 87
compute_segments(): wstart = 45088768
compute_segments(): wend = 45613056
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 88
compute_segments(): wstart = 45613056
compute_segments(): wend = 46137344
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 89
compute_segments(): wstart = 46137344
compute_segments(): wend = 46661632
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 90
compute_segments(): wstart = 46661632
compute_segments(): wend = 47185920
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 91
compute_segments(): wstart = 47185920
compute_segments(): wend = 47710208
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 92
compute_segments(): wstart = 47710208
compute_segments(): wend = 48234496
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 93
compute_segments(): wstart = 48234496
compute_segments(): wend = 48758784
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 94
compute_segments(): wstart = 48758784
compute_segments(): wend = 49283072
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 95
compute_segments(): wstart = 49283072
compute_segments(): wend = 49807360
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 96
compute_segments(): wstart = 49807360
compute_segments(): wend = 50331648
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 97
compute_segments(): wstart = 50331648
compute_segments(): wend = 50855936
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 98
compute_segments(): wstart = 50855936
compute_segments(): wend = 51380224
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 99
compute_segments(): wstart = 51380224
compute_segments(): wend = 51904512
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 100
compute_segments(): wstart = 51904512
compute_segments(): wend = 52428800
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 101
compute_segments(): wstart = 52428800
compute_segments(): wend = 52953088
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 102
compute_segments(): wstart = 52953088
compute_segments(): wend = 53477376
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 103
compute_segments(): wstart = 53477376
compute_segments(): wend = 54001664
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 104
compute_segments(): wstart = 54001664
compute_segments(): wend = 54525952
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 105
compute_segments(): wstart = 54525952
compute_segments(): wend = 55050240
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 106
compute_segments(): wstart = 55050240
compute_segments(): wend = 55574528
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 107
compute_segments(): wstart = 55574528
compute_segments(): wend = 56098816
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 108
compute_segments(): wstart = 56098816
compute_segments(): wend = 56623104
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 109
compute_segments(): wstart = 56623104
compute_segments(): wend = 57147392
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 110
compute_segments(): wstart = 57147392
compute_segments(): wend = 57671680
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 111
compute_segments(): wstart = 57671680
compute_segments(): wend = 58195968
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 112
compute_segments(): wstart = 58195968
compute_segments(): wend = 58720256
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 113
compute_segments(): wstart = 58720256
compute_segments(): wend = 59244544
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 114
compute_segments(): wstart = 59244544
compute_segments(): wend = 59768832
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 115
compute_segments(): wstart = 59768832
compute_segments(): wend = 60293120
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 116
compute_segments(): wstart = 60293120
compute_segments(): wend = 60817408
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 117
compute_segments(): wstart = 60817408
compute_segments(): wend = 61341696
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 118
compute_segments(): wstart = 61341696
compute_segments(): wend = 61865984
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 119
compute_segments(): wstart = 61865984
compute_segments(): wend = 62390272
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 120
compute_segments(): wstart = 62390272
compute_segments(): wend = 62914560
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 121
compute_segments(): wstart = 62914560
compute_segments(): wend = 63438848
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 122
compute_segments(): wstart = 63438848
compute_segments(): wend = 63963136
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 123
compute_segments(): wstart = 63963136
compute_segments(): wend = 64487424
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 124
compute_segments(): wstart = 64487424
compute_segments(): wend = 65011712
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 125
compute_segments(): wstart = 65011712
compute_segments(): wend = 65536000
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 126
compute_segments(): wstart = 65536000
compute_segments(): wend = 66060288
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 127
compute_segments(): wstart = 66060288
compute_segments(): wend = 66584576
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 128
compute_segments(): wstart = 66584576
compute_segments(): wend = 67108864
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 129
compute_segments(): wstart = 67108864
compute_segments(): wend = 67633152
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 130
compute_segments(): wstart = 67633152
compute_segments(): wend = 68157440
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 131
compute_segments(): wstart = 68157440
compute_segments(): wend = 68681728
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 132
compute_segments(): wstart = 68681728
compute_segments(): wend = 69206016
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 133
compute_segments(): wstart = 69206016
compute_segments(): wend = 69730304
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 134
compute_segments(): wstart = 69730304
compute_segments(): wend = 70254592
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 135
compute_segments(): wstart = 70254592
compute_segments(): wend = 70778880
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 136
compute_segments(): wstart = 70778880
compute_segments(): wend = 71303168
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 137
compute_segments(): wstart = 71303168
compute_segments(): wend = 71827456
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 138
compute_segments(): wstart = 71827456
compute_segments(): wend = 72351744
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 139
compute_segments(): wstart = 72351744
compute_segments(): wend = 72876032
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 140
compute_segments(): wstart = 72876032
compute_segments(): wend = 73400320
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 141
compute_segments(): wstart = 73400320
compute_segments(): wend = 73924608
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 142
compute_segments(): wstart = 73924608
compute_segments(): wend = 74448896
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 143
compute_segments(): wstart = 74448896
compute_segments(): wend = 74973184
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 144
compute_segments(): wstart = 74973184
compute_segments(): wend = 75497472
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 145
compute_segments(): wstart = 75497472
compute_segments(): wend = 76021760
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 146
compute_segments(): wstart = 76021760
compute_segments(): wend = 76546048
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 147
compute_segments(): wstart = 76546048
compute_segments(): wend = 77070336
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 148
compute_segments(): wstart = 77070336
compute_segments(): wend = 77594624
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 149
compute_segments(): wstart = 77594624
compute_segments(): wend = 78118912
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 150
compute_segments(): wstart = 78118912
compute_segments(): wend = 78643200
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 151
compute_segments(): wstart = 78643200
compute_segments(): wend = 79167488
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 152
compute_segments(): wstart = 79167488
compute_segments(): wend = 79691776
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 153
compute_segments(): wstart = 79691776
compute_segments(): wend = 80216064
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 154
compute_segments(): wstart = 80216064
compute_segments(): wend = 80740352
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 155
compute_segments(): wstart = 80740352
compute_segments(): wend = 81264640
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 156
compute_segments(): wstart = 81264640
compute_segments(): wend = 81788928
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 157
compute_segments(): wstart = 81788928
compute_segments(): wend = 82313216
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 158
compute_segments(): wstart = 82313216
compute_segments(): wend = 82837504
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 159
compute_segments(): wstart = 82837504
compute_segments(): wend = 83361792
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 160
compute_segments(): wstart = 83361792
compute_segments(): wend = 83886080
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 161
compute_segments(): wstart = 83886080
compute_segments(): wend = 84410368
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 162
compute_segments(): wstart = 84410368
compute_segments(): wend = 84934656
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 163
compute_segments(): wstart = 84934656
compute_segments(): wend = 85458944
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 164
compute_segments(): wstart = 85458944
compute_segments(): wend = 85983232
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 165
compute_segments(): wstart = 85983232
compute_segments(): wend = 86507520
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 166
compute_segments(): wstart = 86507520
compute_segments(): wend = 87031808
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 167
compute_segments(): wstart = 87031808
compute_segments(): wend = 87556096
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 168
compute_segments(): wstart = 87556096
compute_segments(): wend = 88080384
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 169
compute_segments(): wstart = 88080384
compute_segments(): wend = 88604672
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 170
compute_segments(): wstart = 88604672
compute_segments(): wend = 89128960
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 171
compute_segments(): wstart = 89128960
compute_segments(): wend = 89653248
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 172
compute_segments(): wstart = 89653248
compute_segments(): wend = 90177536
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 173
compute_segments(): wstart = 90177536
compute_segments(): wend = 90701824
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 174
compute_segments(): wstart = 90701824
compute_segments(): wend = 91226112
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 175
compute_segments(): wstart = 91226112
compute_segments(): wend = 91750400
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 176
compute_segments(): wstart = 91750400
compute_segments(): wend = 92274688
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 177
compute_segments(): wstart = 92274688
compute_segments(): wend = 92798976
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 178
compute_segments(): wstart = 92798976
compute_segments(): wend = 93323264
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 179
compute_segments(): wstart = 93323264
compute_segments(): wend = 93847552
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 180
compute_segments(): wstart = 93847552
compute_segments(): wend = 94371840
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 181
compute_segments(): wstart = 94371840
compute_segments(): wend = 94896128
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 182
compute_segments(): wstart = 94896128
compute_segments(): wend = 95420416
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 183
compute_segments(): wstart = 95420416
compute_segments(): wend = 95944704
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 184
compute_segments(): wstart = 95944704
compute_segments(): wend = 96468992
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 185
compute_segments(): wstart = 96468992
compute_segments(): wend = 96993280
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 186
compute_segments(): wstart = 96993280
compute_segments(): wend = 97517568
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 187
compute_segments(): wstart = 97517568
compute_segments(): wend = 98041856
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 188
compute_segments(): wstart = 98041856
compute_segments(): wend = 98566144
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 189
compute_segments(): wstart = 98566144
compute_segments(): wend = 99090432
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 190
compute_segments(): wstart = 99090432
compute_segments(): wend = 99614720
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 191
compute_segments(): wstart = 99614720
compute_segments(): wend = 100139008
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 192
compute_segments(): wstart = 100139008
compute_segments(): wend = 100663296
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 193
compute_segments(): wstart = 100663296
compute_segments(): wend = 101187584
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 194
compute_segments(): wstart = 101187584
compute_segments(): wend = 101711872
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 195
compute_segments(): wstart = 101711872
compute_segments(): wend = 102236160
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 196
compute_segments(): wstart = 102236160
compute_segments(): wend = 102760448
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 197
compute_segments(): wstart = 102760448
compute_segments(): wend = 103284736
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 198
compute_segments(): wstart = 103284736
compute_segments(): wend = 103809024
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 199
compute_segments(): wstart = 103809024
compute_segments(): wend = 104333312
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 200
compute_segments(): wstart = 104333312
compute_segments(): wend = 104857600
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 201
compute_segments(): wstart = 104857600
compute_segments(): wend = 105381888
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 202
compute_segments(): wstart = 105381888
compute_segments(): wend = 105906176
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 203
compute_segments(): wstart = 105906176
compute_segments(): wend = 106430464
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 204
compute_segments(): wstart = 106430464
compute_segments(): wend = 106954752
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 205
compute_segments(): wstart = 106954752
compute_segments(): wend = 107479040
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 206
compute_segments(): wstart = 107479040
compute_segments(): wend = 108003328
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 207
compute_segments(): wstart = 108003328
compute_segments(): wend = 108527616
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 208
compute_segments(): wstart = 108527616
compute_segments(): wend = 109051904
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 209
compute_segments(): wstart = 109051904
compute_segments(): wend = 109576192
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 210
compute_segments(): wstart = 109576192
compute_segments(): wend = 110100480
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 211
compute_segments(): wstart = 110100480
compute_segments(): wend = 110624768
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 212
compute_segments(): wstart = 110624768
compute_segments(): wend = 111149056
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 213
compute_segments(): wstart = 111149056
compute_segments(): wend = 111673344
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 214
compute_segments(): wstart = 111673344
compute_segments(): wend = 112197632
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 215
compute_segments(): wstart = 112197632
compute_segments(): wend = 112721920
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 216
compute_segments(): wstart = 112721920
compute_segments(): wend = 113246208
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 217
compute_segments(): wstart = 113246208
compute_segments(): wend = 113770496
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 218
compute_segments(): wstart = 113770496
compute_segments(): wend = 114294784
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 219
compute_segments(): wstart = 114294784
compute_segments(): wend = 114819072
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 220
compute_segments(): wstart = 114819072
compute_segments(): wend = 115343360
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 221
compute_segments(): wstart = 115343360
compute_segments(): wend = 115867648
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 222
compute_segments(): wstart = 115867648
compute_segments(): wend = 116391936
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 223
compute_segments(): wstart = 116391936
compute_segments(): wend = 116916224
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 224
compute_segments(): wstart = 116916224
compute_segments(): wend = 117440512
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 225
compute_segments(): wstart = 117440512
compute_segments(): wend = 117964800
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 226
compute_segments(): wstart = 117964800
compute_segments(): wend = 118489088
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 227
compute_segments(): wstart = 118489088
compute_segments(): wend = 119013376
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 228
compute_segments(): wstart = 119013376
compute_segments(): wend = 119537664
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 229
compute_segments(): wstart = 119537664
compute_segments(): wend = 120061952
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 230
compute_segments(): wstart = 120061952
compute_segments(): wend = 120586240
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 231
compute_segments(): wstart = 120586240
compute_segments(): wend = 121110528
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 232
compute_segments(): wstart = 121110528
compute_segments(): wend = 121634816
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 233
compute_segments(): wstart = 121634816
compute_segments(): wend = 122159104
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 234
compute_segments(): wstart = 122159104
compute_segments(): wend = 122683392
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 235
compute_segments(): wstart = 122683392
compute_segments(): wend = 123207680
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 236
compute_segments(): wstart = 123207680
compute_segments(): wend = 123731968
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 237
compute_segments(): wstart = 123731968
compute_segments(): wend = 124256256
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 238
compute_segments(): wstart = 124256256
compute_segments(): wend = 124780544
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 239
compute_segments(): wstart = 124780544
compute_segments(): wend = 125304832
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 240
compute_segments(): wstart = 125304832
compute_segments(): wend = 125829120
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 241
compute_segments(): wstart = 125829120
compute_segments(): wend = 126353408
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 242
compute_segments(): wstart = 126353408
compute_segments(): wend = 126877696
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 243
compute_segments(): wstart = 126877696
compute_segments(): wend = 127401984
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 244
compute_segments(): wstart = 127401984
compute_segments(): wend = 127926272
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 245
compute_segments(): wstart = 127926272
compute_segments(): wend = 128450560
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 246
compute_segments(): wstart = 128450560
compute_segments(): wend = 128974848
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 247
compute_segments(): wstart = 128974848
compute_segments(): wend = 129499136
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 248
compute_segments(): wstart = 129499136
compute_segments(): wend = 130023424
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 249
compute_segments(): wstart = 130023424
compute_segments(): wend = 130547712
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 250
compute_segments(): wstart = 130547712
compute_segments(): wend = 131072000
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 251
compute_segments(): wstart = 131072000
compute_segments(): wend = 131596288
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 252
compute_segments(): wstart = 131596288
compute_segments(): wend = 132120576
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 253
compute_segments(): wstart = 132120576
compute_segments(): wend = 132644864
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 254
compute_segments(): wstart = 132644864
compute_segments(): wend = 133169152
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 255
compute_segments(): wstart = 133169152
compute_segments(): wend = 133693440
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 256
compute_segments(): wstart = 133693440
compute_segments(): wend = 134217728
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 257
compute_segments(): wstart = 134217728
compute_segments(): wend = 134742016
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 258
compute_segments(): wstart = 134742016
compute_segments(): wend = 135266304
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 259
compute_segments(): wstart = 135266304
compute_segments(): wend = 135790592
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 260
compute_segments(): wstart = 135790592
compute_segments(): wend = 136314880
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 261
compute_segments(): wstart = 136314880
compute_segments(): wend = 136839168
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 262
compute_segments(): wstart = 136839168
compute_segments(): wend = 137363456
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 263
compute_segments(): wstart = 137363456
compute_segments(): wend = 137887744
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 264
compute_segments(): wstart = 137887744
compute_segments(): wend = 138412032
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 265
compute_segments(): wstart = 138412032
compute_segments(): wend = 138936320
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 266
compute_segments(): wstart = 138936320
compute_segments(): wend = 139460608
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 267
compute_segments(): wstart = 139460608
compute_segments(): wend = 139984896
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 268
compute_segments(): wstart = 139984896
compute_segments(): wend = 140509184
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 269
compute_segments(): wstart = 140509184
compute_segments(): wend = 141033472
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 270
compute_segments(): wstart = 141033472
compute_segments(): wend = 141557760
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 271
compute_segments(): wstart = 141557760
compute_segments(): wend = 142082048
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 272
compute_segments(): wstart = 142082048
compute_segments(): wend = 142606336
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 273
compute_segments(): wstart = 142606336
compute_segments(): wend = 143130624
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 274
compute_segments(): wstart = 143130624
compute_segments(): wend = 143654912
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 275
compute_segments(): wstart = 143654912
compute_segments(): wend = 144179200
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 276
compute_segments(): wstart = 144179200
compute_segments(): wend = 144703488
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 277
compute_segments(): wstart = 144703488
compute_segments(): wend = 145227776
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 278
compute_segments(): wstart = 145227776
compute_segments(): wend = 145752064
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 279
compute_segments(): wstart = 145752064
compute_segments(): wend = 146276352
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 280
compute_segments(): wstart = 146276352
compute_segments(): wend = 146800640
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 281
compute_segments(): wstart = 146800640
compute_segments(): wend = 147324928
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 282
compute_segments(): wstart = 147324928
compute_segments(): wend = 147849216
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 283
compute_segments(): wstart = 147849216
compute_segments(): wend = 148373504
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 284
compute_segments(): wstart = 148373504
compute_segments(): wend = 148897792
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 285
compute_segments(): wstart = 148897792
compute_segments(): wend = 149422080
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 286
compute_segments(): wstart = 149422080
compute_segments(): wend = 149946368
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 287
compute_segments(): wstart = 149946368
compute_segments(): wend = 150470656
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 288
compute_segments(): wstart = 150470656
compute_segments(): wend = 150994944
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 289
compute_segments(): wstart = 150994944
compute_segments(): wend = 151519232
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 290
compute_segments(): wstart = 151519232
compute_segments(): wend = 152043520
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 291
compute_segments(): wstart = 152043520
compute_segments(): wend = 152567808
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 292
compute_segments(): wstart = 152567808
compute_segments(): wend = 153092096
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 293
compute_segments(): wstart = 153092096
compute_segments(): wend = 153616384
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 294
compute_segments(): wstart = 153616384
compute_segments(): wend = 154140672
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 295
compute_segments(): wstart = 154140672
compute_segments(): wend = 154664960
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 296
compute_segments(): wstart = 154664960
compute_segments(): wend = 155189248
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 297
compute_segments(): wstart = 155189248
compute_segments(): wend = 155713536
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 298
compute_segments(): wstart = 155713536
compute_segments(): wend = 156237824
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 299
compute_segments(): wstart = 156237824
compute_segments(): wend = 156762112
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 300
compute_segments(): wstart = 156762112
compute_segments(): wend = 157286400
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 301
compute_segments(): wstart = 157286400
compute_segments(): wend = 157810688
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 302
compute_segments(): wstart = 157810688
compute_segments(): wend = 158334976
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 303
compute_segments(): wstart = 158334976
compute_segments(): wend = 158859264
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 304
compute_segments(): wstart = 158859264
compute_segments(): wend = 159383552
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 305
compute_segments(): wstart = 159383552
compute_segments(): wend = 159907840
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 306
compute_segments(): wstart = 159907840
compute_segments(): wend = 160432128
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 307
compute_segments(): wstart = 160432128
compute_segments(): wend = 160956416
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 308
compute_segments(): wstart = 160956416
compute_segments(): wend = 161480704
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 309
compute_segments(): wstart = 161480704
compute_segments(): wend = 162004992
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 310
compute_segments(): wstart = 162004992
compute_segments(): wend = 162529280
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 311
compute_segments(): wstart = 162529280
compute_segments(): wend = 163053568
compute_segments(): plim_upper = 32256
compents(): wstart = 136839168
compute_segments(): wend = 137363456
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 263
compute_segments(): wstart = 137363456
compute_segments(): wend = 137887744
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 264
compute_segments(): wstart = 137887744
compute_segments(): wend = 138412032
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 265
compute_segments(): wstart = 138412032
compute_segments(): wend = 138936320
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 266
compute_segments(): wstart = 138936320
compute_segments(): wend = 139460608
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 267
compute_segments(): wstart = 139460608
compute_segments(): wend = 139984896
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 268
compute_segments(): wstart = 139984896
compute_segments(): wend = 140509184
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 269
compute_segments(): wstart = 140509184
compute_segments(): wend = 141033472
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 270
compute_segments(): wstart = 141033472
compute_segments(): wend = 141557760
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 271
compute_segments(): wstart = 141557760
compute_segments(): wend = 142082048
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 272
compute_segments(): wstart = 142082048
compute_segments(): wend = 142606336
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 273
compute_segments(): wstart = 142606336
compute_segments(): wend = 143130624
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 274
compute_segments(): wstart = 143130624
compute_segments(): wend = 143654912
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 275
compute_segments(): wstart = 143654912
compute_segments(): wend = 144179200
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 276
compute_segments(): wstart = 144179200
compute_segments(): wend = 144703488
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 277
compute_segments(): wstart = 144703488
compute_segments(): wend = 145227776
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 278
compute_segments(): wstart = 145227776
compute_segments(): wend = 145752064
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 279
compute_segments(): wstart = 145752064
compute_segments(): wend = 146276352
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 280
compute_segments(): wstart = 146276352
compute_segments(): wend = 146800640
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 281
compute_segments(): wstart = 146800640
compute_segments(): wend = 147324928
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 282
compute_segments(): wstart = 147324928
compute_segments(): wend = 147849216
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 283
compute_segments(): wstart = 147849216
compute_segments(): wend = 148373504
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 284
compute_segments(): wstart = 148373504
compute_segments(): wend = 148897792
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 285
compute_segments(): wstart = 148897792
compute_segments(): wend = 149422080
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 286
compute_segments(): wstart = 149422080
compute_segments(): wend = 149946368
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 287
compute_segments(): wstart = 149946368
compute_segments(): wend = 150470656
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 288
compute_segments(): wstart = 150470656
compute_segments(): wend = 150994944
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 289
compute_segments(): wstart = 150994944
compute_segments(): wend = 151519232
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 290
compute_segments(): wstart = 151519232
compute_segments(): wend = 152043520
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 291
compute_segments(): wstart = 152043520
compute_segments(): wend = 152567808
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 292
compute_segments(): wstart = 152567808
compute_segments(): wend = 153092096
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 293
compute_segments(): wstart = 153092096
compute_segments(): wend = 153616384
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 294
compute_segments(): wstart = 153616384
compute_segments(): wend = 154140672
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 295
compute_segments(): wstart = 154140672
compute_segments(): wend = 154664960
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 296
compute_segments(): wstart = 154664960
compute_segments(): wend = 155189248
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 297
compute_segments(): wstart = 155189248
compute_segments(): wend = 155713536
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 298
compute_segments(): wstart = 155713536
compute_segments(): wend = 156237824
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 299
compute_segments(): wstart = 156237824
compute_segments(): wend = 156762112
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 300
compute_segments(): wstart = 156762112
compute_segments(): wend = 157286400
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 301
compute_segments(): wstart = 157286400
compute_segments(): wend = 157810688
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 302
compute_segments(): wstart = 157810688
compute_segments(): wend = 158334976
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 303
compute_segments(): wstart = 158334976
compute_segments(): wend = 158859264
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 304
compute_segments(): wstart = 158859264
compute_segments(): wend = 159383552
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 305
compute_segments(): wstart = 159383552
compute_segments(): wend = 159907840
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 306
compute_segments(): wstart = 159907840
compute_segments(): wend = 160432128
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 307
compute_segments(): wstart = 160432128
compute_segments(): wend = 160956416
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 308
compute_segments(): wstart = 160956416
compute_segments(): wend = 161480704
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 309
compute_segments(): wstart = 161480704
compute_segments(): wend = 162004992
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 310
compute_segments(): wstart = 162004992
compute_segments(): wend = 162529280
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 311
compute_segments(): wstart = 162529280
compute_segments(): wend = 163053568
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 312
compute_segments(): wstart = 163053568
compute_segments(): wend = 163577856
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 313
compute_segments(): wstart = 163577856
compute_segments(): wend = 164102144
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 314
compute_segments(): wstart = 164102144
compute_segments(): wend = 164626432
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 315
compute_segments(): wstart = 164626432
compute_segments(): wend = 165150720
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 316
compute_segments(): wstart = 165150720
compute_segments(): wend = 165675008
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 317
compute_segments(): wstart = 165675008
compute_segments(): wend = 166199296
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 318
compute_segments(): wstart = 166199296
compute_segments(): wend = 166723584
compute_segments(): plim_upper = 32256
compute_segments(): return
find_chunks(): j = 319
compute_segments(): wstart = 166723584
compute_segments(): wend = 167247872e_segments(): wstart = 179306496
compute_segments(): wend = 179830784
compute_segments(): return
find_chunks(): j = 344
compute_segments(): wstart = 179830784
compute_segments(): wend = 180355072
compute_segments(): return
find_chunks(): j = 345
compute_segments(): wstart = 180355072
compute_segments(): wend = 180879360
compute_segments(): return
find_chunks(): j = 346
compute_segments(): wstart = 180879360
compute_segments(): wend = 181403648
compute_segments(): return
find_chunks(): j = 347
compute_segments(): wstart = 181403648
compute_segments(): wend = 181927936
compute_segments(): return
find_chunks(): j = 348
compute_segments(): wstart = 181927936
compute_segments(): wend = 182452224
compute_segments(): return
find_chunks(): j = 349
compute_segments(): wstart = 182452224
compute_segments(): wend = 182976512
compute_segments(): return
find_chunks(): j = 350
compute_segments(): wstart = 182976512
compute_segments(): wend = 183500800
compute_segments(): return
find_chunks(): j = 351
compute_segments(): wstart = 183500800
compute_segments(): wend = 184025088
compute_segments(): return
find_chunks(): j = 352
compute_segments(): wstart = 184025088
compute_segments(): wend = 184549376
compute_segments(): return
find_chunks(): j = 353
compute_segments(): wstart = 184549376
compute_segments(): wend = 185073664
compute_segments(): return
find_chunks(): j = 354
compute_segments(): wstart = 185073664
compute_segments(): wend = 185597952
compute_segments(): return
find_chunks(): j = 355
compute_segments(): wstart = 185597952
compute_segments(): wend = 186122240
compute_segments(): return
find_chunks(): j = 356
compute_segments(): wstart = 186122240
compute_segments(): wend = 186646528
compute_segments(): return
find_chunks(): j = 357
compute_segments(): wstart = 186646528
compute_segments(): wend = 187170816
compute_segments(): return
find_chunks(): j = 358
compute_segments(): wstart = 187170816
compute_segments(): wend = 187695104
compute_segments(): return
find_chunks(): j = 359
compute_segments(): wstart = 187695104
compute_segments(): wend = 188219392
compute_segments(): return
find_chunks(): j = 360
compute_segments(): wstart = 188219392
compute_segments(): wend = 188743680
compute_segments(): return
find_chunks(): j = 361
compute_segments(): wstart = 188743680
compute_segments(): wend = 189267968
compute_segments(): return
find_chunks(): j = 362
compute_segments(): wstart = 189267968
compute_segments(): wend = 189792256
compute_segments(): return
find_chunks(): j = 363
compute_segments(): wstart = 189792256
compute_segments(): wend = 190316544
compute_segments(): return
find_chunks(): j = 364
compute_segments(): wstart = 190316544
compute_segments(): wend = 190840832
compute_segments(): return
find_chunks(): j = 365
compute_segments(): wstart = 190840832
compute_segments(): wend = 191365120
compute_segments(): return
find_chunks(): j = 366
compute_segments(): wstart = 191365120
compute_segments(): wend = 191889408
compute_segments(): return
find_chunks(): j = 367
compute_segments(): wstart = 191889408
compute_segments(): wend = 192413696
compute_segments(): return
find_chunks(): j = 368
compute_segments(): wstart = 192413696
compute_segments(): wend = 192937984
compute_segments(): return
find_chunks(): j = 369
compute_segments(): wstart = 192937984
compute_segments(): wend = 193462272
compute_segments(): return
find_chunks(): j = 370
compute_segments(): wstart = 193462272
compute_segments(): wend = 193986560
compute_segments(): return
find_chunks(): j = 371
compute_segments(): wstart = 193986560
compute_segments(): wend = 194510848
compute_segments(): return
find_chunks(): j = 372
compute_segments(): wstart = 194510848
compute_segments(): wend = 195035136
compute_segments(): return
find_chunks(): j = 373
compute_segments(): wstart = 195035136
compute_segments(): wend = 195559424
compute_segments(): return
find_chunks(): j = 374
compute_segments(): wstart = 195559424
compute_segments(): wend = 196083712
compute_segments(): return
find_chunks(): j = 375
compute_segments(): wstart = 196083712
compute_segments(): wend = 196608000
compute_segments(): return
find_chunks(): j = 376
compute_segments(): wstart = 196608000
compute_segments(): wend = 197132288
compute_segments(): return
find_chunks(): j = 377
compute_segments(): wstart = 197132288
compute_segments(): wend = 197656576
compute_segments(): return
find_chunks(): j = 378
compute_segments(): wstart = 197656576
compute_segments(): wend = 198180864
compute_segments(): return
find_chunks(): j = 379
compute_segments(): wstart = 198180864
compute_segments(): wend = 198705152
compute_segments(): return
find_chunks(): j = 380
compute_segments(): wstart = 198705152
compute_segments(): wend = 199229440
compute_segments(): return
find_chunks(): j = 381
compute_segments(): wstart = 199229440
compute_segments(): wend = 199753728
compute_segments(): return
find_chunks(): j = 382
compute_segments(): wstart = 199753728
compute_segments(): wend = 200278016
compute_segments(): return
find_chunks(): j = 383
compute_segments(): wstart = 200278016
compute_segments(): wend = 200802304
compute_segments(): return
find_chunks(): j = 384
compute_segments(): wstart = 200802304
compute_segments(): wend = 201326592
compute_segments(): return
find_chunks(): j = 385
compute_segments(): wstart = 201326592
compute_segments(): wend = 201850880
compute_segments(): return
find_chunks(): j = 386
compute_segments(): wstart = 201850880
compute_segments(): wend = 202375168
compute_segments(): return
find_chunks(): j = 387
compute_segments(): wstart = 202375168
compute_segments(): wend = 202899456
compute_segments(): return
find_chunks(): j = 388
compute_segments(): wstart = 202899456
compute_segments(): wend = 203423744
compute_segments(): return
find_chunks(): j = 389
compute_segments(): wstart = 203423744
compute_segments(): wend = 203948032
compute_segments(): return
find_chunks(): j = 390
compute_segments(): wstart = 203948032
compute_segments(): wend = 204472320
compute_segments(): return
find_chunks(): j = 391
compute_segments(): wstart = 204472320
compute_segments(): wend = 204996608
compute_segments(): return
find_chunks(): j = 392
compute_segments(): wstart = 204996608
compute_segments(): wend = 205520896
compute_segments(): return
find_chunks(): j = 393
compute_segments(): wstart = 205520896
compute_segments(): wend = 206045184
compute_segments(): return
find_chunks(): j = 394
compute_segments(): wstart = 206045184
compute_segments(): wend = 206569472
compute_segments(): return
find_chunks(): j = 395
compute_segments(): wstart = 206569472
compute_segments(): wend = 207093760
compute_segments(): return
find_chunks(): j = 396
compute_segments(): wstart = 207093760
compute_segments(): wend = 207618048
compute_segments(): return
find_chunks(): j = 397
compute_segments(): wstart = 207618048
compute_segments(): wend = 208142336
compute_segments(): return
find_chunks(): j = 398
compute_segments(): wstart = 208142336
compute_segments(): wend = 208666624
compute_segments(): return
find_chunks(): j = 399
compute_segments(): wstart = 208666624
compute_segments(): wend = 209190912
compute_segments(): return
find_chunks(): j = 400
compute_segments(): wstart = 209190912
compute_segments(): wend = 209715200
compute_segments(): return
find_chunks(): j = 401
compute_segments(): wstart = 209715200
compute_segments(): wend = 210239488
compute_segments(): return
find_chunks(): j = 402
compute_segments(): wstart = 210239488
compute_segments(): wend = 210763776
compute_segments(): return
find_chunks(): j = 403
compute_segments(): wstart = 210763776
compute_segments(): wend = 211288064
compute_segments(): return
find_chunks(): j = 404
compute_segments(): wstart = 211288064
compute_segments(): wend = 211812352
compute_segments(): return
find_chunks(): j = 405
compute_segments(): wstart = 211812352
compute_segments(): wend = 212336640
compute_segments(): return
find_chunks(): j = 406
compute_segments(): wstart = 212336640
compute_segments(): wend = 212860928
compute_segments(): return
find_chunks(): j = 407
compute_segments(): wstart = 212860928
compute_segments(): wend = 213385216
compute_segments(): return
find_chunks(): j = 408
compute_segments(): wstart = 213385216
compute_segments(): wend = 213909504
compute_segments(): return
find_chunks(): j = 409
compute_segments(): wstart = 213909504
compute_segments(): wend = 214433792
compute_segments(): return
find_chunks(): j = 410
compute_segments(): wstart = 214433792
compute_segments(): wend = 214958080
compute_segments(): return
find_chunks(): j = 411
compute_segments(): wstart = 214958080
compute_segments(): wend = 215482368
compute_segments(): return
find_chunks(): j = 412
compute_segments(): wstart = 215482368
compute_segments(): wend = 216006656
compute_segments(): return
find_chunks(): j = 413
compute_segments(): wstart = 216006656
compute_segments(): wend = 216530944
compute_segments(): return
find_chunks(): j = 414
compute_segments(): wstart = 216530944
compute_segments(): wend = 217055232
compute_segments(): return
find_chunks(): j = 415
compute_segments(): wstart = 217055232
compute_segments(): wend = 217579520
compute_segments(): return
find_chunks(): j = 416
compute_segments(): wstart = 217579520
compute_segments(): wend = 218103808
compute_segments(): return
find_chunks(): j = 417
compute_segments(): wstart = 218103808
compute_segments(): wend = 218628096
compute_segments(): return
find_chunks(): j = 418
compute_segments(): wstart = 218628096
compute_segments(): wend = 219152384
compute_segments(): return
find_chunks(): j = 419
compute_segments(): wstart = 219152384
compute_segments(): wend = 219676672
compute_segments(): return
find_chunks(): j = 420
compute_segments(): wstart = 219676672
compute_segments(): wend = 220200960
compute_segments(): return
find_chunks(): j = 421
compute_segments(): wstart = 220200960
compute_segments(): wend = 220725248
compute_segments(): return
find_chunks(): j = 422
compute_segments(): wstart = 220725248
compute_segments(): wend = 221249536
compute_segments(): return
find_chunks(): j = 423
compute_segments(): wstart = 221249536
compute_segments(): wend = 221773824
compute_segments(): return
find_chunks(): j = 424
compute_segments(): wstart = 221773824
compute_segments(): wend = 222298112
compute_segments(): return
find_chunks(): j = 425
compute_segments(): wstart = 222298112
compute_segments(): wend = 222822400
compute_segments(): return
find_chunks(): j = 426
compute_segments(): wstart = 222822400
compute_segments(): wend = 223346688
compute_segments(): return
find_chunks(): j = 427
compute_segments(): wstart = 223346688
compute_segments(): wend = 223870976
compute_segments(): return
find_chunks(): j = 428
compute_segments(): wstart = 223870976
compute_segments(): wend = 224395264
compute_segments(): return
find_chunks(): j = 429
compute_segments(): wstart = 224395264
compute_segments(): wend = 224919552
compute_segments(): return
find_chunks(): j = 430
compute_segments(): wstart = 224919552
compute_segments(): wend = 225443840
compute_segments(): return
find_chunks(): j = 431
compute_segments(): wstart = 225443840
compute_segments(): wend = 225968128
compute_segments(): return
find_chunks(): j = 432
compute_segments(): wstart = 225968128
compute_segments(): wend = 226492416
compute_segments(): return
find_chunks(): j = 433
compute_segments(): wstart = 226492416
compute_segments(): wend = 227016704
compute_segments(): return
find_chunks(): j = 434
compute_segments(): wstart = 227016704
compute_segments(): wend = 227540992
compute_segments(): return
find_chunks(): j = 435
compute_segments(): wstart = 227540992
compute_segments(): wend = 228065280
compute_segments(): return
find_chunks(): j = 436
compute_segments(): wstart = 228065280
compute_segments(): wend = 228589568
compute_segments(): return
find_chunks(): j = 437
compute_segments(): wstart = 228589568
compute_segments(): wend = 229113856
compute_segments(): return
find_chunks(): j = 438
compute_segments(): wstart = 229113856
compute_segments(): wend = 229638144
compute_segments(): return
find_chunks(): j = 439
compute_segments(): wstart = 229638144
compute_segments(): wend = 230162432
compute_segments(): return
find_chunks(): j = 440
compute_segments(): wstart = 230162432
compute_segments(): wend = 230686720
compute_segments(): return
find_chunks(): j = 441
compute_segments(): wstart = 230686720
compute_segments(): wend = 231211008
compute_segments(): return
find_chunks(): j = 442
compute_segments(): wstart = 231211008
compute_segments(): wend = 231735296
compute_segments(): return
find_chunks(): j = 443
compute_segments(): wstart = 231735296
compute_segments(): wend = 232259584
compute_segments(): return
find_chunks(): j = 444
compute_segments(): wstart = 232259584
compute_segments(): wend = 232783872
compute_segments(): return
find_chunks(): j = 445
compute_segments(): wstart = 232783872
compute_segments(): wend = 233308160
compute_segments(): return
find_chunks(): j = 446
compute_segments(): wstart = 233308160
compute_segments(): wend = 233832448
compute_segments(): return
find_chunks(): j = 447
compute_segments(): wstart = 233832448
compute_segments(): wend = 234356736
compute_segments(): return
find_chunks(): j = 448
compute_segments(): wstart = 234356736
compute_segments(): wend = 234881024
compute_segments(): return
find_chunks(): j = 449
compute_segments(): wstart = 234881024
compute_segments(): wend = 235405312
compute_segments(): return
find_chunks(): j = 450
compute_segments(): wstart = 235405312
compute_segments(): wend = 235929600
compute_segments(): return
find_chunks(): j = 451
compute_segments(): wstart = 235929600
compute_segments(): wend = 236453888
compute_segments(): return
find_chunks(): j = 452
compute_segments(): wstart = 236453888
compute_segments(): wend = 236978176
compute_segments(): return
find_chunks(): j = 453
compute_segments(): wstart = 236978176
compute_segments(): wend = 237502464
compute_segments(): return
find_chunks(): j = 454
compute_segments(): wstart = 237502464
compute_segments(): wend = 238026752
compute_segments(): return
find_chunks(): j = 455
compute_segments(): wstart = 238026752
compute_segments(): wend = 238551040
compute_segments(): return
find_chunks(): j = 456
compute_segments(): wstart = 238551040
compute_segments(): wend = 239075328
compute_segments(): return
find_chunks(): j = 457
compute_segments(): wstart = 239075328
compute_segments(): wend = 239599616
compute_segments(): return
find_chunks(): j = 458
compute_segments(): wstart = 239599616
compute_segments(): wend = 240123904
compute_segments(): return
find_chunks(): j = 459
compute_segments(): wstart = 240123904
compute_segments(): wend = 240648192
compute_segments(): return
find_chunks(): j = 460
compute_segments(): wstart = 240648192
compute_segments(): wend = 241172480
compute_segments(): return
find_chunks(): j = 461
compute_segments(): wstart = 241172480
compute_segments(): wend = 241696768
compute_segments(): return
find_chunks(): j = 462
compute_segments(): wstart = 241696768
compute_segments(): wend = 242221056
compute_segments(): return
find_chunks(): j = 463
compute_segments(): wstart = 242221056
compute_segments(): wend = 242745344
compute_segments(): return
find_chunks(): j = 464
compute_segments(): wstart = 242745344
compute_segments(): wend = 243269632
compute_segments(): return
find_chunks(): j = 465
compute_segments(): wstart = 243269632
compute_segments(): wend = 243793920
compute_segments(): return
find_chunks(): j = 466
compute_segments(): wstart = 243793920
compute_segments(): wend = 244318208
compute_segments(): return
find_chunks(): j = 467
compute_segments(): wstart = 244318208
compute_segments(): wend = 244842496
compute_segments(): return
find_chunks(): j = 468
compute_segments(): wstart = 244842496
compute_segments(): wend = 245366784
compute_segments(): return
find_chunks(): j = 469
compute_segments(): wstart = 245366784
compute_segments(): wend = 245891072
compute_segments(): return
find_chunks(): j = 470
compute_segments(): wstart = 245891072
compute_segments(): wend = 246415360
compute_segments(): return
find_chunks(): j = 471
compute_segments(): wstart = 246415360
compute_segments(): wend = 246939648
compute_segments(): return
find_chunks(): j = 472
compute_segments(): wstart = 246939648
compute_segments(): wend = 247463936
compute_segments(): return
find_chunks(): j = 473
compute_segments(): wstart = 247463936
compute_segments(): wend = 247988224
compute_segments(): return
find_chunks(): j = 474
compute_segments(): wstart = 247988224
compute_segments(): wend = 248512512
compute_segments(): return
find_chunks(): j = 475
compute_segments(): wstart = 248512512
compute_segments(): wend = 249036800
compute_segments(): return
find_chunks(): j = 476
compute_segments(): wstart = 249036800
compute_segments(): wend = 249561088
compute_segments(): return
find_chunks(): j = 477
compute_segments(): wstart = 249561088
compute_segments(): wend = 250085376
compute_segments(): return
find_chunks(): j = 478
compute_segments(): wstart = 250085376
compute_segments(): wend = 250609664
compute_segments(): return
find_chunks(): j = 479
compute_segments(): wstart = 250609664
compute_segments(): wend = 251133952
compute_segments(): return
find_chunks(): j = 480
compute_segments(): wstart = 251133952
compute_segments(): wend = 251658240
compute_segments(): return
find_chunks(): j = 481
compute_segments(): wstart = 251658240
compute_segments(): wend = 252182528
compute_segments(): return
find_chunks(): j = 482
compute_segments(): wstart = 252182528
compute_segments(): wend = 252706816
compute_segments(): return
find_chunks(): j = 483
compute_segments(): wstart = 252706816
compute_segments(): wend = 253231104
compute_segments(): return
find_chunks(): j = 484
compute_segments(): wstart = 253231104
compute_segments(): wend = 253755392
compute_segments(): return
find_chunks(): j = 485
compute_segments(): wstart = 253755392
compute_segments(): wend = 254279680
compute_segments(): return
find_chunks(): j = 486
compute_segments(): wstart = 254279680
compute_segments(): wend = 254803968
compute_segments(): return
find_chunks(): j = 487
compute_segments(): wstart = 254803968
compute_segments(): wend = 255328256
compute_segments(): return
find_chunks(): j = 488
compute_segments(): wstart = 255328256
compute_segments(): wend = 255852544
compute_segments(): return
find_chunks(): j = 489
compute_segments(): wstart = 255852544
compute_segments(): wend = 256376832
compute_segments(): return
find_chunks(): j = 490
compute_segments(): wstart = 256376832
compute_segments(): wend = 256901120
compute_segments(): return
find_chunks(): j = 491
compute_segments(): wstart = 256901120
compute_segments(): wend = 257425408
compute_segments(): return
find_chunks(): j = 492
compute_segments(): wstart = 257425408
compute_segments(): wend = 257949696
compute_segments(): return
find_chunks(): j = 493
compute_segments(): wstart = 257949696
compute_segments(): wend = 258473984
compute_segments(): return
find_chunks(): j = 494
compute_segments(): wstart = 258473984
compute_segments(): wend = 258998272
compute_segments(): return
find_chunks(): j = 495
compute_segments(): wstart = 258998272
compute_segments(): wend = 259522560
compute_segments(): return
find_chunks(): j = 496
compute_segments(): wstart = 259522560
compute_segments(): wend = 260046848
compute_segments(): return
find_chunks(): j = 497
compute_segments(): wstart = 260046848
compute_segments(): wend = 260571136
compute_segments(): return
find_chunks(): j = 498
compute_segments(): wstart = 260571136
compute_segments(): wend = 261095424
compute_segments(): return
find_chunks(): j = 499
compute_segments(): wstart = 261095424
compute_segments(): wend = 261619712
compute_segments(): return
find_chunks(): j = 500
compute_segments(): wstart = 261619712
compute_segments(): wend = 262144000
compute_segments(): return
find_chunks(): j = 501
compute_segments(): wstart = 262144000
compute_segments(): wend = 262668288
compute_segments(): return
find_chunks(): j = 502
compute_segments(): wstart = 262668288
compute_segments(): wend = 263192576
compute_segments(): return
find_chunks(): j = 503
compute_segments(): wstart = 263192576
compute_segments(): wend = 263716864
compute_segments(): return
find_chunks(): j = 504
compute_segments(): wstart = 263716864
compute_segments(): wend = 264241152
compute_segments(): return
find_chunks(): j = 505
compute_segments(): wstart = 264241152
compute_segments(): wend = 264765440
compute_segments(): return
find_chunks(): j = 506
compute_segments(): wstart = 264765440
compute_segments(): wend = 265289728
compute_segments(): return
find_chunks(): j = 507
compute_segments(): wstart = 265289728
compute_segments(): wend = 265814016
compute_segments(): return
find_chunks(): j = 508
compute_segments(): wstart = 265814016
compute_segments(): wend = 266338304
compute_segments(): return
find_chunks(): j = 509
compute_segments(): wstart = 266338304
compute_segments(): wend = 266862592
compute_segments(): return
find_chunks(): j = 510
compute_segments(): wstart = 266862592
compute_segments(): wend = 267386880
compute_segments(): return
find_chunks(): j = 511
compute_segments(): wstart = 267386880
compute_segments(): wend = 267911168
compute_segments(): return
find_chunks(): j = 512
compute_segments(): wstart = 267911168
compute_segments(): wend = 268435456
compute_segments(): return
find_chunks(): j = 513
compute_segments(): wstart = 268435456
compute_segments(): wend = 268959744
compute_segments(): return
find_chunks(): j = 514
compute_segments(): wstart = 268959744
compute_segments(): wend = 269484032
compute_segments(): return
find_chunks(): j = 515
compute_segments(): wstart = 269484032
compute_segments(): wend = 270008320
compute_segments(): return
find_chunks(): j = 516
compute_segments(): wstart = 270008320
compute_segments(): wend = 270532608
compute_segments(): return
find_chunks(): j = 517
compute_segments(): wstart = 270532608
compute_segments(): wend = 271056896
compute_segments(): return
find_chunks(): j = 518
compute_segments(): wstart = 271056896
compute_segments(): wend = 271581184
compute_segments(): return
find_chunks(): j = 519
compute_segments(): wstart = 271581184
compute_segments(): wend = 272105472
compute_segments(): return
find_chunks(): j = 520
compute_segments(): wstart = 272105472
compute_segments(): wend = 272629760
compute_segments(): return
find_chunks(): j = 521
compute_segments(): wstart = 272629760
compute_segments(): wend = 273154048
compute_segments(): return
find_chunks(): j = 522
compute_segments(): wstart = 273154048
compute_segments(): wend = 273678336
compute_segments(): return
find_chunks(): j = 523
compute_segments(): wstart = 273678336
compute_segments(): wend = 274202624
compute_segments(): return
find_chunks(): j = 524
compute_segments(): wstart = 274202624
compute_segments(): wend = 274726912
compute_segments(): return
find_chunks(): j = 525
compute_segments(): wstart = 274726912
compute_segments(): wend = 275251200
compute_segments(): return
find_chunks(): j = 526
compute_segments(): wstart = 275251200
compute_segments(): wend = 275775488
compute_segments(): return
find_chunks(): j = 527
compute_segments(): wstart = 275775488
compute_segments(): wend = 276299776
compute_segments(): return
find_chunks(): j = 528
compute_segments(): wstart = 276299776
compute_segments(): wend = 276824064
compute_segments(): return
find_chunks(): j = 529
compute_segments(): wstart = 276824064
compute_segments(): wend = 277348352
compute_segments(): return
find_chunks(): j = 530
compute_segments(): wstart = 277348352
compute_segments(): wend = 277872640
compute_segments(): return
find_chunks(): j = 531
compute_segments(): wstart = 277872640
compute_segments(): wend = 278396928
compute_segments(): return
find_chunks(): j = 532
compute_segments(): wstart = 278396928
compute_segments(): wend = 278921216
compute_segments(): return
find_chunks(): j = 533
compute_segments(): wstart = 278921216
compute_segments(): wend = 279445504
compute_segments(): return
find_chunks(): j = 534
compute_segments(): wstart = 279445504
compute_segments(): wend = 279969792
compute_segments(): return
find_chunks(): j = 535
compute_segments(): wstart = 279969792
compute_segments(): wend = 280494080
compute_segments(): return
find_chunks(): j = 536
compute_segments(): wstart = 280494080
compute_segments(): wend = 281018368
compute_segments(): return
find_chunks(): j = 537
compute_segments(): wstart = 281018368
compute_segments(): wend = 281542656
compute_segments(): return
find_chunks(): j = 538
compute_segments(): wstart = 281542656
compute_segments(): wend = 282066944
compute_segments(): return
find_chunks(): j = 539
compute_segments(): wstart = 282066944
compute_segments(): wend = 282591232
compute_segments(): return
find_chunks(): j = 540
compute_segments(): wstart = 282591232
compute_segments(): wend = 283115520
compute_segments(): return
find_chunks(): j = 541
compute_segments(): wstart = 283115520
compute_segments(): wend = 283639808
compute_segments(): return
find_chunks(): j = 542
compute_segments(): wstart = 283639808
compute_segments(): wend = 284164096
compute_segments(): return
find_chunks(): j = 543
compute_segments(): wstart = 284164096
compute_segments(): wend = 284688384
compute_segments(): return
find_chunks(): j = 544
compute_segments(): wstart = 284688384
compute_segments(): wend = 285212672
compute_segments(): return
find_chunks(): j = 545
compute_segments(): wstart = 285212672
compute_segments(): wend = 285736960
compute_segments(): return
find_chunks(): j = 546
compute_segments(): wstart = 285736960
compute_segments(): wend = 286261248
compute_segments(): return
find_chunks(): j = 547
compute_segments(): wstart = 286261248
compute_segments(): wend = 286785536
compute_segments(): return
find_chunks(): j = 548
compute_segments(): wstart = 286785536
compute_segments(): wend = 287309824
compute_segments(): return
find_chunks(): j = 549
compute_segments(): wstart = 287309824
compute_segments(): wend = 287834112
compute_segments(): return
find_chunks(): j = 550
compute_segments(): wstart = 287834112
compute_segments(): wend = 288358400
compute_segments(): return
find_chunks(): j = 551
compute_segments(): wstart = 288358400
compute_segments(): wend = 288882688
compute_segments(): return
find_chunks(): j = 552
compute_segments(): wstart = 288882688
compute_segments(): wend = 289406976
compute_segments(): return
find_chunks(): j = 553
compute_segments(): wstart = 289406976
compute_segments(): wend = 289931264
compute_segments(): return
find_chunks(): j = 554
compute_segments(): wstart = 289931264
compute_segments(): wend = 290455552
compute_segments(): return
find_chunks(): j = 555
compute_segments(): wstart = 290455552
compute_segments(): wend = 290979840
compute_segments(): return
find_chunks(): j = 556
compute_segments(): wstart = 290979840
compute_segments(): wend = 291504128
compute_segments(): return
find_chunks(): j = 557
compute_segments(): wstart = 291504128
compute_segments(): wend = 292028416
compute_segments(): return
find_chunks(): j = 558
compute_segments(): wstart = 292028416
compute_segments(): wend = 292552704
compute_segments(): return
find_chunks(): j = 559
compute_segments(): wstart = 292552704
compute_segments(): wend = 293076992
compute_segments(): return
find_chunks(): j = 560
compute_segments(): wstart = 293076992
compute_segments(): wend = 293601280
compute_segments(): return
find_chunks(): j = 561
compute_segments(): wstart = 293601280
compute_segments(): wend = 294125568
compute_segments(): return
find_chunks(): j = 562
compute_segments(): wstart = 294125568
compute_segments(): wend = 294649856
compute_segments(): return
find_chunks(): j = 563
compute_segments(): wstart = 294649856
compute_segments(): wend = 295174144
compute_segments(): return
find_chunks(): j = 564
compute_segments(): wstart = 295174144
compute_segments(): wend = 295698432
compute_segments(): return
find_chunks(): j = 565
compute_segments(): wstart = 295698432
compute_segments(): wend = 296222720
compute_segments(): return
find_chunks(): j = 566
compute_segments(): wstart = 296222720
compute_segments(): wend = 296747008
compute_segments(): return
find_chunks(): j = 567
compute_segments(): wstart = 296747008
compute_segments(): wend = 297271296
compute_segments(): return
find_chunks(): j = 568
compute_segments(): wstart = 297271296
compute_segments(): wend = 297795584
compute_segments(): return
find_chunks(): j = 569
compute_segments(): wstart = 297795584
compute_segments(): wend = 298319872
compute_segments(): return
find_chunks(): j = 570
compute_segments(): wstart = 298319872
compute_segments(): wend = 298844160
compute_segments(): return
find_chunks(): j = 571
compute_segments(): wstart = 298844160
compute_segments(): wend = 299368448
compute_segments(): return
find_chunks(): j = 572
compute_segments(): wstart = 299368448
compute_segments(): wend = 299892736
compute_segments(): return
find_chunks(): j = 573
compute_segments(): wstart = 299892736
compute_segments(): wend = 300417024
compute_segments(): return
find_chunks(): j = 574
compute_segments(): wstart = 300417024
compute_segments(): wend = 300941312
compute_segments(): return
find_chunks(): j = 575
compute_segments(): wstart = 300941312
compute_segments(): wend = 301465600
compute_segments(): return
find_chunks(): j = 576
compute_segments(): wstart = 301465600
compute_segments(): wend = 301989888
compute_segments(): return
find_chunks(): j = 577
compute_segments(): wstart = 301989888
compute_segments(): wend = 302514176
compute_segments(): return
find_chunks(): j = 578
compute_segments(): wstart = 302514176
compute_segments(): wend = 303038464
compute_segments(): return
find_chunks(): j = 579
compute_segments(): wstart = 303038464
compute_segments(): wend = 303562752
compute_segments(): return
find_chunks(): j = 580
compute_segments(): wstart = 303562752
compute_segments(): wend = 304087040
compute_segments(): return
find_chunks(): j = 581
compute_segments(): wstart = 304087040
compute_segments(): wend = 304611328
compute_segments(): return
find_chunks(): j = 582
compute_segments(): wstart = 304611328
compute_segments(): wend = 305135616
compute_segments(): return
find_chunks(): j = 583
compute_segments(): wstart = 305135616
compute_segments(): wend = 305659904
compute_segments(): return
find_chunks(): j = 584
compute_segments(): wstart = 305659904
compute_segments(): wend = 306184192
compute_segments(): return
find_chunks(): j = 585
compute_segments(): wstart = 306184192
compute_segments(): wend = 306708480
compute_segments(): return
find_chunks(): j = 586
compute_segments(): wstart = 306708480
compute_segments(): wend = 307232768
compute_segments(): return
find_chunks(): j = 587
compute_segments(): wstart = 307232768
compute_segments(): wend = 307757056
compute_segments(): return
find_chunks(): j = 588
compute_segments(): wstart = 307757056
compute_segments(): wend = 308281344
compute_segments(): return
find_chunks(): j = 589
compute_segments(): wstart = 308281344
compute_segments(): wend = 308805632
compute_segments(): return
find_chunks(): j = 590
compute_segments(): wstart = 308805632
compute_segments(): wend = 309329920
compute_segments(): return
find_chunks(): j = 591
compute_segments(): wstart = 309329920
compute_segments(): wend = 309854208
compute_segments(): return
find_chunks(): j = 592
compute_segments(): wstart = 309854208
compute_segments(): wend = 310378496
compute_segments(): return
find_chunks(): j = 593
compute_segments(): wstart = 310378496
compute_segments(): wend = 310902784
compute_segments(): return
find_chunks(): j = 594
compute_segments(): wstart = 310902784
compute_segments(): wend = 311427072
compute_segments(): return
find_chunks(): j = 595
compute_segments(): wstart = 311427072
compute_segments(): wend = 311951360
compute_segments(): return
find_chunks(): j = 596
compute_segments(): wstart = 311951360
compute_segments(): wend = 312475648
compute_segments(): return
find_chunks(): j = 597
compute_segments(): wstart = 312475648
compute_segments(): wend = 312999936
compute_segments(): return
find_chunks(): j = 598
compute_segments(): wstart = 312999936
compute_segments(): wend = 313524224
compute_segments(): return
find_chunks(): j = 599
compute_segments(): wstart = 313524224
compute_segments(): wend = 314048512
compute_segments(): return
find_chunks(): j = 600
compute_segments(): wstart = 314048512
compute_segments(): wend = 314572800
compute_segments(): return
find_chunks(): j = 601
compute_segments(): wstart = 314572800
compute_segments(): wend = 315097088
compute_segments(): return
find_chunks(): j = 602
compute_segments(): wstart = 315097088
compute_segments(): wend = 315621376
compute_segments(): returnhunks(): j = 2844
find_chunks(): j = 2845
find_chunks(): j = 2846
find_chunks(): j = 2847
find_chunks(): j = 2848
find_chunks(): j = 2849
find_chunks(): j = 2850
find_chunks(): j = 2851
find_chunks(): j = 2852
find_chunks(): j = 2853
find_chunks(): j = 2854
find_chunks(): j = 2855
find_chunks(): j = 2856
find_chunks(): j = 2857
find_chunks(): j = 2858
find_chunks(): j = 2859
find_chunks(): j = 2860
find_chunks(): j = 2861
find_chunks(): j = 2862
find_chunks(): j = 2863
find_chunks(): j = 2864
find_chunks(): j = 2865
find_chunks(): j = 2866
find_chunks(): j = 2867
find_chunks(): j = 2868
find_chunks(): j = 2869
find_chunks(): j = 2870
find_chunks(): j = 2871
find_chunks(): j = 2872
find_chunks(): j = 2873
find_chunks(): j = 2874
find_chunks(): j = 2875
find_chunks(): j = 2876
find_chunks(): j = 2877
find_chunks(): j = 2878
find_chunks(): j = 2879
find_chunks(): j = 2880
find_chunks(): j = 2881
find_chunks(): j = 2882
find_chunks(): j = 2883
find_chunks(): j = 2884
find_chunks(): j = 2885
find_chunks(): j = 2886
find_chunks(): j = 2887
find_chunks(): j = 2888
find_chunks(): j = 2889
find_chunks(): j = 2890
find_chunks(): j = 2891
find_chunks(): j = 2892
find_chunks(): j = 2893
find_chunks(): j = 2894
find_chunks(): j = 2895
find_chunks(): j = 2896
find_chunks(): j = 2897
find_chunks(): j = 2898
find_chunks(): j = 2899
find_chunks(): j = 2900
find_chunks(): j = 2901
find_chunks(): j = 2902
find_chunks(): j = 2903
find_chunks(): j = 2904
find_chunks(): j = 2905
find_chunks(): j = 2906
find_chunks(): j = 2907
find_chunks(): j = 2908
find_chunks(): j = 2909
find_chunks(): j = 2910
find_chunks(): j = 2911
find_chunks(): j = 2912
find_chunks(): j = 2913
find_chunks(): j = 2914
find_chunks(): j = 2915
find_chunks(): j = 2916
find_chunks(): j = 2917
find_chunks(): j = 2918
find_chunks(): j = 2919
find_chunks(): j = 2920
find_chunks(): j = 2921
find_chunks(): j = 2922
find_chunks(): j = 2923
find_chunks(): j = 2924
find_chunks(): j = 2925
find_chunks(): j = 2926
find_chunks(): j = 2927
find_chunks(): j = 2928
find_chunks(): j = 2929
find_chunks(): j = 2930
find_chunks(): j = 2931
find_chunks(): j = 2932
find_chunks(): j = 2933
find_chunks(): j = 2934
find_chunks(): j = 2935
find_chunks(): j = 2936
find_chunks(): j = 2937
find_chunks(): j = 2938
find_chunks(): j = 2939
find_chunks(): j = 2940
find_chunks(): j = 2941
find_chunks(): j = 2942
find_chunks(): j = 2943
find_chunks(): j = 2944
find_chunks(): j = 2945
find_chunks(): j = 2946
find_chunks(): j = 2947
find_chunks(): j = 2948
find_chunks(): j = 2949
find_chunks(): j = 2950
find_chunks(): j = 2951
find_chunks(): j = 2952
find_chunks(): j = 2953
find_chunks(): j = 2954
find_chunks(): j = 2955
find_chunks(): j = 2956
find_chunks(): j = 2957
find_chunks(): j = 2958
find_chunks(): j = 2959
find_chunks(): j = 2960
find_chunks(): j = 2961
find_chunks(): j = 2962
find_chunks(): j = 2963
find_chunks(): j = 2964
find_chunks(): j = 2965
find_chunks(): j = 2966
find_chunks(): j = 2967
find_chunks(): j = 2968
find_chunks(): j = 2969
find_chunks(): j = 2970
find_chunks(): j = 2971
find_chunks(): j = 2972
find_chunks(): j = 2973
find_chunks(): j = 2974
find_chunks(): j = 2975
find_chunks(): j = 2976
find_chunks(): j = 2977
find_chunks(): j = 2978
find_chunks(): j = 2979
find_chunks(): j = 2980
find_chunks(): j = 2981
find_chunks(): j = 2982
find_chunks(): j = 2983
find_chunks(): j = 2984
find_chunks(): j = 2985
find_chunks(): j = 2986
find_chunks(): j = 2987
find_chunks(): j = 2988
find_chunks(): j = 2989
find_chunks(): j = 2990
find_chunks(): j = 2991
find_chunks(): j = 2992
find_chunks(): j = 2993
find_chunks(): j = 2994
find_chunks(): j = 2995
find_chunks(): j = 2996
find_chunks(): j = 2997
find_chunks(): j = 2998
find_chunks(): j = 2999
find_chunks(): j = 3000
find_chunks(): j = 3001
find_chunks(): j = 3002
find_chunks(): j = 3003
find_chunks(): j = 3004
find_chunks(): j = 3005
find_chunks(): j = 3006
find_chunks(): j = 3007
find_chunks(): j = 3008
find_chunks(): j = 3009
find_chunks(): j = 3010
find_chunks(): j = 3011
find_chunks(): j = 3012
find_chunks(): j = 3013
find_chunks(): j = 3014
find_chunks(): j = 3015
find_chunks(): j = 3016
find_chunks(): j = 3017
find_chunks(): j = 3018
find_chunks(): j = 3019
find_chunks(): j = 3020
find_chunks(): j = 3021
find_chunks(): j = 3022
find_chunks(): j = 3023
find_chunks(): j = 3024
find_chunks(): j = 3025
find_chunks(): j = 3026
find_chunks(): j = 3027
find_chunks(): j = 3028
find_chunks(): j = 3029
find_chunks(): j = 3030
find_chunks(): j = 3031
find_chunks(): j = 3032
find_chunks(): j = 3033
find_chunks(): j = 3034
find_chunks(): j = 3035
find_chunks(): j = 3036
find_chunks(): j = 3037
find_chunks(): j = 3038
find_chunks(): j = 3039
find_chunks(): j = 3040
find_chunks(): j = 3041
find_chunks(): j = 3042
find_chunks(): j = 3043
find_chunks(): j = 3044
find_chunks(): j = 3045
find_chunks(): j = 3046
find_chunks(): j = 3047
find_chunks(): j = 3048
find_chunks(): j = 3049
find_chunks(): j = 3050
find_chunks(): j = 3051
find_chunks(): j = 3052
find_chunks(): j = 3053
find_chunks(): j = 3054
find_chunks(): j = 3055
find_chunks(): j = 3056
find_chunks(): j = 3057
find_chunks(): j = 3058
find_chunks(): j = 3059
find_chunks(): j = 3060
find_chunks(): j = 3061
find_chunks(): j = 3062
find_chunks(): j = 3063
find_chunks(): j = 3064
find_chunks(): j = 3065
find_chunks(): j = 3066
find_chunks(): j = 3067
find_chunks(): j = 3068
find_chunks(): j = 3069
find_chunks(): j = 3070
find_chunks(): j = 3071
find_chunks(): j = 3072
find_chunks(): j = 3073
find_chunks(): j = 3074
find_chunks(): j = 3075
find_chunks(): j = 3076
find_chunks(): j = 3077
find_chunks(): j = 3078
find_chunks(): j = 3079
find_chunks(): j = 3080
find_chunks(): j = 3081
find_chunks(): j = 3082
find_chunks(): j = 3083
find_chunks(): j = 3084
find_chunks(): j = 3085
find_chunks(): j = 3086
find_chunks(): j = 3087
find_chunks(): j = 3088
find_chunks(): j = 3089
find_chunks(): j = 3090
find_chunks(): j = 3091
find_chunks(): j = 3092
find_chunks(): j = 3093
find_chunks(): j = 3094
find_chunks(): j = 3095
find_chunks(): j = 3096
find_chunks(): j = 3097
find_chunks(): j = 3098
find_chunks(): j = 3099
find_chunks(): j = 3100
find_chunks(): j = 3101
find_chunks(): j = 3102
find_chunks(): j = 3103
find_chunks(): j = 3104
find_chunks(): j = 3105
find_chunks(): j = 3106
find_chunks(): j = 3107
find_chunks(): j = 3108
find_chunks(): j = 3109
find_chunks(): j = 3110
find_chunks(): j = 3111
find_chunks(): j = 3112
find_chunks(): j = 3113
find_chunks(): j = 3114
find_chunks(): j = 3115
find_chunks(): j = 3116
find_chunks(): j = 3117
find_chunks(): j = 3118
find_chunks(): j = 3119
find_chunks(): j = 3120
find_chunks(): j = 3121
find_chunks(): j = 3122
find_chunks(): j = 3123
find_chunks(): j = 3124
find_chunks(): j = 3125
find_chunks(): j = 3126
find_chunks(): j = 3127
find_chunks(): j = 3128
find_chunks(): j = 3129
find_chunks(): j = 3130
find_chunks(): j = 3131
find_chunks(): j = 3132
find_chunks(): j = 3133
find_chunks(): j = 3134
find_chunks(): j = 3135
find_chunks(): j = 3136
find_chunks(): j = 3137
find_chunks(): j = 3138
find_chunks(): j = 3139
find_chunks(): j = 3140
find_chunks(): j = 3141
find_chunks(): j = 3142
find_chunks(): j = 3143
find_chunks(): j = 3144
find_chunks(): j = 3145
find_chunks(): j = 3146
find_chunks(): j = 3147
find_chunks(): j = 3148
find_chunks(): j = 3149
find_chunks(): j = 3150
find_chunks(): j = 3151
find_chunks(): j = 3152
find_chunks(): j = 3153
find_chunks(): j = 3154
find_chunks(): j = 3155
find_chunks(): j = 3156
find_chunks(): j = 3157
find_chunks(): j = 3158
find_chunks(): j = 3159
find_chunks(): j = 3160
find_chunks(): j = 3161
find_chunks(): j = 3162
find_chunks(): j = 3163
find_chunks(): j = 3164
find_chunks(): j = 3165
find_chunks(): j = 3166
find_chunks(): j = 3167
find_chunks(): j = 3168
find_chunks(): j = 3169
find_chunks(): j = 3170
find_chunks(): j = 3171
find_chunks(): j = 3172
find_chunks(): j = 3173
find_chunks(): j = 3174
find_chunks(): j = 3175
find_chunks(): j = 3176
find_chunks(): j = 3177
find_chunks(): j = 3178
find_chunks(): j = 3179
find_chunks(): j = 3180
find_chunks(): j = 3181
find_chunks(): j = 3182
find_chunks(): j = 3183
find_chunks(): j = 3184
find_chunks(): j = 3185
find_chunks(): j = 3186
find_chunks(): j = 3187
find_chunks(): j = 3188
find_chunks(): j = 3189
find_chunks(): j = 3190
find_chunks(): j = 3191
find_chunks(): j = 3192
find_chunks(): j = 3193
find_chunks(): j = 3194
find_chunks(): j = 3195
find_chunks(): j = 3196
find_chunks(): j = 3197
find_chunks(): j = 3198
find_chunks(): j = 3199
find_chunks(): j = 3200
find_chunks(): j = 3201
find_chunks(): j = 3202
find_chunks(): j = 3203
find_chunks(): j = 3204
find_chunks(): j = 3205
find_chunks(): j = 3206
find_chunks(): j = 3207
find_chunks(): j = 3208
find_chunks(): j = 3209
find_chunks(): j = 3210
find_chunks(): j = 3211
find_chunks(): j = 3212
find_chunks(): j = 3213
find_chunks(): j = 3214
find_chunks(): j = 3215
find_chunks(): j = 3216
find_chunks(): j = 3217
find_chunks(): j = 3218
find_chunks(): j = 3219
find_chunks(): j = 3220
find_chunks(): j = 3221
find_chunks(): j = 3222
find_chunks(): j = 3223
find_chunks(): j = 3224
find_chunks(): j = 3225
find_chunks(): j = 3226
find_chunks(): j = 3227
find_chunks(): j = 3228
find_chunks(): j = 3229
find_chunks(): j = 3230
find_chunks(): j = 3231
find_chunks(): j = 3232
find_chunks(): j = 3233
find_chunks(): j = 3234
find_chunks(): j = 3235
find_chunks(): j = 3236
find_chunks(): j = 3237
find_chunks(): j = 3238
find_chunks(): j = 3239
find_chunks(): j = 3240
find_chunks(): j = 3241
find_chunks(): j = 3242
find_chunks(): j = 3243
find_chunks(): j = 3244
find_chunks(): j = 3245
find_chunks(): j = 3246
find_chunks(): j = 3247
find_chunks(): j = 3248
find_chunks(): j = 3249
find_chunks(): j = 3250
find_chunks(): j = 3251
find_chunks(): j = 3252
find_chunks(): j = 3253
find_chunks(): j = 3254
find_chunks(): j = 3255
find_chunks(): j = 3256
find_chunks(): j = 3257
find_chunks(): j = 3258
find_chunks(): j = 3259
find_chunks(): j = 3260
find_chunks(): j = 3261
find_chunks(): j = 3262
find_chunks(): j = 3263
find_chunks(): j = 3264
find_chunks(): j = 3265
find_chunks(): j = 3266
find_chunks(): j = 3267
find_chunks(): j = 3268
find_chunks(): j = 3269
find_chunks(): j = 3270
find_chunks(): j = 3271
find_chunks(): j = 3272
find_chunks(): j = 3273
find_chunks(): j = 3274
find_chunks(): j = 3275
find_chunks(): j = 3276
find_chunks(): j = 3277
find_chunks(): j = 3278
find_chunks(): j = 3279
find_chunks(): j = 3280
find_chunks(): j = 3281
find_chunks(): j = 3282
find_chunks(): j = 3283
find_chunks(): j = 3284
find_chunks(): j = 3285
find_chunks(): j = 3286
find_chunks(): j = 3287
find_chunks(): j = 3288
find_chunks(): j = 3289
find_chunks(): j = 3290
find_chunks(): j = 3291
find_chunks(): j = 3292
find_chunks(): j = 3293
find_chunks(): j = 3294
find_chunks(): j = 3295
find_chunks(): j = 3296
find_chunks(): j = 3297
find_chunks(): j = 3298
find_chunks(): j = 3299
find_chunks(): j = 3300
find_chunks(): j = 3301
find_chunks(): j = 3302
find_chunks(): j = 3303
find_chunks(): j = 3304
find_chunks(): j = 3305
find_chunks(): j = 3306
find_chunks(): j = 3307
find_chunks(): j = 3308
find_chunks(): j = 3309
find_chunks(): j = 3310
find_chunks(): j = 3311
find_chunks(): j = 3312
find_chunks(): j = 3313
find_chunks(): j = 3314
find_chunks(): j = 3315
find_chunks(): j = 3316
find_chunks(): j = 3317
find_chunks(): j = 3318
find_chunks(): j = 3319
find_chunks(): j = 3320
find_chunks(): j = 3321
find_chunks(): j = 3322
find_chunks(): j = 3323
find_chunks(): j = 3324
find_chunks(): j = 3325
find_chunks(): j = 3326
find_chunks(): j = 3327
find_chunks(): j = 3328
find_chunks(): j = 3329
find_chunks(): j = 3330
find_chunks(): j = 3331
find_chunks(): j = 3332
find_chunks(): j = 3333
find_chunks(): j = 3334
find_chunks(): j = 3335
find_chunks(): j = 3336
find_chunks(): j = 3337
find_chunks(): j = 3338
find_chunks(): j = 3339
find_chunks(): j = 3340
find_chunks(): j = 3341
find_chunks(): j = 3342
find_chunks(): j = 3343
find_chunks(): j = 3344
find_chunks(): j = 3345
find_chunks(): j = 3346
find_chunks(): j = 3347
find_chunks(): j = 3348
find_chunks(): j = 3349
find_chunks(): j = 3350
find_chunks(): j = 3351
find_chunks(): j = 3352
find_chunks(): j = 3353
find_chunks(): j = 3354
find_chunks(): j = 3355
find_chunks(): j = 3356
find_chunks(): j = 3357
find_chunks(): j = 3358
find_chunks(): j = 3359
find_chunks(): j = 3360
find_chunks(): j = 3361
find_chunks(): j = 3362
find_chunks(): j = 3363
find_chunks(): j = 3364
find_chunks(): j = 3365
find_chunks(): j = 3366
find_chunks(): j = 3367
find_chunks(): j = 3368
find_chunks(): j = 3369
find_chunks(): j = 3370
find_chunks(): j = 3371
find_chunks(): j = 3372
find_chunks(): j = 3373
find_chunks(): j = 3374
find_chunks(): j = 3375
find_chunks(): j = 3376
find_chunks(): j = 3377
find_chunks(): j = 3378
find_chunks(): j = 3379
find_chunks(): j = 3380
find_chunks(): j = 3381
find_chunks(): j = 3382
find_chunks(): j = 3383
find_chunks(): j = 3384
find_chunks(): j = 3385
find_chunks(): j = 3386
find_chunks(): j = 3387
find_chunks(): j = 3388
find_chunks(): j = 3389
find_chunks(): j = 3390
find_chunks(): j = 3391
find_chunks(): j = 3392
find_chunks(): j = 3393
find_chunks(): j = 3394
find_chunks(): j = 3395
find_chunks(): j = 3396
find_chunks(): j = 3397
find_chunks(): j = 3398
find_chunks(): j = 3399
find_chunks(): j = 3400
find_chunks(): j = 3401
find_chunks(): j = 3402
find_chunks(): j = 3403
find_chunks(): j = 3404
find_chunks(): j = 3405
find_chunks(): j = 3406
find_chunks(): j = 3407
find_chunks(): j = 3408
find_chunks(): j = 3409
find_chunks(): j = 3410
find_chunks(): j = 3411
find_chunks(): j = 3412
find_chunks(): j = 3413
find_chunks(): j = 3414
find_chunks(): j = 3415
find_chunks(): j = 3416
find_chunks(): j = 3417
find_chunks(): j = 3418
find_chunks(): j = 3419
find_chunks(): j = 3420
find_chunks(): j = 3421
find_chunks(): j = 3422
find_chunks(): j = 3423
find_chunks(): j = 3424
find_chunks(): j = 3425
find_chunks(): j = 3426
find_chunks(): j = 3427
find_chunks(): j = 3428
find_chunks(): j = 3429
find_chunks(): j = 3430
find_chunks(): j = 3431
find_chunks(): j = 3432
find_chunks(): j = 3433
find_chunks(): j = 3434
find_chunks(): j = 3435
find_chunks(): j = 3436
find_chunks(): j = 3437
find_chunks(): j = 3438
find_chunks(): j = 3439
find_chunks(): j = 3440
find_chunks(): j = 3441
find_chunks(): j = 3442
find_chunks(): j = 3443
find_chunks(): j = 3444
find_chunks(): j = 3445
find_chunks(): j = 3446
find_chunks(): j = 3447
find_chunks(): j = 3448
find_chunks(): j = 3449
find_chunks(): j = 3450
find_chunks(): j = 3451
find_chunks(): j = 3452
find_chunks(): j = 3453
find_chunks(): j = 3454
find_chunks(): j = 3455
find_chunks(): j = 3456
find_chunks(): j = 3457
find_chunks(): j = 3458
find_chunks(): j = 3459
find_chunks(): j = 3460
find_chunks(): j = 3461
find_chunks(): j = 3462
find_chunks(): j = 3463
find_chunks(): j = 3464
find_chunks(): j = 3465
find_chunks(): j = 3466
find_chunks(): j = 3467
find_chunks(): j = 3468
find_chunks(): j = 3469
find_chunks(): j = 3470
find_chunks(): j = 3471
find_chunks(): j = 3472
find_chunks(): j = 3473
find_chunks(): j = 3474
find_chunks(): j = 3475
find_chunks(): j = 3476
find_chunks(): j = 3477
find_chunks(): j = 3478
find_chunks(): j = 3479
find_chunks(): j = 3480
find_chunks(): j = 3481
find_chunks(): j = 3482
find_chunks(): j = 3483
find_chunks(): j = 3484
find_chunks(): j = 3485
find_chunks(): j = 3486
find_chunks(): j = 3487
find_chunks(): j = 3488
find_chunks(): j = 3489
find_chunks(): j = 3490
find_chunks(): j = 3491
find_chunks(): j = 3492
find_chunks(): j = 3493
find_chunks(): j = 3494
find_chunks(): j = 3495
find_chunks(): j = 3496
find_chunks(): j = 3497
find_chunks(): j = 3498
find_chunks(): j = 3499
find_chunks(): j = 3500
find_chunks(): j = 3501
find_chunks(): j = 3502
find_chunks(): j = 3503
find_chunks(): j = 3504
find_chunks(): j = 3505
find_chunks(): j = 3506
find_chunks(): j = 3507
find_chunks(): j = 3508
find_chunks(): j = 3509
find_chunks(): j = 3510
find_chunks(): j = 3511
find_chunks(): j = 3512
find_chunks(): j = 3513
find_chunks(): j = 3514
find_chunks(): j = 3515
find_chunks(): j = 3516
find_chunks(): j = 3517
find_chunks(): j = 3518
find_chunks(): j = 3519
find_chunks(): j = 3520
find_chunks(): j = 3521
find_chunks(): j = 3522
find_chunks(): j = 3523
find_chunks(): j = 3524
find_chunks(): j = 3525
find_chunks(): j = 3526
find_chunks(): j = 3527
find_chunks(): j = 3528
find_chunks(): j = 3529
find_chunks(): j = 3530
find_chunks(): j = 3531
find_chunks(): j = 3532
find_chunks(): j = 3533
find_chunks(): j = 3534
find_chunks(): j = 3535
find_chunks(): j = 3536
find_chunks(): j = 3537
find_chunks(): j = 3538
find_chunks(): j = 3539
find_chunks(): j = 3540
find_chunks(): j = 3541
find_chunks(): j = 3542
find_chunks(): j = 3543
find_chunks(): j = 3544
find_chunks(): j = 3545
find_chunks(): j = 3546
find_chunks(): j = 3547
find_chunks(): j = 3548
find_chunks(): j = 3549
find_chunks(): j = 3550
find_chunks(): j = 3551
find_chunks(): j = 3552
find_chunks(): j = 3553
find_chunks(): j = 3554
find_chunks(): j = 3555
find_chunks(): j = 3556
find_chunks(): j = 3557
find_chunks(): j = 3558
find_chunks(): j = 3559
find_chunks(): j = 3560
find_chunks(): j = 3561
find_chunks(): j = 3562
find_chunks(): j = 3563
find_chunks(): j = 3564
find_chunks(): j = 3565
find_chunks(): j = 3566
find_chunks(): j = 3567
find_chunks(): j = 3568
find_chunks(): j = 3569
find_chunks(): j = 3570
find_chunks(): j = 3571
find_chunks(): j = 3572
find_chunks(): j = 3573
find_chunks(): j = 3574
find_chunks(): j = 3575
find_chunks(): j = 3576
find_chunks(): j = 3577
find_chunks(): j = 3578
find_chunks(): j = 3579
find_chunks(): j = 3580
find_chunks(): j = 3581
find_chunks(): j = 3582
find_chunks(): j = 3583
find_chunks(): j = 3584
find_chunks(): j = 3585
find_chunks(): j = 3586
find_chunks(): j = 3587
find_chunks(): j = 3588
find_chunks(): j = 3589
find_chunks(): j = 3590
find_chunks(): j = 3591
find_chunks(): j = 3592
find_chunks(): j = 3593
find_chunks(): j = 3594
find_chunks(): j = 3595
find_chunks(): j = 3596
find_chunks(): j = 3597
find_chunks(): j = 3598
find_chunks(): j = 3599
find_chunks(): j = 3600
find_chunks(): j = 3601
find_chunks(): j = 3602
find_chunks(): j = 3603
find_chunks(): j = 3604
find_chunks(): j = 3605
find_chunks(): j = 3606
find_chunks(): j = 3607
find_chunks(): j = 3608
find_chunks(): j = 3609
find_chunks(): j = 3610
find_chunks(): j = 3611
find_chunks(): j = 3612
find_chunks(): j = 3613
find_chunks(): j = 3614
find_chunks(): j = 3615
find_chunks(): j = 3616
find_chunks(): j = 3617
find_chunks(): j = 3618
find_chunks(): j = 3619
find_chunks(): j = 3620
find_chunks(): j = 3621
find_chunks(): j = 3622
find_chunks(): j = 3623
find_chunks(): j = 3624
find_chunks(): j = 3625
find_chunks(): j = 3626
find_chunks(): j = 3627
find_chunks(): j = 3628
find_chunks(): j = 3629
find_chunks(): j = 3630
find_chunks(): j = 3631
find_chunks(): j = 3632
find_chunks(): j = 3633
find_chunks(): j = 3634
find_chunks(): j = 3635
find_chunks(): j = 3636
find_chunks(): j = 3637
find_chunks(): j = 3638
find_chunks(): j = 3639
find_chunks(): j = 3640
find_chunks(): j = 3641
find_chunks(): j = 3642
find_chunks(): j = 3643
find_chunks(): j = 3644
find_chunks(): j = 3645
find_chunks(): j = 3646
find_chunks(): j = 3647
find_chunks(): j = 3648
find_chunks(): j = 3649
find_chunks(): j = 3650
find_chunks(): j = 3651
find_chunks(): j = 3652
find_chunks(): j = 3653
find_chunks(): j = 3654
find_chunks(): j = 3655
find_chunks(): j = 3656
find_chunks(): j = 3657
find_chunks(): j = 3658
find_chunks(): j = 3659
find_chunks(): j = 3660
find_chunks(): j = 3661
find_chunks(): j = 3662
find_chunks(): j = 3663
find_chunks(): j = 3664
find_chunks(): j = 3665
find_chunks(): j = 3666
find_chunks(): j = 3667
find_chunks(): j = 3668
find_chunks(): j = 3669
find_chunks(): j = 3670
find_chunks(): j = 3671
find_chunks(): j = 3672
find_chunks(): j = 3673
find_chunks(): j = 3674
find_chunks(): j = 3675
find_chunks(): j = 3676
find_chunks(): j = 3677
find_chunks(): j = 3678
find_chunks(): j = 3679
find_chunks(): j = 3680
find_chunks(): j = 3681
find_chunks(): j = 3682
find_chunks(): j = 3683
find_chunks(): j = 3684
find_chunks(): j = 3685
find_chunks(): j = 3686
find_chunks(): j = 3687
find_chunks(): j = 3688
find_chunks(): j = 3689
find_chunks(): j = 3690
find_chunks(): j = 3691
find_chunks(): j = 3692
find_chunks(): j = 3693
find_chunks(): j = 3694
find_chunks(): j = 3695
find_chunks(): j = 3696
find_chunks(): j = 3697
find_chunks(): j = 3698
find_chunks(): j = 3699
find_chunks(): j = 3700
find_chunks(): j = 3701
find_chunks(): j = 3702
find_chunks(): j = 3703
find_chunks(): j = 3704
find_chunks(): j = 3705
find_chunks(): j = 3706
find_chunks(): j = 3707
find_chunks(): j = 3708
find_chunks(): j = 3709
find_chunks(): j = 3710
find_chunks(): j = 3711
find_chunks(): j = 3712
find_chunks(): j = 3713
find_chunks(): j = 3714
find_chunks(): j = 3715
find_chunks(): j = 3716
find_chunks(): j = 3717
find_chunks(): j = 3718
find_chunks(): j = 3719
find_chunks(): j = 3720
find_chunks(): j = 3721
find_chunks(): j = 3722
find_chunks(): j = 3723
find_chunks(): j = 3724
find_chunks(): j = 3725
find_chunks(): j = 3726
find_chunks(): j = 3727
find_chunks(): j = 3728
find_chunks(): j = 3729
find_chunks(): j = 3730
find_chunks(): j = 3731
find_chunks(): j = 3732
find_chunks(): j = 3733
find_chunks(): j = 3734
find_chunks(): j = 3735
find_chunks(): j = 3736
find_chunks(): j = 3737
find_chunks(): j = 3738
find_chunks(): j = 3739
find_chunks(): j = 3740
find_chunks(): j = 3741
find_chunks(): j = 3742
find_chunks(): j = 3743
find_chunks(): j = 3744
find_chunks(): j = 3745
find_chunks(): j = 3746
find_chunks(): j = 3747
find_chunks(): j = 3748
find_chunks(): j = 3749
find_chunks(): j = 3750
find_chunks(): j = 3751
find_chunks(): j = 3752
find_chunks(): j = 3753
find_chunks(): j = 3754
find_chunks(): j = 3755
find_chunks(): j = 3756
find_chunks(): j = 3757
find_chunks(): j = 3758
find_chunks(): j = 3759
find_chunks(): j = 3760
find_chunks(): j = 3761
find_chunks(): j = 3762
find_chunks(): j = 3763
find_chunks(): j = 3764
find_chunks(): j = 3765
find_chunks(): j = 3766
find_chunks(): j = 3767
find_chunks(): j = 3768
find_chunks(): j = 3769
find_chunks(): j = 3770
find_chunks(): j = 3771
find_chunks(): j = 3772
find_chunks(): j = 3773
find_chunks(): j = 3774
find_chunks(): j = 3775
find_chunks(): j = 3776
find_chunks(): j = 3777
find_chunks(): j = 3778
find_chunks(): j = 3779
find_chunks(): j = 3780
find_chunks(): j = 3781
find_chunks(): j = 3782
find_chunks(): j = 3783
find_chunks(): j = 3784
find_chunks(): j = 3785
find_chunks(): j = 3786
find_chunks(): j = 3787
find_chunks(): j = 3788
find_chunks(): j = 3789
find_chunks(): j = 3790
find_chunks(): j = 3791
find_chunks(): j = 3792
find_chunks(): j = 3793
find_chunks(): j = 3794
find_chunks(): j = 3795
find_chunks(): j = 3796
find_chunks(): j = 3797
find_chunks(): j = 3798
find_chunks(): j = 3799
find_chunks(): j = 3800
find_chunks(): j = 3801
find_chunks(): j = 3802
find_chunks(): j = 3803
find_chunks(): j = 3804
find_chunks(): j = 3805
find_chunks(): j = 3806
find_chunks(): j = 3807
find_chunks(): j = 3808
find_chunks(): j = 3809
find_chunks(): j = 3810
find_chunks(): j = 3811
find_chunks(): j = 3812
find_chunks(): j = 3813
find_chunks(): j = 3814
find_chunks(): j = 3815
find_chunks(): j = 3816
find_chunks(): j = 3817