blob: a6ad7d6403647942a767cb3a346e1db31660ebe8 (
plain)
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
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
|
%!PS-Adobe-2.0
%%DocumentFonts: Times-Roman
%%Creator: Axiom
%%CreationDate: today
%%Pages: 1
%%processing (hard) limit: 250 pts or 500 values for the operand stack.
%%EndComments
%------------------------------- prologue -------------------------------%
%-------------------------- support procedures --------------------------%
%--------- first create user dictionary with 100 entries max ------------%
% (number can be changed to accomodate definitions) %
100 dict begin %% using 100 entries in top level dictionary
/FontHeight 12 def
/inch
{ 72 mul }
def
% yVal and hVal are necessary because the Xwindow display origin
% is at the upper left corner, while the postscript display
% origin is at the lower left hand corner.
/yVal %% get Y value -- make upper left corner origin
{ maxY sub abs } %% maxY is viewWindow height
def
/hVal %% get H value -- used for displaying title text
{ maxH sub abs } %% maxH is viewWindow height+titleWindow height
def
% loads in the font
/loadFont
{ /Times-Roman findfont FontHeight scalefont setfont }
def
% draws a rectangle with input operand:
% height
% width
% notice that this function does not "draw" or ink the rectangle.
/drawRect
{ 1 index 1 add 0 rlineto %% draw first side
0 exch 1 add neg rlineto %% draw second side
1 add neg 0 rlineto %% draw third side
closepath } %% draw fourth side
def
% create a rectangle with input operand in the view window:
% y
% x
% height
% width
% notice that this function does not "draw" or ink the rectangle.
/rectangle
{ yVal moveto %% set currentpoint for line
drawRect } %% draws the rectangle
def
% These are global variables that every draw procedure uses
% THe operand should be as follows:
% viewWindow width
% viewWindow height
% title height
/setDim
{ /maxX exch def %% width of display
/maxY exch def %% height of display
/titleH exch def %% height of title
/maxH maxY titleH add def %% height of display + title
} def
%-------------------------- major procedures --------------------------%
/title %% draws a rectangle around the title of picture
{ gsave
newpath
moveto %% lower left of title
titleH 1 add 0 exch rlineto %% draw first side
1 add 0 rlineto %% draw second side
1 add neg 0 exch rlineto
begin installGC stroke end %% draw third side
grestore }
def
/drawFrame %% draw display frame
{ gsave
newpath
maxX maxY 0 0 rectangle
begin installGC stroke end
grestore }
def
% updates the foreground color of existing graphics-context dictionary:
% foreground color
% dictionary name
/setForeground
{ /FGcolor exch put }
def
% updates the background color of existing graphics-context dictionary:
% background color
% dictionary name
/setBackground
{ /BGcolor exch put }
def
% updates the line width, line style, cap style, join style of
% existing graphics-context dictionary:
% dictionary name
% join style
% cap style
% line width
/setLineAttributes
{ begin
/JoinStyle exch def
/CapStyle exch def
/LineWidth exch def
end }
def
% creates a graphics context dictionary with the following information:
% /dictionary name
% foreground color
% background color
% line width
% cap style
% join style
% this creates different graphical contexts for different drawing functions.
/makeDict
{ 5 dict 2 copy def begin pop %% with dict name on top of stack
/FGcolor exch def %% define drawing attributes
/BGcolor exch def %% not heavily used
/LineWidth exch def
/CapStyle exch def
/JoinStyle exch def
end }
def
% makes the current dictionary attributes effective
% this function takes the values in the current dictionary to set the context
% these are the values currently being used: foreground, cap, join, and width
/installGC
{
FGcolor currentgray ne
{FGcolor setgray} if %% foreground color
CapStyle currentlinecap ne
{CapStyle setlinecap} if %% cap style
JoinStyle currentlinejoin ne
{JoinStyle setlinejoin} if %% join style
LineWidth currentlinewidth ne
{LineWidth setlinewidth} if } %% line width
def
% operand stack configuration in order to use psDrawLine:
% psDrawLine
% y0
% x0
% y1
% x1
% graphics-context dictionary
% this draws a line from (x0, y0) to (x1, y1).
/psDrawLine
{ gsave
newpath
yVal moveto
yVal lineto
begin installGC stroke end
grestore }
def
% operand stack configuration in order to use psDrawStr:
% psDrawStr
% y
% x
% string
% graphics-context dictionary
% this function draws a text string at (x,y).
/psDrawStr
{ gsave
newpath
loadFont
yVal moveto
exch begin installGC show end
grestore }
def
%-------------------------- script --------------------------%
% 1 inch 1 inch translate
mark %% mark bottom of our stack
0 0 1
1072693248 0 /globalGC1 makeDict
0 0 1
1072693248 0 /globalGC2 makeDict
0 0 1
1072693248 0 /trashGC makeDict
0 0 1
1072693248 0 /componentGC makeDict
0 0 1
1072693248 0 /opaqueGC makeDict
0 0 1
1072693248 0 /renderGC makeDict
0 0 1
1072693248 0 /globGC makeDict
0 0 1
1072693248 0 /anotherGC makeDict
1 0 1
1072693248 0 /renderGC makeDict
gsave % save graphics state for clipping path
1.000000 1.000000 scale
24 276 300 setDim
maxX maxY 0 0 rectangle clip % set clip path
globalGC1 0.000000 setForeground
globGC 0.000000 setForeground
globalGC1 57 203 225 84 psDrawLine
globGC (X) 52 208 psDrawStr
globalGC1 193.000000 setForeground
globGC 193.000000 setForeground
globalGC1 0.000000 setForeground
globGC 0.000000 setForeground
globalGC1 245 203 76 84 psDrawLine
globGC (Y) 250 208 psDrawStr
globalGC1 193.000000 setForeground
globGC 193.000000 setForeground
globalGC1 0.000000 setForeground
globGC 0.000000 setForeground
globalGC1 151 37 150 208 psDrawLine
globGC (Z) 156 32 psDrawStr
globalGC1 193.000000 setForeground
globGC 193.000000 setForeground
1 0 0 componentGC setLineAttributes
componentGC 0.000000 setForeground
componentGC 0.000000 setForeground
componentGC 149 54 150 59 psDrawLine
componentGC 0.000000 setForeground
componentGC 149 55 149 54 psDrawLine
componentGC 0.000000 setForeground
componentGC 150 55 149 54 psDrawLine
componentGC 0.000000 setForeground
componentGC 154 57 155 62 psDrawLine
componentGC 0.000000 setForeground
componentGC 153 58 154 57 psDrawLine
componentGC 0.000000 setForeground
componentGC 155 58 154 57 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 60 159 65 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 61 158 60 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 61 158 60 psDrawLine
componentGC 0.000000 setForeground
componentGC 163 62 164 67 psDrawLine
componentGC 0.000000 setForeground
componentGC 163 64 163 62 psDrawLine
componentGC 0.000000 setForeground
componentGC 164 64 163 62 psDrawLine
componentGC 0.000000 setForeground
componentGC 168 65 168 70 psDrawLine
componentGC 0.000000 setForeground
componentGC 167 67 168 65 psDrawLine
componentGC 0.000000 setForeground
componentGC 168 66 168 65 psDrawLine
componentGC 0.000000 setForeground
componentGC 172 68 173 73 psDrawLine
componentGC 0.000000 setForeground
componentGC 172 69 172 68 psDrawLine
componentGC 0.000000 setForeground
componentGC 173 69 172 68 psDrawLine
componentGC 0.000000 setForeground
componentGC 177 71 178 76 psDrawLine
componentGC 0.000000 setForeground
componentGC 177 72 177 71 psDrawLine
componentGC 0.000000 setForeground
componentGC 178 72 177 71 psDrawLine
componentGC 0.000000 setForeground
componentGC 182 74 182 79 psDrawLine
componentGC 0.000000 setForeground
componentGC 181 75 182 74 psDrawLine
componentGC 0.000000 setForeground
componentGC 182 75 182 74 psDrawLine
componentGC 0.000000 setForeground
componentGC 186 78 187 81 psDrawLine
componentGC 0.000000 setForeground
componentGC 186 79 186 78 psDrawLine
componentGC 0.000000 setForeground
componentGC 187 79 186 78 psDrawLine
componentGC 0.000000 setForeground
componentGC 191 81 192 84 psDrawLine
componentGC 0.000000 setForeground
componentGC 191 82 191 81 psDrawLine
componentGC 0.000000 setForeground
componentGC 192 82 191 81 psDrawLine
componentGC 0.000000 setForeground
componentGC 196 85 197 87 psDrawLine
componentGC 0.000000 setForeground
componentGC 196 85 196 85 psDrawLine
componentGC 0.000000 setForeground
componentGC 197 85 196 85 psDrawLine
componentGC 0.000000 setForeground
componentGC 202 88 202 90 psDrawLine
componentGC 0.000000 setForeground
componentGC 202 89 202 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 202 89 202 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 208 92 207 93 psDrawLine
componentGC 0.000000 setForeground
componentGC 207 93 208 92 psDrawLine
componentGC 0.000000 setForeground
componentGC 208 93 208 92 psDrawLine
componentGC 0.000000 setForeground
componentGC 214 96 212 96 psDrawLine
componentGC 0.000000 setForeground
componentGC 214 96 214 96 psDrawLine
componentGC 0.000000 setForeground
componentGC 214 96 214 96 psDrawLine
componentGC 0.000000 setForeground
componentGC 221 100 218 99 psDrawLine
componentGC 0.000000 setForeground
componentGC 220 100 221 100 psDrawLine
componentGC 0.000000 setForeground
componentGC 220 100 221 100 psDrawLine
componentGC 0.000000 setForeground
componentGC 227 103 223 103 psDrawLine
componentGC 0.000000 setForeground
componentGC 226 103 227 103 psDrawLine
componentGC 0.000000 setForeground
componentGC 226 103 227 103 psDrawLine
componentGC 0.000000 setForeground
componentGC 234 106 228 106 psDrawLine
componentGC 0.000000 setForeground
componentGC 232 106 234 106 psDrawLine
componentGC 0.000000 setForeground
componentGC 232 106 234 106 psDrawLine
componentGC 0.000000 setForeground
componentGC 240 110 234 109 psDrawLine
componentGC 0.000000 setForeground
componentGC 239 109 240 110 psDrawLine
componentGC 0.000000 setForeground
componentGC 239 110 240 110 psDrawLine
componentGC 0.000000 setForeground
componentGC 246 113 239 112 psDrawLine
componentGC 0.000000 setForeground
componentGC 245 112 246 113 psDrawLine
componentGC 0.000000 setForeground
componentGC 245 113 246 113 psDrawLine
componentGC 0.000000 setForeground
componentGC 253 116 245 116 psDrawLine
componentGC 0.000000 setForeground
componentGC 251 116 253 116 psDrawLine
componentGC 0.000000 setForeground
componentGC 251 116 253 116 psDrawLine
componentGC 0.000000 setForeground
componentGC 259 120 251 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 257 119 259 120 psDrawLine
componentGC 0.000000 setForeground
componentGC 257 120 259 120 psDrawLine
componentGC 0.000000 setForeground
componentGC 265 123 256 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 263 122 265 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 263 123 265 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 272 127 262 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 269 126 272 127 psDrawLine
componentGC 0.000000 setForeground
componentGC 269 127 272 127 psDrawLine
componentGC 0.000000 setForeground
componentGC 278 130 268 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 275 129 278 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 276 131 278 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 284 134 274 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 282 133 284 134 psDrawLine
componentGC 0.000000 setForeground
componentGC 282 134 284 134 psDrawLine
componentGC 0.000000 setForeground
componentGC 291 138 280 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 288 137 291 138 psDrawLine
componentGC 0.000000 setForeground
componentGC 288 138 291 138 psDrawLine
componentGC 0.000000 setForeground
componentGC 145 57 146 62 psDrawLine
componentGC 0.000000 setForeground
componentGC 144 58 145 57 psDrawLine
componentGC 0.000000 setForeground
componentGC 146 58 145 57 psDrawLine
componentGC 0.000000 setForeground
componentGC 149 60 150 65 psDrawLine
componentGC 0.000000 setForeground
componentGC 149 61 149 60 psDrawLine
componentGC 0.000000 setForeground
componentGC 150 61 149 60 psDrawLine
componentGC 0.000000 setForeground
componentGC 154 62 155 67 psDrawLine
componentGC 0.000000 setForeground
componentGC 153 64 154 62 psDrawLine
componentGC 0.000000 setForeground
componentGC 155 63 154 62 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 65 159 70 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 66 158 65 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 66 158 65 psDrawLine
componentGC 0.000000 setForeground
componentGC 163 68 164 73 psDrawLine
componentGC 0.000000 setForeground
componentGC 163 69 163 68 psDrawLine
componentGC 0.000000 setForeground
componentGC 164 69 163 68 psDrawLine
componentGC 0.000000 setForeground
componentGC 167 71 169 76 psDrawLine
componentGC 0.000000 setForeground
componentGC 167 72 167 71 psDrawLine
componentGC 0.000000 setForeground
componentGC 168 72 167 71 psDrawLine
componentGC 0.000000 setForeground
componentGC 172 74 173 79 psDrawLine
componentGC 0.000000 setForeground
componentGC 172 75 172 74 psDrawLine
componentGC 0.000000 setForeground
componentGC 173 75 172 74 psDrawLine
componentGC 0.000000 setForeground
componentGC 177 77 178 81 psDrawLine
componentGC 0.000000 setForeground
componentGC 177 78 177 77 psDrawLine
componentGC 0.000000 setForeground
componentGC 178 78 177 77 psDrawLine
componentGC 0.000000 setForeground
componentGC 181 80 183 84 psDrawLine
componentGC 0.000000 setForeground
componentGC 181 81 181 80 psDrawLine
componentGC 0.000000 setForeground
componentGC 182 81 181 80 psDrawLine
componentGC 0.000000 setForeground
componentGC 186 84 188 87 psDrawLine
componentGC 0.000000 setForeground
componentGC 186 85 186 84 psDrawLine
componentGC 0.000000 setForeground
componentGC 187 85 186 84 psDrawLine
componentGC 0.000000 setForeground
componentGC 191 88 193 90 psDrawLine
componentGC 0.000000 setForeground
componentGC 191 88 191 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 191 88 191 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 196 92 198 93 psDrawLine
componentGC 0.000000 setForeground
componentGC 196 92 196 92 psDrawLine
componentGC 0.000000 setForeground
componentGC 196 92 196 92 psDrawLine
componentGC 0.000000 setForeground
componentGC 202 96 203 96 psDrawLine
componentGC 0.000000 setForeground
componentGC 202 96 202 96 psDrawLine
componentGC 0.000000 setForeground
componentGC 202 96 202 96 psDrawLine
componentGC 0.000000 setForeground
componentGC 209 100 208 99 psDrawLine
componentGC 0.000000 setForeground
componentGC 209 100 209 100 psDrawLine
componentGC 0.000000 setForeground
componentGC 208 100 209 100 psDrawLine
componentGC 0.000000 setForeground
componentGC 216 104 213 103 psDrawLine
componentGC 0.000000 setForeground
componentGC 215 104 216 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 215 104 216 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 223 107 219 106 psDrawLine
componentGC 0.000000 setForeground
componentGC 222 107 223 107 psDrawLine
componentGC 0.000000 setForeground
componentGC 222 107 223 107 psDrawLine
componentGC 0.000000 setForeground
componentGC 230 110 224 109 psDrawLine
componentGC 0.000000 setForeground
componentGC 228 110 230 110 psDrawLine
componentGC 0.000000 setForeground
componentGC 228 110 230 110 psDrawLine
componentGC 0.000000 setForeground
componentGC 236 113 229 112 psDrawLine
componentGC 0.000000 setForeground
componentGC 235 113 236 113 psDrawLine
componentGC 0.000000 setForeground
componentGC 234 113 236 113 psDrawLine
componentGC 0.000000 setForeground
componentGC 242 117 235 116 psDrawLine
componentGC 0.000000 setForeground
componentGC 241 116 242 117 psDrawLine
componentGC 0.000000 setForeground
componentGC 241 117 242 117 psDrawLine
componentGC 0.000000 setForeground
componentGC 249 120 241 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 247 119 249 120 psDrawLine
componentGC 0.000000 setForeground
componentGC 247 120 249 120 psDrawLine
componentGC 0.000000 setForeground
componentGC 255 123 246 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 253 123 255 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 253 124 255 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 261 127 252 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 259 126 261 127 psDrawLine
componentGC 0.000000 setForeground
componentGC 259 127 261 127 psDrawLine
componentGC 0.000000 setForeground
componentGC 267 130 258 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 265 130 267 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 265 131 267 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 274 134 264 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 271 133 274 134 psDrawLine
componentGC 0.000000 setForeground
componentGC 271 134 274 134 psDrawLine
componentGC 0.000000 setForeground
componentGC 280 138 270 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 278 137 280 138 psDrawLine
componentGC 0.000000 setForeground
componentGC 278 138 280 138 psDrawLine
componentGC 0.000000 setForeground
componentGC 287 142 276 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 284 141 287 142 psDrawLine
componentGC 0.000000 setForeground
componentGC 284 142 287 142 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 59 142 65 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 61 140 59 psDrawLine
componentGC 0.000000 setForeground
componentGC 141 61 140 59 psDrawLine
componentGC 0.000000 setForeground
componentGC 145 62 146 67 psDrawLine
componentGC 0.000000 setForeground
componentGC 144 64 145 62 psDrawLine
componentGC 0.000000 setForeground
componentGC 146 63 145 62 psDrawLine
componentGC 0.000000 setForeground
componentGC 149 65 150 70 psDrawLine
componentGC 0.000000 setForeground
componentGC 149 66 149 65 psDrawLine
componentGC 0.000000 setForeground
componentGC 150 66 149 65 psDrawLine
componentGC 0.000000 setForeground
componentGC 154 68 155 73 psDrawLine
componentGC 0.000000 setForeground
componentGC 153 69 154 68 psDrawLine
componentGC 0.000000 setForeground
componentGC 155 69 154 68 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 71 160 76 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 72 158 71 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 72 158 71 psDrawLine
componentGC 0.000000 setForeground
componentGC 163 74 164 79 psDrawLine
componentGC 0.000000 setForeground
componentGC 162 75 163 74 psDrawLine
componentGC 0.000000 setForeground
componentGC 164 75 163 74 psDrawLine
componentGC 0.000000 setForeground
componentGC 167 77 169 81 psDrawLine
componentGC 0.000000 setForeground
componentGC 167 78 167 77 psDrawLine
componentGC 0.000000 setForeground
componentGC 168 78 167 77 psDrawLine
componentGC 0.000000 setForeground
componentGC 172 80 174 84 psDrawLine
componentGC 0.000000 setForeground
componentGC 172 81 172 80 psDrawLine
componentGC 0.000000 setForeground
componentGC 173 81 172 80 psDrawLine
componentGC 0.000000 setForeground
componentGC 176 83 178 87 psDrawLine
componentGC 0.000000 setForeground
componentGC 176 84 176 83 psDrawLine
componentGC 0.000000 setForeground
componentGC 177 84 176 83 psDrawLine
componentGC 0.000000 setForeground
componentGC 180 87 183 90 psDrawLine
componentGC 0.000000 setForeground
componentGC 181 88 180 87 psDrawLine
componentGC 0.000000 setForeground
componentGC 182 87 180 87 psDrawLine
componentGC 0.000000 setForeground
componentGC 185 90 188 93 psDrawLine
componentGC 0.000000 setForeground
componentGC 185 91 185 90 psDrawLine
componentGC 0.000000 setForeground
componentGC 186 91 185 90 psDrawLine
componentGC 0.000000 setForeground
componentGC 189 95 193 96 psDrawLine
componentGC 0.000000 setForeground
componentGC 190 95 189 95 psDrawLine
componentGC 0.000000 setForeground
componentGC 190 95 189 95 psDrawLine
componentGC 0.000000 setForeground
componentGC 195 100 198 99 psDrawLine
componentGC 0.000000 setForeground
componentGC 196 100 195 100 psDrawLine
componentGC 0.000000 setForeground
componentGC 195 100 195 100 psDrawLine
componentGC 0.000000 setForeground
componentGC 203 105 204 103 psDrawLine
componentGC 0.000000 setForeground
componentGC 203 105 203 105 psDrawLine
componentGC 0.000000 setForeground
componentGC 203 105 203 105 psDrawLine
componentGC 0.000000 setForeground
componentGC 212 109 209 106 psDrawLine
componentGC 0.000000 setForeground
componentGC 211 108 212 109 psDrawLine
componentGC 0.000000 setForeground
componentGC 211 108 212 109 psDrawLine
componentGC 0.000000 setForeground
componentGC 219 112 214 109 psDrawLine
componentGC 0.000000 setForeground
componentGC 218 111 219 112 psDrawLine
componentGC 0.000000 setForeground
componentGC 218 111 219 112 psDrawLine
componentGC 0.000000 setForeground
componentGC 226 114 220 112 psDrawLine
componentGC 0.000000 setForeground
componentGC 225 113 226 114 psDrawLine
componentGC 0.000000 setForeground
componentGC 224 114 226 114 psDrawLine
componentGC 0.000000 setForeground
componentGC 232 117 225 116 psDrawLine
componentGC 0.000000 setForeground
componentGC 231 116 232 117 psDrawLine
componentGC 0.000000 setForeground
componentGC 230 117 232 117 psDrawLine
componentGC 0.000000 setForeground
componentGC 238 120 231 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 236 120 238 120 psDrawLine
componentGC 0.000000 setForeground
componentGC 236 120 238 120 psDrawLine
componentGC 0.000000 setForeground
componentGC 244 124 236 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 242 123 244 124 psDrawLine
componentGC 0.000000 setForeground
componentGC 242 124 244 124 psDrawLine
componentGC 0.000000 setForeground
componentGC 250 127 242 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 248 126 250 127 psDrawLine
componentGC 0.000000 setForeground
componentGC 248 127 250 127 psDrawLine
componentGC 0.000000 setForeground
componentGC 257 131 248 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 255 130 257 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 255 131 257 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 263 134 253 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 261 133 263 134 psDrawLine
componentGC 0.000000 setForeground
componentGC 261 134 263 134 psDrawLine
componentGC 0.000000 setForeground
componentGC 269 138 259 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 267 137 269 138 psDrawLine
componentGC 0.000000 setForeground
componentGC 267 138 269 138 psDrawLine
componentGC 0.000000 setForeground
componentGC 276 142 265 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 273 141 276 142 psDrawLine
componentGC 0.000000 setForeground
componentGC 273 142 276 142 psDrawLine
componentGC 0.000000 setForeground
componentGC 282 146 272 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 280 145 282 146 psDrawLine
componentGC 0.000000 setForeground
componentGC 280 146 282 146 psDrawLine
componentGC 0.000000 setForeground
componentGC 135 62 137 67 psDrawLine
componentGC 0.000000 setForeground
componentGC 135 63 135 62 psDrawLine
componentGC 0.000000 setForeground
componentGC 136 63 135 62 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 65 141 70 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 66 140 65 psDrawLine
componentGC 0.000000 setForeground
componentGC 141 66 140 65 psDrawLine
componentGC 0.000000 setForeground
componentGC 144 68 146 73 psDrawLine
componentGC 0.000000 setForeground
componentGC 144 69 144 68 psDrawLine
componentGC 0.000000 setForeground
componentGC 145 69 144 68 psDrawLine
componentGC 0.000000 setForeground
componentGC 149 71 150 76 psDrawLine
componentGC 0.000000 setForeground
componentGC 149 72 149 71 psDrawLine
componentGC 0.000000 setForeground
componentGC 150 72 149 71 psDrawLine
componentGC 0.000000 setForeground
componentGC 153 74 155 79 psDrawLine
componentGC 0.000000 setForeground
componentGC 153 75 153 74 psDrawLine
componentGC 0.000000 setForeground
componentGC 154 75 153 74 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 77 160 81 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 78 158 77 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 78 158 77 psDrawLine
componentGC 0.000000 setForeground
componentGC 162 80 164 84 psDrawLine
componentGC 0.000000 setForeground
componentGC 162 81 162 80 psDrawLine
componentGC 0.000000 setForeground
componentGC 163 81 162 80 psDrawLine
componentGC 0.000000 setForeground
componentGC 167 83 169 87 psDrawLine
componentGC 0.000000 setForeground
componentGC 167 84 167 83 psDrawLine
componentGC 0.000000 setForeground
componentGC 168 84 167 83 psDrawLine
componentGC 0.000000 setForeground
componentGC 171 86 174 90 psDrawLine
componentGC 0.000000 setForeground
componentGC 171 87 171 86 psDrawLine
componentGC 0.000000 setForeground
componentGC 172 87 171 86 psDrawLine
componentGC 0.000000 setForeground
componentGC 175 89 179 93 psDrawLine
componentGC 0.000000 setForeground
componentGC 176 90 175 89 psDrawLine
componentGC 0.000000 setForeground
componentGC 177 90 175 89 psDrawLine
componentGC 0.000000 setForeground
componentGC 179 92 184 96 psDrawLine
componentGC 0.000000 setForeground
componentGC 179 94 179 92 psDrawLine
componentGC 0.000000 setForeground
componentGC 180 93 179 92 psDrawLine
componentGC 0.000000 setForeground
componentGC 181 97 189 99 psDrawLine
componentGC 0.000000 setForeground
componentGC 182 98 181 97 psDrawLine
componentGC 0.000000 setForeground
componentGC 183 97 181 97 psDrawLine
componentGC 0.000000 setForeground
componentGC 184 105 194 103 psDrawLine
componentGC 0.000000 setForeground
componentGC 187 105 184 105 psDrawLine
componentGC 0.000000 setForeground
componentGC 186 104 184 105 psDrawLine
componentGC 0.000000 setForeground
componentGC 197 113 199 106 psDrawLine
componentGC 0.000000 setForeground
componentGC 198 111 197 113 psDrawLine
componentGC 0.000000 setForeground
componentGC 197 111 197 113 psDrawLine
componentGC 0.000000 setForeground
componentGC 209 115 204 109 psDrawLine
componentGC 0.000000 setForeground
componentGC 209 113 209 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 208 114 209 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 217 116 210 112 psDrawLine
componentGC 0.000000 setForeground
componentGC 215 115 217 116 psDrawLine
componentGC 0.000000 setForeground
componentGC 215 115 217 116 psDrawLine
componentGC 0.000000 setForeground
componentGC 223 118 215 116 psDrawLine
componentGC 0.000000 setForeground
componentGC 221 117 223 118 psDrawLine
componentGC 0.000000 setForeground
componentGC 221 118 223 118 psDrawLine
componentGC 0.000000 setForeground
componentGC 228 121 221 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 227 120 228 121 psDrawLine
componentGC 0.000000 setForeground
componentGC 226 121 228 121 psDrawLine
componentGC 0.000000 setForeground
componentGC 234 124 226 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 232 123 234 124 psDrawLine
componentGC 0.000000 setForeground
componentGC 232 124 234 124 psDrawLine
componentGC 0.000000 setForeground
componentGC 240 127 232 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 238 127 240 127 psDrawLine
componentGC 0.000000 setForeground
componentGC 238 127 240 127 psDrawLine
componentGC 0.000000 setForeground
componentGC 246 131 237 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 244 130 246 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 244 131 246 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 252 134 243 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 250 134 252 134 psDrawLine
componentGC 0.000000 setForeground
componentGC 250 135 252 134 psDrawLine
componentGC 0.000000 setForeground
componentGC 259 138 249 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 256 137 259 138 psDrawLine
componentGC 0.000000 setForeground
componentGC 256 138 259 138 psDrawLine
componentGC 0.000000 setForeground
componentGC 265 142 255 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 263 141 265 142 psDrawLine
componentGC 0.000000 setForeground
componentGC 263 142 265 142 psDrawLine
componentGC 0.000000 setForeground
componentGC 271 146 261 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 269 145 271 146 psDrawLine
componentGC 0.000000 setForeground
componentGC 269 146 271 146 psDrawLine
componentGC 0.000000 setForeground
componentGC 278 150 267 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 275 149 278 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 275 150 278 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 131 65 132 70 psDrawLine
componentGC 0.000000 setForeground
componentGC 130 66 131 65 psDrawLine
componentGC 0.000000 setForeground
componentGC 132 66 131 65 psDrawLine
componentGC 0.000000 setForeground
componentGC 135 68 137 73 psDrawLine
componentGC 0.000000 setForeground
componentGC 135 69 135 68 psDrawLine
componentGC 0.000000 setForeground
componentGC 136 69 135 68 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 71 141 76 psDrawLine
componentGC 0.000000 setForeground
componentGC 139 72 140 71 psDrawLine
componentGC 0.000000 setForeground
componentGC 141 72 140 71 psDrawLine
componentGC 0.000000 setForeground
componentGC 144 73 146 79 psDrawLine
componentGC 0.000000 setForeground
componentGC 144 75 144 73 psDrawLine
componentGC 0.000000 setForeground
componentGC 145 75 144 73 psDrawLine
componentGC 0.000000 setForeground
componentGC 149 76 150 81 psDrawLine
componentGC 0.000000 setForeground
componentGC 148 78 149 76 psDrawLine
componentGC 0.000000 setForeground
componentGC 150 78 149 76 psDrawLine
componentGC 0.000000 setForeground
componentGC 153 79 155 84 psDrawLine
componentGC 0.000000 setForeground
componentGC 153 81 153 79 psDrawLine
componentGC 0.000000 setForeground
componentGC 154 80 153 79 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 82 160 87 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 84 158 82 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 83 158 82 psDrawLine
componentGC 0.000000 setForeground
componentGC 162 85 165 90 psDrawLine
componentGC 0.000000 setForeground
componentGC 162 87 162 85 psDrawLine
componentGC 0.000000 setForeground
componentGC 163 86 162 85 psDrawLine
componentGC 0.000000 setForeground
componentGC 167 88 169 93 psDrawLine
componentGC 0.000000 setForeground
componentGC 167 90 167 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 168 89 167 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 171 91 174 96 psDrawLine
componentGC 0.000000 setForeground
componentGC 171 93 171 91 psDrawLine
componentGC 0.000000 setForeground
componentGC 172 92 171 91 psDrawLine
componentGC 0.000000 setForeground
componentGC 174 94 179 99 psDrawLine
componentGC 0.000000 setForeground
componentGC 175 95 174 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 176 95 174 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 174 95 184 103 psDrawLine
componentGC 0.000000 setForeground
componentGC 175 98 174 95 psDrawLine
componentGC 0.000000 setForeground
componentGC 177 97 174 95 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 105 189 106 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 107 158 105 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 104 158 105 psDrawLine
componentGC 0.000000 setForeground
componentGC 198 131 195 109 psDrawLine
componentGC 0.000000 setForeground
componentGC 200 126 198 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 194 126 198 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 212 120 200 112 psDrawLine
componentGC 0.000000 setForeground
componentGC 210 117 212 120 psDrawLine
componentGC 0.000000 setForeground
componentGC 209 118 212 120 psDrawLine
componentGC 0.000000 setForeground
componentGC 215 119 205 116 psDrawLine
componentGC 0.000000 setForeground
componentGC 213 118 215 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 212 119 215 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 219 121 211 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 217 120 219 121 psDrawLine
componentGC 0.000000 setForeground
componentGC 217 121 219 121 psDrawLine
componentGC 0.000000 setForeground
componentGC 225 124 216 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 223 124 225 124 psDrawLine
componentGC 0.000000 setForeground
componentGC 222 124 225 124 psDrawLine
componentGC 0.000000 setForeground
componentGC 230 128 222 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 228 127 230 128 psDrawLine
componentGC 0.000000 setForeground
componentGC 228 128 230 128 psDrawLine
componentGC 0.000000 setForeground
componentGC 236 131 227 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 234 130 236 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 234 131 236 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 242 135 233 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 240 134 242 135 psDrawLine
componentGC 0.000000 setForeground
componentGC 240 135 242 135 psDrawLine
componentGC 0.000000 setForeground
componentGC 248 138 239 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 246 137 248 138 psDrawLine
componentGC 0.000000 setForeground
componentGC 246 138 248 138 psDrawLine
componentGC 0.000000 setForeground
componentGC 254 142 245 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 252 141 254 142 psDrawLine
componentGC 0.000000 setForeground
componentGC 252 142 254 142 psDrawLine
componentGC 0.000000 setForeground
componentGC 260 146 251 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 258 145 260 146 psDrawLine
componentGC 0.000000 setForeground
componentGC 258 146 260 146 psDrawLine
componentGC 0.000000 setForeground
componentGC 267 150 257 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 264 149 267 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 264 150 267 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 273 154 263 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 271 153 273 154 psDrawLine
componentGC 0.000000 setForeground
componentGC 271 154 273 154 psDrawLine
componentGC 0.000000 setForeground
componentGC 126 68 128 73 psDrawLine
componentGC 0.000000 setForeground
componentGC 126 69 126 68 psDrawLine
componentGC 0.000000 setForeground
componentGC 127 69 126 68 psDrawLine
componentGC 0.000000 setForeground
componentGC 130 71 132 76 psDrawLine
componentGC 0.000000 setForeground
componentGC 130 72 130 71 psDrawLine
componentGC 0.000000 setForeground
componentGC 131 72 130 71 psDrawLine
componentGC 0.000000 setForeground
componentGC 135 73 137 79 psDrawLine
componentGC 0.000000 setForeground
componentGC 135 75 135 73 psDrawLine
componentGC 0.000000 setForeground
componentGC 136 75 135 73 psDrawLine
componentGC 0.000000 setForeground
componentGC 139 76 141 81 psDrawLine
componentGC 0.000000 setForeground
componentGC 139 78 139 76 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 77 139 76 psDrawLine
componentGC 0.000000 setForeground
componentGC 144 79 146 84 psDrawLine
componentGC 0.000000 setForeground
componentGC 144 81 144 79 psDrawLine
componentGC 0.000000 setForeground
componentGC 145 80 144 79 psDrawLine
componentGC 0.000000 setForeground
componentGC 148 82 150 87 psDrawLine
componentGC 0.000000 setForeground
componentGC 148 84 148 82 psDrawLine
componentGC 0.000000 setForeground
componentGC 150 83 148 82 psDrawLine
componentGC 0.000000 setForeground
componentGC 153 85 155 90 psDrawLine
componentGC 0.000000 setForeground
componentGC 153 87 153 85 psDrawLine
componentGC 0.000000 setForeground
componentGC 154 86 153 85 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 88 160 93 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 90 158 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 89 158 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 162 91 165 96 psDrawLine
componentGC 0.000000 setForeground
componentGC 162 92 162 91 psDrawLine
componentGC 0.000000 setForeground
componentGC 163 92 162 91 psDrawLine
componentGC 0.000000 setForeground
componentGC 167 94 170 99 psDrawLine
componentGC 0.000000 setForeground
componentGC 167 95 167 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 168 95 167 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 172 96 175 103 psDrawLine
componentGC 0.000000 setForeground
componentGC 172 98 172 96 psDrawLine
componentGC 0.000000 setForeground
componentGC 173 98 172 96 psDrawLine
componentGC 0.000000 setForeground
componentGC 179 95 180 106 psDrawLine
componentGC 0.000000 setForeground
componentGC 178 98 179 95 psDrawLine
componentGC 0.000000 setForeground
componentGC 181 98 179 95 psDrawLine
componentGC 0.000000 setForeground
componentGC 203 91 185 109 psDrawLine
componentGC 0.000000 setForeground
componentGC 196 94 203 91 psDrawLine
componentGC 0.000000 setForeground
componentGC 201 96 203 91 psDrawLine
componentGC 0.000000 setForeground
componentGC 216 99 190 112 psDrawLine
componentGC 0.000000 setForeground
componentGC 209 101 216 99 psDrawLine
componentGC 0.000000 setForeground
componentGC 212 104 216 99 psDrawLine
componentGC 0.000000 setForeground
componentGC 212 116 195 116 psDrawLine
componentGC 0.000000 setForeground
componentGC 208 115 212 116 psDrawLine
componentGC 0.000000 setForeground
componentGC 208 116 212 116 psDrawLine
componentGC 0.000000 setForeground
componentGC 211 121 201 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 209 120 211 121 psDrawLine
componentGC 0.000000 setForeground
componentGC 209 121 211 121 psDrawLine
componentGC 0.000000 setForeground
componentGC 215 124 206 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 213 124 215 124 psDrawLine
componentGC 0.000000 setForeground
componentGC 213 124 215 124 psDrawLine
componentGC 0.000000 setForeground
componentGC 220 128 211 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 218 127 220 128 psDrawLine
componentGC 0.000000 setForeground
componentGC 218 128 220 128 psDrawLine
componentGC 0.000000 setForeground
componentGC 226 131 217 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 224 130 226 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 224 131 226 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 232 135 223 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 230 134 232 135 psDrawLine
componentGC 0.000000 setForeground
componentGC 229 135 232 135 psDrawLine
componentGC 0.000000 setForeground
componentGC 237 138 228 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 235 137 237 138 psDrawLine
componentGC 0.000000 setForeground
componentGC 235 138 237 138 psDrawLine
componentGC 0.000000 setForeground
componentGC 243 142 234 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 241 141 243 142 psDrawLine
componentGC 0.000000 setForeground
componentGC 241 142 243 142 psDrawLine
componentGC 0.000000 setForeground
componentGC 250 146 240 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 247 145 250 146 psDrawLine
componentGC 0.000000 setForeground
componentGC 247 146 250 146 psDrawLine
componentGC 0.000000 setForeground
componentGC 256 150 246 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 254 149 256 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 253 150 256 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 262 154 252 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 260 153 262 154 psDrawLine
componentGC 0.000000 setForeground
componentGC 260 154 262 154 psDrawLine
componentGC 0.000000 setForeground
componentGC 269 158 258 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 266 157 269 158 psDrawLine
componentGC 0.000000 setForeground
componentGC 266 158 269 158 psDrawLine
componentGC 0.000000 setForeground
componentGC 121 71 123 76 psDrawLine
componentGC 0.000000 setForeground
componentGC 121 72 121 71 psDrawLine
componentGC 0.000000 setForeground
componentGC 122 72 121 71 psDrawLine
componentGC 0.000000 setForeground
componentGC 126 73 128 79 psDrawLine
componentGC 0.000000 setForeground
componentGC 125 75 126 73 psDrawLine
componentGC 0.000000 setForeground
componentGC 127 75 126 73 psDrawLine
componentGC 0.000000 setForeground
componentGC 130 76 132 81 psDrawLine
componentGC 0.000000 setForeground
componentGC 130 78 130 76 psDrawLine
componentGC 0.000000 setForeground
componentGC 131 77 130 76 psDrawLine
componentGC 0.000000 setForeground
componentGC 135 79 137 84 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 81 135 79 psDrawLine
componentGC 0.000000 setForeground
componentGC 136 80 135 79 psDrawLine
componentGC 0.000000 setForeground
componentGC 139 82 141 87 psDrawLine
componentGC 0.000000 setForeground
componentGC 139 83 139 82 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 83 139 82 psDrawLine
componentGC 0.000000 setForeground
componentGC 144 85 146 90 psDrawLine
componentGC 0.000000 setForeground
componentGC 144 86 144 85 psDrawLine
componentGC 0.000000 setForeground
componentGC 145 86 144 85 psDrawLine
componentGC 0.000000 setForeground
componentGC 148 88 150 93 psDrawLine
componentGC 0.000000 setForeground
componentGC 148 89 148 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 149 89 148 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 153 91 155 96 psDrawLine
componentGC 0.000000 setForeground
componentGC 153 92 153 91 psDrawLine
componentGC 0.000000 setForeground
componentGC 154 92 153 91 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 94 160 99 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 96 158 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 95 158 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 163 97 165 103 psDrawLine
componentGC 0.000000 setForeground
componentGC 163 99 163 97 psDrawLine
componentGC 0.000000 setForeground
componentGC 164 98 163 97 psDrawLine
componentGC 0.000000 setForeground
componentGC 168 100 170 106 psDrawLine
componentGC 0.000000 setForeground
componentGC 168 102 168 100 psDrawLine
componentGC 0.000000 setForeground
componentGC 169 101 168 100 psDrawLine
componentGC 0.000000 setForeground
componentGC 176 105 175 109 psDrawLine
componentGC 0.000000 setForeground
componentGC 176 106 176 105 psDrawLine
componentGC 0.000000 setForeground
componentGC 177 106 176 105 psDrawLine
componentGC 0.000000 setForeground
componentGC 183 119 180 112 psDrawLine
componentGC 0.000000 setForeground
componentGC 183 117 183 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 181 117 183 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 176 114 185 116 psDrawLine
componentGC 0.000000 setForeground
componentGC 178 115 176 114 psDrawLine
componentGC 0.000000 setForeground
componentGC 178 114 176 114 psDrawLine
componentGC 0.000000 setForeground
componentGC 197 118 191 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 195 118 197 118 psDrawLine
componentGC 0.000000 setForeground
componentGC 196 119 197 118 psDrawLine
componentGC 0.000000 setForeground
componentGC 205 124 196 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 203 123 205 124 psDrawLine
componentGC 0.000000 setForeground
componentGC 203 124 205 124 psDrawLine
componentGC 0.000000 setForeground
componentGC 210 128 201 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 208 127 210 128 psDrawLine
componentGC 0.000000 setForeground
componentGC 208 128 210 128 psDrawLine
componentGC 0.000000 setForeground
componentGC 216 131 207 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 214 130 216 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 214 131 216 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 221 135 212 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 219 134 221 135 psDrawLine
componentGC 0.000000 setForeground
componentGC 219 135 221 135 psDrawLine
componentGC 0.000000 setForeground
componentGC 227 138 218 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 225 138 227 138 psDrawLine
componentGC 0.000000 setForeground
componentGC 225 139 227 138 psDrawLine
componentGC 0.000000 setForeground
componentGC 233 142 224 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 231 141 233 142 psDrawLine
componentGC 0.000000 setForeground
componentGC 231 142 233 142 psDrawLine
componentGC 0.000000 setForeground
componentGC 239 146 229 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 237 145 239 146 psDrawLine
componentGC 0.000000 setForeground
componentGC 237 146 239 146 psDrawLine
componentGC 0.000000 setForeground
componentGC 245 150 235 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 243 149 245 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 243 150 245 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 251 154 241 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 249 153 251 154 psDrawLine
componentGC 0.000000 setForeground
componentGC 249 154 251 154 psDrawLine
componentGC 0.000000 setForeground
componentGC 258 158 247 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 255 157 258 158 psDrawLine
componentGC 0.000000 setForeground
componentGC 255 158 258 158 psDrawLine
componentGC 0.000000 setForeground
componentGC 264 162 254 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 262 161 264 162 psDrawLine
componentGC 0.000000 setForeground
componentGC 261 162 264 162 psDrawLine
componentGC 0.000000 setForeground
componentGC 116 73 118 79 psDrawLine
componentGC 0.000000 setForeground
componentGC 116 75 116 73 psDrawLine
componentGC 0.000000 setForeground
componentGC 117 75 116 73 psDrawLine
componentGC 0.000000 setForeground
componentGC 121 76 123 81 psDrawLine
componentGC 0.000000 setForeground
componentGC 121 78 121 76 psDrawLine
componentGC 0.000000 setForeground
componentGC 122 77 121 76 psDrawLine
componentGC 0.000000 setForeground
componentGC 125 79 127 84 psDrawLine
componentGC 0.000000 setForeground
componentGC 125 81 125 79 psDrawLine
componentGC 0.000000 setForeground
componentGC 126 80 125 79 psDrawLine
componentGC 0.000000 setForeground
componentGC 130 82 132 87 psDrawLine
componentGC 0.000000 setForeground
componentGC 130 83 130 82 psDrawLine
componentGC 0.000000 setForeground
componentGC 131 83 130 82 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 85 136 90 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 86 134 85 psDrawLine
componentGC 0.000000 setForeground
componentGC 135 86 134 85 psDrawLine
componentGC 0.000000 setForeground
componentGC 139 88 141 93 psDrawLine
componentGC 0.000000 setForeground
componentGC 139 89 139 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 89 139 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 144 91 146 96 psDrawLine
componentGC 0.000000 setForeground
componentGC 143 92 144 91 psDrawLine
componentGC 0.000000 setForeground
componentGC 145 92 144 91 psDrawLine
componentGC 0.000000 setForeground
componentGC 148 94 150 99 psDrawLine
componentGC 0.000000 setForeground
componentGC 148 96 148 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 149 95 148 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 153 97 155 103 psDrawLine
componentGC 0.000000 setForeground
componentGC 153 99 153 97 psDrawLine
componentGC 0.000000 setForeground
componentGC 154 98 153 97 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 100 160 106 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 102 158 100 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 102 158 100 psDrawLine
componentGC 0.000000 setForeground
componentGC 163 104 165 109 psDrawLine
componentGC 0.000000 setForeground
componentGC 163 105 163 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 164 105 163 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 166 108 170 112 psDrawLine
componentGC 0.000000 setForeground
componentGC 167 109 166 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 168 109 166 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 166 117 175 116 psDrawLine
componentGC 0.000000 setForeground
componentGC 168 117 166 117 psDrawLine
componentGC 0.000000 setForeground
componentGC 168 116 166 117 psDrawLine
componentGC 0.000000 setForeground
componentGC 179 126 181 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 180 124 179 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 179 124 179 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 193 125 186 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 191 124 193 125 psDrawLine
componentGC 0.000000 setForeground
componentGC 191 125 193 125 psDrawLine
componentGC 0.000000 setForeground
componentGC 200 128 191 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 198 127 200 128 psDrawLine
componentGC 0.000000 setForeground
componentGC 197 128 200 128 psDrawLine
componentGC 0.000000 setForeground
componentGC 205 131 197 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 203 130 205 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 203 131 205 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 211 135 202 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 209 134 211 135 psDrawLine
componentGC 0.000000 setForeground
componentGC 209 135 211 135 psDrawLine
componentGC 0.000000 setForeground
componentGC 217 138 208 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 215 138 217 138 psDrawLine
componentGC 0.000000 setForeground
componentGC 214 139 217 138 psDrawLine
componentGC 0.000000 setForeground
componentGC 222 142 213 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 220 141 222 142 psDrawLine
componentGC 0.000000 setForeground
componentGC 220 142 222 142 psDrawLine
componentGC 0.000000 setForeground
componentGC 228 146 219 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 226 145 228 146 psDrawLine
componentGC 0.000000 setForeground
componentGC 226 146 228 146 psDrawLine
componentGC 0.000000 setForeground
componentGC 234 150 225 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 232 149 234 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 232 150 234 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 240 154 231 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 238 153 240 154 psDrawLine
componentGC 0.000000 setForeground
componentGC 238 154 240 154 psDrawLine
componentGC 0.000000 setForeground
componentGC 247 158 237 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 244 157 247 158 psDrawLine
componentGC 0.000000 setForeground
componentGC 244 158 247 158 psDrawLine
componentGC 0.000000 setForeground
componentGC 253 162 243 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 251 161 253 162 psDrawLine
componentGC 0.000000 setForeground
componentGC 250 162 253 162 psDrawLine
componentGC 0.000000 setForeground
componentGC 259 166 249 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 257 165 259 166 psDrawLine
componentGC 0.000000 setForeground
componentGC 257 166 259 166 psDrawLine
componentGC 0.000000 setForeground
componentGC 111 76 114 81 psDrawLine
componentGC 0.000000 setForeground
componentGC 111 78 111 76 psDrawLine
componentGC 0.000000 setForeground
componentGC 113 77 111 76 psDrawLine
componentGC 0.000000 setForeground
componentGC 116 79 118 84 psDrawLine
componentGC 0.000000 setForeground
componentGC 116 81 116 79 psDrawLine
componentGC 0.000000 setForeground
componentGC 117 80 116 79 psDrawLine
componentGC 0.000000 setForeground
componentGC 120 82 122 87 psDrawLine
componentGC 0.000000 setForeground
componentGC 120 83 120 82 psDrawLine
componentGC 0.000000 setForeground
componentGC 122 83 120 82 psDrawLine
componentGC 0.000000 setForeground
componentGC 125 85 127 90 psDrawLine
componentGC 0.000000 setForeground
componentGC 125 86 125 85 psDrawLine
componentGC 0.000000 setForeground
componentGC 126 86 125 85 psDrawLine
componentGC 0.000000 setForeground
componentGC 130 88 132 93 psDrawLine
componentGC 0.000000 setForeground
componentGC 129 89 130 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 131 89 130 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 91 136 96 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 92 134 91 psDrawLine
componentGC 0.000000 setForeground
componentGC 135 92 134 91 psDrawLine
componentGC 0.000000 setForeground
componentGC 139 94 141 99 psDrawLine
componentGC 0.000000 setForeground
componentGC 139 96 139 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 95 139 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 143 97 146 103 psDrawLine
componentGC 0.000000 setForeground
componentGC 143 99 143 97 psDrawLine
componentGC 0.000000 setForeground
componentGC 145 98 143 97 psDrawLine
componentGC 0.000000 setForeground
componentGC 148 100 150 106 psDrawLine
componentGC 0.000000 setForeground
componentGC 148 102 148 100 psDrawLine
componentGC 0.000000 setForeground
componentGC 149 102 148 100 psDrawLine
componentGC 0.000000 setForeground
componentGC 153 104 155 109 psDrawLine
componentGC 0.000000 setForeground
componentGC 153 105 153 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 154 105 153 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 107 160 112 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 108 158 107 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 108 158 107 psDrawLine
componentGC 0.000000 setForeground
componentGC 163 109 165 116 psDrawLine
componentGC 0.000000 setForeground
componentGC 162 110 163 109 psDrawLine
componentGC 0.000000 setForeground
componentGC 164 110 163 109 psDrawLine
componentGC 0.000000 setForeground
componentGC 151 100 171 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 153 105 151 100 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 103 151 100 psDrawLine
componentGC 0.000000 setForeground
componentGC 207 137 176 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 201 131 207 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 198 135 207 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 192 128 181 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 189 127 192 128 psDrawLine
componentGC 0.000000 setForeground
componentGC 189 128 192 128 psDrawLine
componentGC 0.000000 setForeground
componentGC 195 131 186 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 193 130 195 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 193 131 195 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 201 135 192 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 199 134 201 135 psDrawLine
componentGC 0.000000 setForeground
componentGC 198 135 201 135 psDrawLine
componentGC 0.000000 setForeground
componentGC 206 138 197 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 204 138 206 138 psDrawLine
componentGC 0.000000 setForeground
componentGC 204 139 206 138 psDrawLine
componentGC 0.000000 setForeground
componentGC 212 142 203 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 210 141 212 142 psDrawLine
componentGC 0.000000 setForeground
componentGC 210 142 212 142 psDrawLine
componentGC 0.000000 setForeground
componentGC 218 146 208 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 216 145 218 146 psDrawLine
componentGC 0.000000 setForeground
componentGC 215 146 218 146 psDrawLine
componentGC 0.000000 setForeground
componentGC 224 150 214 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 221 149 224 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 221 150 224 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 230 154 220 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 227 153 230 154 psDrawLine
componentGC 0.000000 setForeground
componentGC 227 154 230 154 psDrawLine
componentGC 0.000000 setForeground
componentGC 236 158 226 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 233 157 236 158 psDrawLine
componentGC 0.000000 setForeground
componentGC 233 158 236 158 psDrawLine
componentGC 0.000000 setForeground
componentGC 242 162 232 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 239 161 242 162 psDrawLine
componentGC 0.000000 setForeground
componentGC 239 162 242 162 psDrawLine
componentGC 0.000000 setForeground
componentGC 248 166 238 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 246 165 248 166 psDrawLine
componentGC 0.000000 setForeground
componentGC 245 166 248 166 psDrawLine
componentGC 0.000000 setForeground
componentGC 254 170 244 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 252 169 254 170 psDrawLine
componentGC 0.000000 setForeground
componentGC 252 170 254 170 psDrawLine
componentGC 0.000000 setForeground
componentGC 106 79 109 84 psDrawLine
componentGC 0.000000 setForeground
componentGC 106 81 106 79 psDrawLine
componentGC 0.000000 setForeground
componentGC 108 80 106 79 psDrawLine
componentGC 0.000000 setForeground
componentGC 111 82 113 87 psDrawLine
componentGC 0.000000 setForeground
componentGC 111 84 111 82 psDrawLine
componentGC 0.000000 setForeground
componentGC 112 83 111 82 psDrawLine
componentGC 0.000000 setForeground
componentGC 116 85 118 90 psDrawLine
componentGC 0.000000 setForeground
componentGC 115 86 116 85 psDrawLine
componentGC 0.000000 setForeground
componentGC 117 86 116 85 psDrawLine
componentGC 0.000000 setForeground
componentGC 120 88 122 93 psDrawLine
componentGC 0.000000 setForeground
componentGC 120 89 120 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 121 89 120 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 125 91 127 96 psDrawLine
componentGC 0.000000 setForeground
componentGC 125 92 125 91 psDrawLine
componentGC 0.000000 setForeground
componentGC 126 92 125 91 psDrawLine
componentGC 0.000000 setForeground
componentGC 129 94 131 99 psDrawLine
componentGC 0.000000 setForeground
componentGC 129 96 129 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 130 95 129 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 97 136 103 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 99 134 97 psDrawLine
componentGC 0.000000 setForeground
componentGC 135 98 134 97 psDrawLine
componentGC 0.000000 setForeground
componentGC 139 100 141 106 psDrawLine
componentGC 0.000000 setForeground
componentGC 138 102 139 100 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 102 139 100 psDrawLine
componentGC 0.000000 setForeground
componentGC 143 104 146 109 psDrawLine
componentGC 0.000000 setForeground
componentGC 143 105 143 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 145 105 143 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 148 107 150 112 psDrawLine
componentGC 0.000000 setForeground
componentGC 148 108 148 107 psDrawLine
componentGC 0.000000 setForeground
componentGC 149 108 148 107 psDrawLine
componentGC 0.000000 setForeground
componentGC 153 110 155 116 psDrawLine
componentGC 0.000000 setForeground
componentGC 153 111 153 110 psDrawLine
componentGC 0.000000 setForeground
componentGC 154 111 153 110 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 115 161 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 116 158 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 116 158 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 175 129 166 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 174 127 175 129 psDrawLine
componentGC 0.000000 setForeground
componentGC 172 128 175 129 psDrawLine
componentGC 0.000000 setForeground
componentGC 161 120 171 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 163 122 161 120 psDrawLine
componentGC 0.000000 setForeground
componentGC 164 121 161 120 psDrawLine
componentGC 0.000000 setForeground
componentGC 182 131 176 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 181 130 182 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 181 131 182 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 190 135 181 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 188 134 190 135 psDrawLine
componentGC 0.000000 setForeground
componentGC 188 135 190 135 psDrawLine
componentGC 0.000000 setForeground
componentGC 196 138 187 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 194 138 196 138 psDrawLine
componentGC 0.000000 setForeground
componentGC 194 139 196 138 psDrawLine
componentGC 0.000000 setForeground
componentGC 201 142 192 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 199 141 201 142 psDrawLine
componentGC 0.000000 setForeground
componentGC 199 142 201 142 psDrawLine
componentGC 0.000000 setForeground
componentGC 207 146 198 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 205 145 207 146 psDrawLine
componentGC 0.000000 setForeground
componentGC 205 146 207 146 psDrawLine
componentGC 0.000000 setForeground
componentGC 213 150 204 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 211 149 213 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 211 150 213 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 219 154 209 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 217 153 219 154 psDrawLine
componentGC 0.000000 setForeground
componentGC 216 154 219 154 psDrawLine
componentGC 0.000000 setForeground
componentGC 225 158 215 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 223 157 225 158 psDrawLine
componentGC 0.000000 setForeground
componentGC 222 158 225 158 psDrawLine
componentGC 0.000000 setForeground
componentGC 231 162 221 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 229 161 231 162 psDrawLine
componentGC 0.000000 setForeground
componentGC 228 162 231 162 psDrawLine
componentGC 0.000000 setForeground
componentGC 237 166 227 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 235 165 237 166 psDrawLine
componentGC 0.000000 setForeground
componentGC 234 166 237 166 psDrawLine
componentGC 0.000000 setForeground
componentGC 243 170 233 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 241 169 243 170 psDrawLine
componentGC 0.000000 setForeground
componentGC 241 170 243 170 psDrawLine
componentGC 0.000000 setForeground
componentGC 249 174 239 172 psDrawLine
componentGC 0.000000 setForeground
componentGC 247 173 249 174 psDrawLine
componentGC 0.000000 setForeground
componentGC 247 174 249 174 psDrawLine
componentGC 0.000000 setForeground
componentGC 102 82 104 87 psDrawLine
componentGC 0.000000 setForeground
componentGC 101 84 102 82 psDrawLine
componentGC 0.000000 setForeground
componentGC 103 83 102 82 psDrawLine
componentGC 0.000000 setForeground
componentGC 106 85 108 90 psDrawLine
componentGC 0.000000 setForeground
componentGC 106 87 106 85 psDrawLine
componentGC 0.000000 setForeground
componentGC 107 86 106 85 psDrawLine
componentGC 0.000000 setForeground
componentGC 111 88 113 93 psDrawLine
componentGC 0.000000 setForeground
componentGC 111 90 111 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 112 89 111 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 115 91 117 96 psDrawLine
componentGC 0.000000 setForeground
componentGC 115 93 115 91 psDrawLine
componentGC 0.000000 setForeground
componentGC 116 92 115 91 psDrawLine
componentGC 0.000000 setForeground
componentGC 120 94 122 99 psDrawLine
componentGC 0.000000 setForeground
componentGC 120 96 120 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 121 95 120 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 124 97 126 103 psDrawLine
componentGC 0.000000 setForeground
componentGC 124 99 124 97 psDrawLine
componentGC 0.000000 setForeground
componentGC 125 98 124 97 psDrawLine
componentGC 0.000000 setForeground
componentGC 129 100 131 106 psDrawLine
componentGC 0.000000 setForeground
componentGC 129 102 129 100 psDrawLine
componentGC 0.000000 setForeground
componentGC 130 102 129 100 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 104 136 109 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 105 134 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 135 105 134 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 138 107 141 112 psDrawLine
componentGC 0.000000 setForeground
componentGC 138 108 138 107 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 108 138 107 psDrawLine
componentGC 0.000000 setForeground
componentGC 143 110 146 116 psDrawLine
componentGC 0.000000 setForeground
componentGC 143 111 143 110 psDrawLine
componentGC 0.000000 setForeground
componentGC 144 111 143 110 psDrawLine
componentGC 0.000000 setForeground
componentGC 148 113 151 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 148 115 148 113 psDrawLine
componentGC 0.000000 setForeground
componentGC 149 115 148 113 psDrawLine
componentGC 0.000000 setForeground
componentGC 156 116 156 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 155 118 156 116 psDrawLine
componentGC 0.000000 setForeground
componentGC 157 118 156 116 psDrawLine
componentGC 0.000000 setForeground
componentGC 155 131 161 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 157 130 155 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 156 129 155 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 133 166 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 161 133 159 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 160 132 159 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 180 133 171 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 178 132 180 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 178 133 180 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 186 138 176 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 184 138 186 138 psDrawLine
componentGC 0.000000 setForeground
componentGC 183 139 186 138 psDrawLine
componentGC 0.000000 setForeground
componentGC 191 142 182 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 189 141 191 142 psDrawLine
componentGC 0.000000 setForeground
componentGC 189 142 191 142 psDrawLine
componentGC 0.000000 setForeground
componentGC 197 146 187 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 195 145 197 146 psDrawLine
componentGC 0.000000 setForeground
componentGC 194 146 197 146 psDrawLine
componentGC 0.000000 setForeground
componentGC 202 150 193 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 200 149 202 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 200 150 202 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 208 154 199 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 206 153 208 154 psDrawLine
componentGC 0.000000 setForeground
componentGC 206 154 208 154 psDrawLine
componentGC 0.000000 setForeground
componentGC 214 158 204 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 212 157 214 158 psDrawLine
componentGC 0.000000 setForeground
componentGC 211 158 214 158 psDrawLine
componentGC 0.000000 setForeground
componentGC 220 162 210 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 218 161 220 162 psDrawLine
componentGC 0.000000 setForeground
componentGC 217 162 220 162 psDrawLine
componentGC 0.000000 setForeground
componentGC 226 166 216 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 224 165 226 166 psDrawLine
componentGC 0.000000 setForeground
componentGC 223 166 226 166 psDrawLine
componentGC 0.000000 setForeground
componentGC 232 170 222 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 230 169 232 170 psDrawLine
componentGC 0.000000 setForeground
componentGC 229 170 232 170 psDrawLine
componentGC 0.000000 setForeground
componentGC 238 174 228 172 psDrawLine
componentGC 0.000000 setForeground
componentGC 236 173 238 174 psDrawLine
componentGC 0.000000 setForeground
componentGC 236 174 238 174 psDrawLine
componentGC 0.000000 setForeground
componentGC 244 179 235 176 psDrawLine
componentGC 0.000000 setForeground
componentGC 242 178 244 179 psDrawLine
componentGC 0.000000 setForeground
componentGC 242 179 244 179 psDrawLine
componentGC 0.000000 setForeground
componentGC 97 85 99 90 psDrawLine
componentGC 0.000000 setForeground
componentGC 97 87 97 85 psDrawLine
componentGC 0.000000 setForeground
componentGC 98 86 97 85 psDrawLine
componentGC 0.000000 setForeground
componentGC 101 88 103 93 psDrawLine
componentGC 0.000000 setForeground
componentGC 101 90 101 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 102 89 101 88 psDrawLine
componentGC 0.000000 setForeground
componentGC 106 91 108 96 psDrawLine
componentGC 0.000000 setForeground
componentGC 106 93 106 91 psDrawLine
componentGC 0.000000 setForeground
componentGC 107 92 106 91 psDrawLine
componentGC 0.000000 setForeground
componentGC 110 94 112 99 psDrawLine
componentGC 0.000000 setForeground
componentGC 110 96 110 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 111 95 110 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 115 97 117 103 psDrawLine
componentGC 0.000000 setForeground
componentGC 115 99 115 97 psDrawLine
componentGC 0.000000 setForeground
componentGC 116 98 115 97 psDrawLine
componentGC 0.000000 setForeground
componentGC 119 100 121 106 psDrawLine
componentGC 0.000000 setForeground
componentGC 119 102 119 100 psDrawLine
componentGC 0.000000 setForeground
componentGC 121 102 119 100 psDrawLine
componentGC 0.000000 setForeground
componentGC 124 104 126 109 psDrawLine
componentGC 0.000000 setForeground
componentGC 124 105 124 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 125 105 124 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 129 107 131 112 psDrawLine
componentGC 0.000000 setForeground
componentGC 129 108 129 107 psDrawLine
componentGC 0.000000 setForeground
componentGC 130 108 129 107 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 110 136 116 psDrawLine
componentGC 0.000000 setForeground
componentGC 133 111 134 110 psDrawLine
componentGC 0.000000 setForeground
componentGC 135 111 134 110 psDrawLine
componentGC 0.000000 setForeground
componentGC 138 113 141 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 138 115 138 113 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 115 138 113 psDrawLine
componentGC 0.000000 setForeground
componentGC 143 117 145 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 143 118 143 117 psDrawLine
componentGC 0.000000 setForeground
componentGC 144 118 143 117 psDrawLine
componentGC 0.000000 setForeground
componentGC 146 120 151 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 146 122 146 120 psDrawLine
componentGC 0.000000 setForeground
componentGC 147 121 146 120 psDrawLine
componentGC 0.000000 setForeground
componentGC 142 131 156 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 145 131 142 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 145 130 142 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 143 161 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 161 141 159 143 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 141 159 143 psDrawLine
componentGC 0.000000 setForeground
componentGC 175 140 166 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 173 139 175 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 172 140 175 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 181 142 171 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 179 141 181 142 psDrawLine
componentGC 0.000000 setForeground
componentGC 178 142 181 142 psDrawLine
componentGC 0.000000 setForeground
componentGC 186 146 177 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 184 145 186 146 psDrawLine
componentGC 0.000000 setForeground
componentGC 184 146 186 146 psDrawLine
componentGC 0.000000 setForeground
componentGC 192 150 182 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 190 149 192 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 189 150 192 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 197 154 188 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 195 153 197 154 psDrawLine
componentGC 0.000000 setForeground
componentGC 195 154 197 154 psDrawLine
componentGC 0.000000 setForeground
componentGC 203 158 194 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 201 157 203 158 psDrawLine
componentGC 0.000000 setForeground
componentGC 201 158 203 158 psDrawLine
componentGC 0.000000 setForeground
componentGC 209 162 199 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 207 161 209 162 psDrawLine
componentGC 0.000000 setForeground
componentGC 207 162 209 162 psDrawLine
componentGC 0.000000 setForeground
componentGC 215 166 205 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 213 165 215 166 psDrawLine
componentGC 0.000000 setForeground
componentGC 212 166 215 166 psDrawLine
componentGC 0.000000 setForeground
componentGC 221 170 211 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 219 169 221 170 psDrawLine
componentGC 0.000000 setForeground
componentGC 218 170 221 170 psDrawLine
componentGC 0.000000 setForeground
componentGC 227 174 217 172 psDrawLine
componentGC 0.000000 setForeground
componentGC 225 173 227 174 psDrawLine
componentGC 0.000000 setForeground
componentGC 224 174 227 174 psDrawLine
componentGC 0.000000 setForeground
componentGC 233 178 223 176 psDrawLine
componentGC 0.000000 setForeground
componentGC 231 177 233 178 psDrawLine
componentGC 0.000000 setForeground
componentGC 230 178 233 178 psDrawLine
componentGC 0.000000 setForeground
componentGC 239 183 230 181 psDrawLine
componentGC 0.000000 setForeground
componentGC 237 182 239 183 psDrawLine
componentGC 0.000000 setForeground
componentGC 237 183 239 183 psDrawLine
componentGC 0.000000 setForeground
componentGC 92 89 94 93 psDrawLine
componentGC 0.000000 setForeground
componentGC 92 90 92 89 psDrawLine
componentGC 0.000000 setForeground
componentGC 93 90 92 89 psDrawLine
componentGC 0.000000 setForeground
componentGC 96 92 98 96 psDrawLine
componentGC 0.000000 setForeground
componentGC 96 93 96 92 psDrawLine
componentGC 0.000000 setForeground
componentGC 97 93 96 92 psDrawLine
componentGC 0.000000 setForeground
componentGC 101 94 102 99 psDrawLine
componentGC 0.000000 setForeground
componentGC 101 96 101 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 102 96 101 94 psDrawLine
componentGC 0.000000 setForeground
componentGC 106 97 107 103 psDrawLine
componentGC 0.000000 setForeground
componentGC 105 99 106 97 psDrawLine
componentGC 0.000000 setForeground
componentGC 107 98 106 97 psDrawLine
componentGC 0.000000 setForeground
componentGC 110 100 112 106 psDrawLine
componentGC 0.000000 setForeground
componentGC 110 102 110 100 psDrawLine
componentGC 0.000000 setForeground
componentGC 111 102 110 100 psDrawLine
componentGC 0.000000 setForeground
componentGC 114 103 116 109 psDrawLine
componentGC 0.000000 setForeground
componentGC 114 105 114 103 psDrawLine
componentGC 0.000000 setForeground
componentGC 115 105 114 103 psDrawLine
componentGC 0.000000 setForeground
componentGC 119 107 121 112 psDrawLine
componentGC 0.000000 setForeground
componentGC 119 108 119 107 psDrawLine
componentGC 0.000000 setForeground
componentGC 120 108 119 107 psDrawLine
componentGC 0.000000 setForeground
componentGC 124 110 126 116 psDrawLine
componentGC 0.000000 setForeground
componentGC 124 111 124 110 psDrawLine
componentGC 0.000000 setForeground
componentGC 125 111 124 110 psDrawLine
componentGC 0.000000 setForeground
componentGC 128 113 131 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 128 115 128 113 psDrawLine
componentGC 0.000000 setForeground
componentGC 130 115 128 113 psDrawLine
componentGC 0.000000 setForeground
componentGC 133 117 135 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 133 118 133 117 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 118 133 117 psDrawLine
componentGC 0.000000 setForeground
componentGC 139 121 140 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 139 122 139 121 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 122 139 121 psDrawLine
componentGC 0.000000 setForeground
componentGC 147 119 145 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 145 121 147 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 148 121 147 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 126 116 151 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 130 121 126 116 psDrawLine
componentGC 0.000000 setForeground
componentGC 133 118 126 116 psDrawLine
componentGC 0.000000 setForeground
componentGC 183 156 156 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 178 150 183 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 174 153 183 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 177 140 161 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 173 139 177 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 173 141 177 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 175 145 166 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 173 145 175 145 psDrawLine
componentGC 0.000000 setForeground
componentGC 173 145 175 145 psDrawLine
componentGC 0.000000 setForeground
componentGC 181 150 172 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 179 149 181 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 179 150 181 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 187 154 177 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 185 153 187 154 psDrawLine
componentGC 0.000000 setForeground
componentGC 184 154 187 154 psDrawLine
componentGC 0.000000 setForeground
componentGC 192 158 183 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 190 157 192 158 psDrawLine
componentGC 0.000000 setForeground
componentGC 190 158 192 158 psDrawLine
componentGC 0.000000 setForeground
componentGC 198 162 189 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 196 161 198 162 psDrawLine
componentGC 0.000000 setForeground
componentGC 196 162 198 162 psDrawLine
componentGC 0.000000 setForeground
componentGC 204 166 194 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 202 165 204 166 psDrawLine
componentGC 0.000000 setForeground
componentGC 202 166 204 166 psDrawLine
componentGC 0.000000 setForeground
componentGC 210 170 200 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 208 169 210 170 psDrawLine
componentGC 0.000000 setForeground
componentGC 207 170 210 170 psDrawLine
componentGC 0.000000 setForeground
componentGC 216 174 206 172 psDrawLine
componentGC 0.000000 setForeground
componentGC 214 173 216 174 psDrawLine
componentGC 0.000000 setForeground
componentGC 213 174 216 174 psDrawLine
componentGC 0.000000 setForeground
componentGC 221 178 212 176 psDrawLine
componentGC 0.000000 setForeground
componentGC 219 177 221 178 psDrawLine
componentGC 0.000000 setForeground
componentGC 219 178 221 178 psDrawLine
componentGC 0.000000 setForeground
componentGC 227 183 218 181 psDrawLine
componentGC 0.000000 setForeground
componentGC 225 182 227 183 psDrawLine
componentGC 0.000000 setForeground
componentGC 225 183 227 183 psDrawLine
componentGC 0.000000 setForeground
componentGC 234 187 225 185 psDrawLine
componentGC 0.000000 setForeground
componentGC 232 186 234 187 psDrawLine
componentGC 0.000000 setForeground
componentGC 231 187 234 187 psDrawLine
componentGC 0.000000 setForeground
componentGC 87 92 88 96 psDrawLine
componentGC 0.000000 setForeground
componentGC 87 93 87 92 psDrawLine
componentGC 0.000000 setForeground
componentGC 88 93 87 92 psDrawLine
componentGC 0.000000 setForeground
componentGC 92 95 93 99 psDrawLine
componentGC 0.000000 setForeground
componentGC 91 96 92 95 psDrawLine
componentGC 0.000000 setForeground
componentGC 92 96 92 95 psDrawLine
componentGC 0.000000 setForeground
componentGC 96 98 97 103 psDrawLine
componentGC 0.000000 setForeground
componentGC 96 99 96 98 psDrawLine
componentGC 0.000000 setForeground
componentGC 97 99 96 98 psDrawLine
componentGC 0.000000 setForeground
componentGC 101 100 102 106 psDrawLine
componentGC 0.000000 setForeground
componentGC 100 102 101 100 psDrawLine
componentGC 0.000000 setForeground
componentGC 102 102 101 100 psDrawLine
componentGC 0.000000 setForeground
componentGC 105 103 106 109 psDrawLine
componentGC 0.000000 setForeground
componentGC 105 105 105 103 psDrawLine
componentGC 0.000000 setForeground
componentGC 106 105 105 103 psDrawLine
componentGC 0.000000 setForeground
componentGC 109 107 111 112 psDrawLine
componentGC 0.000000 setForeground
componentGC 109 108 109 107 psDrawLine
componentGC 0.000000 setForeground
componentGC 110 108 109 107 psDrawLine
componentGC 0.000000 setForeground
componentGC 114 110 116 116 psDrawLine
componentGC 0.000000 setForeground
componentGC 114 112 114 110 psDrawLine
componentGC 0.000000 setForeground
componentGC 115 111 114 110 psDrawLine
componentGC 0.000000 setForeground
componentGC 119 113 120 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 119 115 119 113 psDrawLine
componentGC 0.000000 setForeground
componentGC 120 115 119 113 psDrawLine
componentGC 0.000000 setForeground
componentGC 123 117 125 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 123 118 123 117 psDrawLine
componentGC 0.000000 setForeground
componentGC 124 118 123 117 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 122 130 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 133 123 134 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 123 134 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 138 133 135 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 138 132 138 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 137 132 138 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 155 132 140 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 151 131 155 132 psDrawLine
componentGC 0.000000 setForeground
componentGC 151 133 155 132 psDrawLine
componentGC 0.000000 setForeground
componentGC 172 156 145 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 168 150 172 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 163 153 172 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 125 123 151 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 129 128 125 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 133 125 125 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 134 156 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 156 136 158 134 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 136 158 134 psDrawLine
componentGC 0.000000 setForeground
componentGC 156 146 161 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 157 147 156 146 psDrawLine
componentGC 0.000000 setForeground
componentGC 157 146 156 146 psDrawLine
componentGC 0.000000 setForeground
componentGC 172 149 167 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 171 149 172 149 psDrawLine
componentGC 0.000000 setForeground
componentGC 171 150 172 149 psDrawLine
componentGC 0.000000 setForeground
componentGC 182 158 172 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 180 157 182 158 psDrawLine
componentGC 0.000000 setForeground
componentGC 179 158 182 158 psDrawLine
componentGC 0.000000 setForeground
componentGC 187 161 178 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 185 160 187 161 psDrawLine
componentGC 0.000000 setForeground
componentGC 185 161 187 161 psDrawLine
componentGC 0.000000 setForeground
componentGC 193 166 183 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 191 165 193 166 psDrawLine
componentGC 0.000000 setForeground
componentGC 190 166 193 166 psDrawLine
componentGC 0.000000 setForeground
componentGC 199 170 189 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 197 169 199 170 psDrawLine
componentGC 0.000000 setForeground
componentGC 197 170 199 170 psDrawLine
componentGC 0.000000 setForeground
componentGC 205 174 195 172 psDrawLine
componentGC 0.000000 setForeground
componentGC 203 173 205 174 psDrawLine
componentGC 0.000000 setForeground
componentGC 203 174 205 174 psDrawLine
componentGC 0.000000 setForeground
componentGC 211 178 201 176 psDrawLine
componentGC 0.000000 setForeground
componentGC 208 177 211 178 psDrawLine
componentGC 0.000000 setForeground
componentGC 208 178 211 178 psDrawLine
componentGC 0.000000 setForeground
componentGC 216 182 207 181 psDrawLine
componentGC 0.000000 setForeground
componentGC 214 181 216 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 214 182 216 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 222 187 213 185 psDrawLine
componentGC 0.000000 setForeground
componentGC 220 186 222 187 psDrawLine
componentGC 0.000000 setForeground
componentGC 220 187 222 187 psDrawLine
componentGC 0.000000 setForeground
componentGC 228 192 219 189 psDrawLine
componentGC 0.000000 setForeground
componentGC 226 191 228 192 psDrawLine
componentGC 0.000000 setForeground
componentGC 226 192 228 192 psDrawLine
componentGC 0.000000 setForeground
componentGC 82 95 83 99 psDrawLine
componentGC 0.000000 setForeground
componentGC 82 96 82 95 psDrawLine
componentGC 0.000000 setForeground
componentGC 83 96 82 95 psDrawLine
componentGC 0.000000 setForeground
componentGC 87 98 88 103 psDrawLine
componentGC 0.000000 setForeground
componentGC 86 99 87 98 psDrawLine
componentGC 0.000000 setForeground
componentGC 87 99 87 98 psDrawLine
componentGC 0.000000 setForeground
componentGC 92 101 92 106 psDrawLine
componentGC 0.000000 setForeground
componentGC 91 102 92 101 psDrawLine
componentGC 0.000000 setForeground
componentGC 92 102 92 101 psDrawLine
componentGC 0.000000 setForeground
componentGC 97 104 97 109 psDrawLine
componentGC 0.000000 setForeground
componentGC 96 105 97 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 97 105 97 104 psDrawLine
componentGC 0.000000 setForeground
componentGC 100 106 101 112 psDrawLine
componentGC 0.000000 setForeground
componentGC 100 107 100 106 psDrawLine
componentGC 0.000000 setForeground
componentGC 101 107 100 106 psDrawLine
componentGC 0.000000 setForeground
componentGC 103 109 106 116 psDrawLine
componentGC 0.000000 setForeground
componentGC 103 111 103 109 psDrawLine
componentGC 0.000000 setForeground
componentGC 104 111 103 109 psDrawLine
componentGC 0.000000 setForeground
componentGC 107 114 110 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 107 116 107 114 psDrawLine
componentGC 0.000000 setForeground
componentGC 109 115 107 114 psDrawLine
componentGC 0.000000 setForeground
componentGC 116 118 115 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 115 119 116 118 psDrawLine
componentGC 0.000000 setForeground
componentGC 116 119 116 118 psDrawLine
componentGC 0.000000 setForeground
componentGC 120 114 120 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 119 117 120 114 psDrawLine
componentGC 0.000000 setForeground
componentGC 121 117 120 114 psDrawLine
componentGC 0.000000 setForeground
componentGC 103 148 125 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 111 145 103 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 107 142 103 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 139 135 130 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 137 134 139 135 psDrawLine
componentGC 0.000000 setForeground
componentGC 137 135 139 135 psDrawLine
componentGC 0.000000 setForeground
componentGC 141 140 135 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 138 141 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 139 141 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 136 151 140 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 138 149 136 151 psDrawLine
componentGC 0.000000 setForeground
componentGC 136 149 136 151 psDrawLine
componentGC 0.000000 setForeground
componentGC 130 147 145 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 147 130 147 psDrawLine
componentGC 0.000000 setForeground
componentGC 133 145 130 147 psDrawLine
componentGC 0.000000 setForeground
componentGC 147 143 151 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 147 145 147 143 psDrawLine
componentGC 0.000000 setForeground
componentGC 148 144 147 143 psDrawLine
componentGC 0.000000 setForeground
componentGC 153 145 156 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 153 147 153 145 psDrawLine
componentGC 0.000000 setForeground
componentGC 155 147 153 145 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 172 161 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 142 169 134 172 psDrawLine
componentGC 0.000000 setForeground
componentGC 139 166 134 172 psDrawLine
componentGC 0.000000 setForeground
componentGC 186 160 167 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 181 159 186 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 181 161 186 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 180 164 172 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 179 163 180 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 179 164 180 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 186 171 178 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 185 170 186 171 psDrawLine
componentGC 0.000000 setForeground
componentGC 184 171 186 171 psDrawLine
componentGC 0.000000 setForeground
componentGC 195 175 184 172 psDrawLine
componentGC 0.000000 setForeground
componentGC 193 174 195 175 psDrawLine
componentGC 0.000000 setForeground
componentGC 192 175 195 175 psDrawLine
componentGC 0.000000 setForeground
componentGC 201 177 190 176 psDrawLine
componentGC 0.000000 setForeground
componentGC 198 177 201 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 198 178 201 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 206 181 196 181 psDrawLine
componentGC 0.000000 setForeground
componentGC 203 180 206 181 psDrawLine
componentGC 0.000000 setForeground
componentGC 203 182 206 181 psDrawLine
componentGC 0.000000 setForeground
componentGC 211 186 202 185 psDrawLine
componentGC 0.000000 setForeground
componentGC 208 185 211 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 208 186 211 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 216 191 208 189 psDrawLine
componentGC 0.000000 setForeground
componentGC 214 190 216 191 psDrawLine
componentGC 0.000000 setForeground
componentGC 214 191 216 191 psDrawLine
componentGC 0.000000 setForeground
componentGC 222 196 214 194 psDrawLine
componentGC 0.000000 setForeground
componentGC 220 195 222 196 psDrawLine
componentGC 0.000000 setForeground
componentGC 220 196 222 196 psDrawLine
componentGC 0.000000 setForeground
componentGC 77 99 78 103 psDrawLine
componentGC 0.000000 setForeground
componentGC 76 100 77 99 psDrawLine
componentGC 0.000000 setForeground
componentGC 77 100 77 99 psDrawLine
componentGC 0.000000 setForeground
componentGC 82 102 82 106 psDrawLine
componentGC 0.000000 setForeground
componentGC 81 103 82 102 psDrawLine
componentGC 0.000000 setForeground
componentGC 82 103 82 102 psDrawLine
componentGC 0.000000 setForeground
componentGC 87 105 87 109 psDrawLine
componentGC 0.000000 setForeground
componentGC 87 106 87 105 psDrawLine
componentGC 0.000000 setForeground
componentGC 88 106 87 105 psDrawLine
componentGC 0.000000 setForeground
componentGC 93 107 91 112 psDrawLine
componentGC 0.000000 setForeground
componentGC 92 108 93 107 psDrawLine
componentGC 0.000000 setForeground
componentGC 93 108 93 107 psDrawLine
componentGC 0.000000 setForeground
componentGC 98 108 96 116 psDrawLine
componentGC 0.000000 setForeground
componentGC 96 110 98 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 98 110 98 108 psDrawLine
componentGC 0.000000 setForeground
componentGC 96 109 100 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 96 111 96 109 psDrawLine
componentGC 0.000000 setForeground
componentGC 99 111 96 109 psDrawLine
componentGC 0.000000 setForeground
componentGC 93 122 105 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 96 123 93 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 96 121 93 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 115 127 110 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 114 126 115 127 psDrawLine
componentGC 0.000000 setForeground
componentGC 113 127 115 127 psDrawLine
componentGC 0.000000 setForeground
componentGC 135 131 115 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 130 130 135 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 130 132 135 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 86 145 120 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 95 144 86 145 psDrawLine
componentGC 0.000000 setForeground
componentGC 93 140 86 145 psDrawLine
componentGC 0.000000 setForeground
componentGC 123 131 125 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 123 133 123 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 124 133 123 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 120 143 130 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 123 143 120 143 psDrawLine
componentGC 0.000000 setForeground
componentGC 122 142 120 143 psDrawLine
componentGC 0.000000 setForeground
componentGC 128 149 135 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 131 148 128 149 psDrawLine
componentGC 0.000000 setForeground
componentGC 129 148 128 149 psDrawLine
componentGC 0.000000 setForeground
componentGC 133 152 140 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 135 152 133 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 151 133 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 142 159 145 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 143 157 142 159 psDrawLine
componentGC 0.000000 setForeground
componentGC 142 157 142 159 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 157 151 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 157 156 159 157 psDrawLine
componentGC 0.000000 setForeground
componentGC 157 157 159 157 psDrawLine
componentGC 0.000000 setForeground
componentGC 138 186 156 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 145 181 138 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 179 138 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 148 162 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 152 159 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 161 152 159 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 166 164 167 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 166 165 166 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 167 165 166 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 175 182 173 172 psDrawLine
componentGC 0.000000 setForeground
componentGC 175 180 175 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 173 180 175 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 197 181 179 176 psDrawLine
componentGC 0.000000 setForeground
componentGC 193 179 197 181 psDrawLine
componentGC 0.000000 setForeground
componentGC 192 181 197 181 psDrawLine
componentGC 0.000000 setForeground
componentGC 198 180 184 181 psDrawLine
componentGC 0.000000 setForeground
componentGC 194 179 198 180 psDrawLine
componentGC 0.000000 setForeground
componentGC 195 181 198 180 psDrawLine
componentGC 0.000000 setForeground
componentGC 200 184 190 185 psDrawLine
componentGC 0.000000 setForeground
componentGC 197 184 200 184 psDrawLine
componentGC 0.000000 setForeground
componentGC 198 185 200 184 psDrawLine
componentGC 0.000000 setForeground
componentGC 204 189 196 189 psDrawLine
componentGC 0.000000 setForeground
componentGC 202 189 204 189 psDrawLine
componentGC 0.000000 setForeground
componentGC 202 190 204 189 psDrawLine
componentGC 0.000000 setForeground
componentGC 210 195 203 194 psDrawLine
componentGC 0.000000 setForeground
componentGC 208 194 210 195 psDrawLine
componentGC 0.000000 setForeground
componentGC 208 195 210 195 psDrawLine
componentGC 0.000000 setForeground
componentGC 216 200 209 198 psDrawLine
componentGC 0.000000 setForeground
componentGC 214 199 216 200 psDrawLine
componentGC 0.000000 setForeground
componentGC 214 200 216 200 psDrawLine
componentGC 0.000000 setForeground
componentGC 71 103 73 106 psDrawLine
componentGC 0.000000 setForeground
componentGC 71 104 71 103 psDrawLine
componentGC 0.000000 setForeground
componentGC 72 103 71 103 psDrawLine
componentGC 0.000000 setForeground
componentGC 77 106 77 109 psDrawLine
componentGC 0.000000 setForeground
componentGC 76 107 77 106 psDrawLine
componentGC 0.000000 setForeground
componentGC 77 107 77 106 psDrawLine
componentGC 0.000000 setForeground
componentGC 83 109 81 112 psDrawLine
componentGC 0.000000 setForeground
componentGC 82 110 83 109 psDrawLine
componentGC 0.000000 setForeground
componentGC 83 110 83 109 psDrawLine
componentGC 0.000000 setForeground
componentGC 90 111 86 116 psDrawLine
componentGC 0.000000 setForeground
componentGC 88 112 90 111 psDrawLine
componentGC 0.000000 setForeground
componentGC 89 113 90 111 psDrawLine
componentGC 0.000000 setForeground
componentGC 99 112 90 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 96 113 99 112 psDrawLine
componentGC 0.000000 setForeground
componentGC 98 114 99 112 psDrawLine
componentGC 0.000000 setForeground
componentGC 114 102 95 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 107 106 114 102 psDrawLine
componentGC 0.000000 setForeground
componentGC 112 108 114 102 psDrawLine
componentGC 0.000000 setForeground
componentGC 72 144 100 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 81 141 72 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 77 139 72 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 118 127 105 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 114 127 118 127 psDrawLine
componentGC 0.000000 setForeground
componentGC 115 128 118 127 psDrawLine
componentGC 0.000000 setForeground
componentGC 112 137 109 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 112 136 112 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 111 137 112 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 107 144 114 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 109 143 107 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 108 142 107 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 112 145 119 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 114 144 112 145 psDrawLine
componentGC 0.000000 setForeground
componentGC 113 143 112 145 psDrawLine
componentGC 0.000000 setForeground
componentGC 117 149 124 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 119 148 117 149 psDrawLine
componentGC 0.000000 setForeground
componentGC 118 148 117 149 psDrawLine
componentGC 0.000000 setForeground
componentGC 122 153 129 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 125 152 122 153 psDrawLine
componentGC 0.000000 setForeground
componentGC 124 151 122 153 psDrawLine
componentGC 0.000000 setForeground
componentGC 128 157 135 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 130 156 128 157 psDrawLine
componentGC 0.000000 setForeground
componentGC 129 155 128 157 psDrawLine
componentGC 0.000000 setForeground
componentGC 133 161 140 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 135 160 133 161 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 159 133 161 psDrawLine
componentGC 0.000000 setForeground
componentGC 139 165 145 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 141 164 139 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 163 139 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 169 151 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 143 169 140 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 142 167 140 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 150 166 156 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 151 167 150 166 psDrawLine
componentGC 0.000000 setForeground
componentGC 151 166 150 166 psDrawLine
componentGC 0.000000 setForeground
componentGC 166 162 162 172 psDrawLine
componentGC 0.000000 setForeground
componentGC 164 164 166 162 psDrawLine
componentGC 0.000000 setForeground
componentGC 166 164 166 162 psDrawLine
componentGC 0.000000 setForeground
componentGC 139 198 167 176 psDrawLine
componentGC 0.000000 setForeground
componentGC 148 194 139 198 psDrawLine
componentGC 0.000000 setForeground
componentGC 143 191 139 198 psDrawLine
componentGC 0.000000 setForeground
componentGC 207 166 173 181 psDrawLine
componentGC 0.000000 setForeground
componentGC 197 168 207 166 psDrawLine
componentGC 0.000000 setForeground
componentGC 200 172 207 166 psDrawLine
componentGC 0.000000 setForeground
componentGC 190 178 179 185 psDrawLine
componentGC 0.000000 setForeground
componentGC 187 179 190 178 psDrawLine
componentGC 0.000000 setForeground
componentGC 188 180 190 178 psDrawLine
componentGC 0.000000 setForeground
componentGC 192 186 185 189 psDrawLine
componentGC 0.000000 setForeground
componentGC 190 187 192 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 191 188 192 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 197 193 191 194 psDrawLine
componentGC 0.000000 setForeground
componentGC 196 193 197 193 psDrawLine
componentGC 0.000000 setForeground
componentGC 196 194 197 193 psDrawLine
componentGC 0.000000 setForeground
componentGC 203 199 197 198 psDrawLine
componentGC 0.000000 setForeground
componentGC 202 199 203 199 psDrawLine
componentGC 0.000000 setForeground
componentGC 202 199 203 199 psDrawLine
componentGC 0.000000 setForeground
componentGC 209 205 204 203 psDrawLine
componentGC 0.000000 setForeground
componentGC 208 204 209 205 psDrawLine
componentGC 0.000000 setForeground
componentGC 208 205 209 205 psDrawLine
componentGC 0.000000 setForeground
componentGC 65 107 67 109 psDrawLine
componentGC 0.000000 setForeground
componentGC 66 107 65 107 psDrawLine
componentGC 0.000000 setForeground
componentGC 66 107 65 107 psDrawLine
componentGC 0.000000 setForeground
componentGC 71 110 72 112 psDrawLine
componentGC 0.000000 setForeground
componentGC 71 111 71 110 psDrawLine
componentGC 0.000000 setForeground
componentGC 71 111 71 110 psDrawLine
componentGC 0.000000 setForeground
componentGC 77 114 76 116 psDrawLine
componentGC 0.000000 setForeground
componentGC 77 114 77 114 psDrawLine
componentGC 0.000000 setForeground
componentGC 77 114 77 114 psDrawLine
componentGC 0.000000 setForeground
componentGC 85 117 80 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 83 118 85 117 psDrawLine
componentGC 0.000000 setForeground
componentGC 84 118 85 117 psDrawLine
componentGC 0.000000 setForeground
componentGC 95 122 85 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 93 122 95 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 93 123 95 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 113 135 90 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 109 131 113 135 psDrawLine
componentGC 0.000000 setForeground
componentGC 106 134 113 135 psDrawLine
componentGC 0.000000 setForeground
componentGC 72 152 94 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 80 148 72 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 75 145 72 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 85 131 99 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 88 132 85 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 89 131 85 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 98 140 104 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 100 139 98 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 99 139 98 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 102 145 109 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 104 144 102 145 psDrawLine
componentGC 0.000000 setForeground
componentGC 103 144 102 145 psDrawLine
componentGC 0.000000 setForeground
componentGC 107 149 114 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 109 148 107 149 psDrawLine
componentGC 0.000000 setForeground
componentGC 108 147 107 149 psDrawLine
componentGC 0.000000 setForeground
componentGC 112 153 119 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 114 152 112 153 psDrawLine
componentGC 0.000000 setForeground
componentGC 113 151 112 153 psDrawLine
componentGC 0.000000 setForeground
componentGC 117 157 124 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 119 156 117 157 psDrawLine
componentGC 0.000000 setForeground
componentGC 118 155 117 157 psDrawLine
componentGC 0.000000 setForeground
componentGC 122 161 129 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 124 160 122 161 psDrawLine
componentGC 0.000000 setForeground
componentGC 123 159 122 161 psDrawLine
componentGC 0.000000 setForeground
componentGC 127 165 134 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 129 164 127 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 128 163 127 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 133 169 140 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 135 168 133 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 167 133 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 138 173 145 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 172 138 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 139 171 138 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 146 176 151 172 psDrawLine
componentGC 0.000000 setForeground
componentGC 148 176 146 176 psDrawLine
componentGC 0.000000 setForeground
componentGC 147 175 146 176 psDrawLine
componentGC 0.000000 setForeground
componentGC 160 188 156 176 psDrawLine
componentGC 0.000000 setForeground
componentGC 160 185 160 188 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 186 160 188 psDrawLine
componentGC 0.000000 setForeground
componentGC 127 197 162 181 psDrawLine
componentGC 0.000000 setForeground
componentGC 137 195 127 197 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 191 127 197 psDrawLine
componentGC 0.000000 setForeground
componentGC 154 165 168 185 psDrawLine
componentGC 0.000000 setForeground
componentGC 155 170 154 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 169 154 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 174 181 174 189 psDrawLine
componentGC 0.000000 setForeground
componentGC 173 183 174 181 psDrawLine
componentGC 0.000000 setForeground
componentGC 175 183 174 181 psDrawLine
componentGC 0.000000 setForeground
componentGC 182 190 180 194 psDrawLine
componentGC 0.000000 setForeground
componentGC 181 191 182 190 psDrawLine
componentGC 0.000000 setForeground
componentGC 182 191 182 190 psDrawLine
componentGC 0.000000 setForeground
componentGC 189 198 186 198 psDrawLine
componentGC 0.000000 setForeground
componentGC 188 198 189 198 psDrawLine
componentGC 0.000000 setForeground
componentGC 188 198 189 198 psDrawLine
componentGC 0.000000 setForeground
componentGC 196 204 192 203 psDrawLine
componentGC 0.000000 setForeground
componentGC 195 203 196 204 psDrawLine
componentGC 0.000000 setForeground
componentGC 195 204 196 204 psDrawLine
componentGC 0.000000 setForeground
componentGC 203 210 198 208 psDrawLine
componentGC 0.000000 setForeground
componentGC 202 209 203 210 psDrawLine
componentGC 0.000000 setForeground
componentGC 201 210 203 210 psDrawLine
componentGC 0.000000 setForeground
componentGC 59 111 62 112 psDrawLine
componentGC 0.000000 setForeground
componentGC 60 111 59 111 psDrawLine
componentGC 0.000000 setForeground
componentGC 60 111 59 111 psDrawLine
componentGC 0.000000 setForeground
componentGC 65 114 66 116 psDrawLine
componentGC 0.000000 setForeground
componentGC 65 115 65 114 psDrawLine
componentGC 0.000000 setForeground
componentGC 65 115 65 114 psDrawLine
componentGC 0.000000 setForeground
componentGC 71 118 70 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 71 119 71 118 psDrawLine
componentGC 0.000000 setForeground
componentGC 71 119 71 118 psDrawLine
componentGC 0.000000 setForeground
componentGC 77 123 75 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 77 123 77 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 76 123 77 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 84 129 80 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 83 128 84 129 psDrawLine
componentGC 0.000000 setForeground
componentGC 82 129 84 129 psDrawLine
componentGC 0.000000 setForeground
componentGC 87 138 84 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 87 136 87 138 psDrawLine
componentGC 0.000000 setForeground
componentGC 85 136 87 138 psDrawLine
componentGC 0.000000 setForeground
componentGC 81 144 89 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 84 142 81 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 82 141 81 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 83 143 94 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 86 142 83 143 psDrawLine
componentGC 0.000000 setForeground
componentGC 85 141 83 143 psDrawLine
componentGC 0.000000 setForeground
componentGC 90 145 98 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 93 144 90 145 psDrawLine
componentGC 0.000000 setForeground
componentGC 92 143 90 145 psDrawLine
componentGC 0.000000 setForeground
componentGC 96 149 103 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 98 148 96 149 psDrawLine
componentGC 0.000000 setForeground
componentGC 97 147 96 149 psDrawLine
componentGC 0.000000 setForeground
componentGC 101 153 108 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 103 152 101 153 psDrawLine
componentGC 0.000000 setForeground
componentGC 102 151 101 153 psDrawLine
componentGC 0.000000 setForeground
componentGC 106 157 113 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 108 156 106 157 psDrawLine
componentGC 0.000000 setForeground
componentGC 107 155 106 157 psDrawLine
componentGC 0.000000 setForeground
componentGC 111 161 118 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 113 160 111 161 psDrawLine
componentGC 0.000000 setForeground
componentGC 112 159 111 161 psDrawLine
componentGC 0.000000 setForeground
componentGC 116 165 123 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 119 164 116 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 118 163 116 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 122 169 129 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 124 168 122 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 123 167 122 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 127 173 134 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 129 172 127 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 128 171 127 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 133 177 140 172 psDrawLine
componentGC 0.000000 setForeground
componentGC 135 177 133 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 176 133 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 138 182 145 176 psDrawLine
componentGC 0.000000 setForeground
componentGC 141 181 138 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 139 181 138 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 142 189 151 181 psDrawLine
componentGC 0.000000 setForeground
componentGC 145 188 142 189 psDrawLine
componentGC 0.000000 setForeground
componentGC 143 186 142 189 psDrawLine
componentGC 0.000000 setForeground
componentGC 139 190 156 185 psDrawLine
componentGC 0.000000 setForeground
componentGC 144 190 139 190 psDrawLine
componentGC 0.000000 setForeground
componentGC 143 188 139 190 psDrawLine
componentGC 0.000000 setForeground
componentGC 149 186 162 189 psDrawLine
componentGC 0.000000 setForeground
componentGC 152 188 149 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 152 186 149 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 163 190 168 194 psDrawLine
componentGC 0.000000 setForeground
componentGC 164 191 163 190 psDrawLine
componentGC 0.000000 setForeground
componentGC 165 190 163 190 psDrawLine
componentGC 0.000000 setForeground
componentGC 173 196 174 198 psDrawLine
componentGC 0.000000 setForeground
componentGC 173 197 173 196 psDrawLine
componentGC 0.000000 setForeground
componentGC 174 197 173 196 psDrawLine
componentGC 0.000000 setForeground
componentGC 181 203 180 203 psDrawLine
componentGC 0.000000 setForeground
componentGC 181 203 181 203 psDrawLine
componentGC 0.000000 setForeground
componentGC 181 203 181 203 psDrawLine
componentGC 0.000000 setForeground
componentGC 189 209 186 208 psDrawLine
componentGC 0.000000 setForeground
componentGC 188 209 189 209 psDrawLine
componentGC 0.000000 setForeground
componentGC 188 209 189 209 psDrawLine
componentGC 0.000000 setForeground
componentGC 196 215 192 213 psDrawLine
componentGC 0.000000 setForeground
componentGC 195 214 196 215 psDrawLine
componentGC 0.000000 setForeground
componentGC 195 215 196 215 psDrawLine
componentGC 0.000000 setForeground
componentGC 53 115 56 116 psDrawLine
componentGC 0.000000 setForeground
componentGC 54 115 53 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 54 115 53 115 psDrawLine
componentGC 0.000000 setForeground
componentGC 58 119 60 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 59 119 58 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 59 119 58 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 64 123 65 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 64 123 64 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 64 123 64 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 69 128 69 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 69 127 69 128 psDrawLine
componentGC 0.000000 setForeground
componentGC 69 127 69 128 psDrawLine
componentGC 0.000000 setForeground
componentGC 74 133 74 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 74 132 74 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 73 132 74 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 77 139 78 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 78 138 77 139 psDrawLine
componentGC 0.000000 setForeground
componentGC 76 137 77 139 psDrawLine
componentGC 0.000000 setForeground
componentGC 78 144 83 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 80 142 78 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 78 142 78 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 80 146 88 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 83 145 80 146 psDrawLine
componentGC 0.000000 setForeground
componentGC 82 145 80 146 psDrawLine
componentGC 0.000000 setForeground
componentGC 85 149 93 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 87 148 85 149 psDrawLine
componentGC 0.000000 setForeground
componentGC 86 148 85 149 psDrawLine
componentGC 0.000000 setForeground
componentGC 90 153 98 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 92 152 90 153 psDrawLine
componentGC 0.000000 setForeground
componentGC 92 151 90 153 psDrawLine
componentGC 0.000000 setForeground
componentGC 95 157 103 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 97 156 95 157 psDrawLine
componentGC 0.000000 setForeground
componentGC 97 155 95 157 psDrawLine
componentGC 0.000000 setForeground
componentGC 100 161 108 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 103 160 100 161 psDrawLine
componentGC 0.000000 setForeground
componentGC 102 159 100 161 psDrawLine
componentGC 0.000000 setForeground
componentGC 105 165 113 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 108 164 105 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 107 163 105 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 111 169 118 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 113 168 111 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 112 167 111 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 116 173 123 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 118 172 116 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 117 171 116 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 121 177 128 172 psDrawLine
componentGC 0.000000 setForeground
componentGC 123 177 121 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 122 176 121 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 127 182 134 176 psDrawLine
componentGC 0.000000 setForeground
componentGC 129 181 127 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 128 180 127 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 132 186 139 181 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 185 132 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 133 184 132 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 136 191 145 185 psDrawLine
componentGC 0.000000 setForeground
componentGC 139 190 136 191 psDrawLine
componentGC 0.000000 setForeground
componentGC 137 189 136 191 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 193 151 189 psDrawLine
componentGC 0.000000 setForeground
componentGC 143 193 140 193 psDrawLine
componentGC 0.000000 setForeground
componentGC 142 192 140 193 psDrawLine
componentGC 0.000000 setForeground
componentGC 147 195 156 194 psDrawLine
componentGC 0.000000 setForeground
componentGC 150 195 147 195 psDrawLine
componentGC 0.000000 setForeground
componentGC 149 194 147 195 psDrawLine
componentGC 0.000000 setForeground
componentGC 157 198 162 198 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 199 157 198 psDrawLine
componentGC 0.000000 setForeground
componentGC 158 198 157 198 psDrawLine
componentGC 0.000000 setForeground
componentGC 166 203 168 203 psDrawLine
componentGC 0.000000 setForeground
componentGC 166 203 166 203 psDrawLine
componentGC 0.000000 setForeground
componentGC 166 203 166 203 psDrawLine
componentGC 0.000000 setForeground
componentGC 174 209 174 208 psDrawLine
componentGC 0.000000 setForeground
componentGC 174 209 174 209 psDrawLine
componentGC 0.000000 setForeground
componentGC 174 209 174 209 psDrawLine
componentGC 0.000000 setForeground
componentGC 182 215 181 213 psDrawLine
componentGC 0.000000 setForeground
componentGC 182 214 182 215 psDrawLine
componentGC 0.000000 setForeground
componentGC 181 214 182 215 psDrawLine
componentGC 0.000000 setForeground
componentGC 189 221 187 218 psDrawLine
componentGC 0.000000 setForeground
componentGC 189 220 189 221 psDrawLine
componentGC 0.000000 setForeground
componentGC 188 220 189 221 psDrawLine
componentGC 0.000000 setForeground
componentGC 47 119 50 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 47 119 47 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 48 118 47 119 psDrawLine
componentGC 0.000000 setForeground
componentGC 51 123 55 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 52 123 51 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 52 122 51 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 56 127 59 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 57 127 56 127 psDrawLine
componentGC 0.000000 setForeground
componentGC 57 127 56 127 psDrawLine
componentGC 0.000000 setForeground
componentGC 61 131 64 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 62 131 61 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 62 131 61 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 65 136 68 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 66 136 65 136 psDrawLine
componentGC 0.000000 setForeground
componentGC 66 135 65 136 psDrawLine
componentGC 0.000000 setForeground
componentGC 69 141 73 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 70 140 69 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 69 140 69 141 psDrawLine
componentGC 0.000000 setForeground
componentGC 72 146 77 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 74 145 72 146 psDrawLine
componentGC 0.000000 setForeground
componentGC 73 144 72 146 psDrawLine
componentGC 0.000000 setForeground
componentGC 76 150 82 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 78 149 76 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 77 148 76 150 psDrawLine
componentGC 0.000000 setForeground
componentGC 80 153 87 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 82 152 80 153 psDrawLine
componentGC 0.000000 setForeground
componentGC 81 152 80 153 psDrawLine
componentGC 0.000000 setForeground
componentGC 85 157 92 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 87 156 85 157 psDrawLine
componentGC 0.000000 setForeground
componentGC 86 155 85 157 psDrawLine
componentGC 0.000000 setForeground
componentGC 89 161 97 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 92 160 89 161 psDrawLine
componentGC 0.000000 setForeground
componentGC 91 159 89 161 psDrawLine
componentGC 0.000000 setForeground
componentGC 94 165 102 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 97 164 94 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 96 163 94 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 100 169 107 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 102 168 100 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 101 167 100 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 105 173 112 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 107 172 105 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 106 171 105 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 110 177 117 172 psDrawLine
componentGC 0.000000 setForeground
componentGC 112 176 110 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 111 176 110 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 115 182 123 176 psDrawLine
componentGC 0.000000 setForeground
componentGC 118 181 115 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 117 180 115 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 121 186 128 181 psDrawLine
componentGC 0.000000 setForeground
componentGC 123 185 121 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 122 184 121 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 126 190 134 185 psDrawLine
componentGC 0.000000 setForeground
componentGC 128 189 126 190 psDrawLine
componentGC 0.000000 setForeground
componentGC 127 189 126 190 psDrawLine
componentGC 0.000000 setForeground
componentGC 131 194 139 189 psDrawLine
componentGC 0.000000 setForeground
componentGC 133 194 131 194 psDrawLine
componentGC 0.000000 setForeground
componentGC 133 193 131 194 psDrawLine
componentGC 0.000000 setForeground
componentGC 137 198 145 194 psDrawLine
componentGC 0.000000 setForeground
componentGC 139 197 137 198 psDrawLine
componentGC 0.000000 setForeground
componentGC 138 196 137 198 psDrawLine
componentGC 0.000000 setForeground
componentGC 143 201 151 198 psDrawLine
componentGC 0.000000 setForeground
componentGC 145 201 143 201 psDrawLine
componentGC 0.000000 setForeground
componentGC 145 200 143 201 psDrawLine
componentGC 0.000000 setForeground
componentGC 151 205 157 203 psDrawLine
componentGC 0.000000 setForeground
componentGC 153 205 151 205 psDrawLine
componentGC 0.000000 setForeground
componentGC 152 204 151 205 psDrawLine
componentGC 0.000000 setForeground
componentGC 159 210 163 208 psDrawLine
componentGC 0.000000 setForeground
componentGC 160 210 159 210 psDrawLine
componentGC 0.000000 setForeground
componentGC 160 209 159 210 psDrawLine
componentGC 0.000000 setForeground
componentGC 167 215 169 213 psDrawLine
componentGC 0.000000 setForeground
componentGC 168 215 167 215 psDrawLine
componentGC 0.000000 setForeground
componentGC 167 214 167 215 psDrawLine
componentGC 0.000000 setForeground
componentGC 175 221 175 218 psDrawLine
componentGC 0.000000 setForeground
componentGC 175 220 175 221 psDrawLine
componentGC 0.000000 setForeground
componentGC 175 220 175 221 psDrawLine
componentGC 0.000000 setForeground
componentGC 182 227 181 222 psDrawLine
componentGC 0.000000 setForeground
componentGC 182 226 182 227 psDrawLine
componentGC 0.000000 setForeground
componentGC 182 226 182 227 psDrawLine
componentGC 0.000000 setForeground
componentGC 40 122 45 123 psDrawLine
componentGC 0.000000 setForeground
componentGC 41 123 40 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 41 122 40 122 psDrawLine
componentGC 0.000000 setForeground
componentGC 45 127 49 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 46 127 45 127 psDrawLine
componentGC 0.000000 setForeground
componentGC 46 126 45 127 psDrawLine
componentGC 0.000000 setForeground
componentGC 49 131 53 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 50 131 49 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 50 130 49 131 psDrawLine
componentGC 0.000000 setForeground
componentGC 54 135 58 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 55 135 54 135 psDrawLine
componentGC 0.000000 setForeground
componentGC 55 135 54 135 psDrawLine
componentGC 0.000000 setForeground
componentGC 58 140 62 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 59 139 58 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 59 139 58 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 62 144 67 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 64 144 62 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 63 143 62 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 66 149 72 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 68 148 66 149 psDrawLine
componentGC 0.000000 setForeground
componentGC 67 147 66 149 psDrawLine
componentGC 0.000000 setForeground
componentGC 70 153 76 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 72 152 70 153 psDrawLine
componentGC 0.000000 setForeground
componentGC 71 151 70 153 psDrawLine
componentGC 0.000000 setForeground
componentGC 74 157 81 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 76 156 74 157 psDrawLine
componentGC 0.000000 setForeground
componentGC 75 155 74 157 psDrawLine
componentGC 0.000000 setForeground
componentGC 79 161 86 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 81 160 79 161 psDrawLine
componentGC 0.000000 setForeground
componentGC 80 159 79 161 psDrawLine
componentGC 0.000000 setForeground
componentGC 84 165 91 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 86 164 84 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 85 163 84 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 88 169 96 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 91 168 88 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 90 167 88 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 94 173 101 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 96 172 94 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 95 171 94 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 99 177 106 172 psDrawLine
componentGC 0.000000 setForeground
componentGC 101 176 99 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 100 176 99 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 104 182 111 176 psDrawLine
componentGC 0.000000 setForeground
componentGC 106 181 104 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 105 180 104 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 109 186 117 181 psDrawLine
componentGC 0.000000 setForeground
componentGC 112 185 109 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 111 184 109 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 115 190 122 185 psDrawLine
componentGC 0.000000 setForeground
componentGC 117 189 115 190 psDrawLine
componentGC 0.000000 setForeground
componentGC 116 189 115 190 psDrawLine
componentGC 0.000000 setForeground
componentGC 120 195 128 189 psDrawLine
componentGC 0.000000 setForeground
componentGC 123 194 120 195 psDrawLine
componentGC 0.000000 setForeground
componentGC 122 193 120 195 psDrawLine
componentGC 0.000000 setForeground
componentGC 126 199 133 194 psDrawLine
componentGC 0.000000 setForeground
componentGC 128 198 126 199 psDrawLine
componentGC 0.000000 setForeground
componentGC 127 197 126 199 psDrawLine
componentGC 0.000000 setForeground
componentGC 132 203 139 198 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 202 132 203 psDrawLine
componentGC 0.000000 setForeground
componentGC 133 201 132 203 psDrawLine
componentGC 0.000000 setForeground
componentGC 139 207 145 203 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 206 139 207 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 206 139 207 psDrawLine
componentGC 0.000000 setForeground
componentGC 146 211 151 208 psDrawLine
componentGC 0.000000 setForeground
componentGC 147 211 146 211 psDrawLine
componentGC 0.000000 setForeground
componentGC 147 210 146 211 psDrawLine
componentGC 0.000000 setForeground
componentGC 153 216 157 213 psDrawLine
componentGC 0.000000 setForeground
componentGC 154 215 153 216 psDrawLine
componentGC 0.000000 setForeground
componentGC 154 215 153 216 psDrawLine
componentGC 0.000000 setForeground
componentGC 161 221 163 218 psDrawLine
componentGC 0.000000 setForeground
componentGC 162 221 161 221 psDrawLine
componentGC 0.000000 setForeground
componentGC 161 220 161 221 psDrawLine
componentGC 0.000000 setForeground
componentGC 168 227 169 222 psDrawLine
componentGC 0.000000 setForeground
componentGC 169 226 168 227 psDrawLine
componentGC 0.000000 setForeground
componentGC 168 226 168 227 psDrawLine
componentGC 0.000000 setForeground
componentGC 176 233 175 228 psDrawLine
componentGC 0.000000 setForeground
componentGC 176 231 176 233 psDrawLine
componentGC 0.000000 setForeground
componentGC 175 231 176 233 psDrawLine
componentGC 0.000000 setForeground
componentGC 33 126 39 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 34 127 33 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 35 126 33 126 psDrawLine
componentGC 0.000000 setForeground
componentGC 38 130 43 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 39 130 38 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 39 130 38 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 42 135 48 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 44 135 42 135 psDrawLine
componentGC 0.000000 setForeground
componentGC 43 134 42 135 psDrawLine
componentGC 0.000000 setForeground
componentGC 47 139 52 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 48 139 47 139 psDrawLine
componentGC 0.000000 setForeground
componentGC 48 138 47 139 psDrawLine
componentGC 0.000000 setForeground
componentGC 51 143 57 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 53 143 51 143 psDrawLine
componentGC 0.000000 setForeground
componentGC 52 142 51 143 psDrawLine
componentGC 0.000000 setForeground
componentGC 55 148 61 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 57 147 55 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 56 147 55 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 59 152 66 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 61 151 59 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 61 151 59 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 64 156 70 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 66 156 64 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 65 155 64 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 68 161 75 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 70 160 68 161 psDrawLine
componentGC 0.000000 setForeground
componentGC 69 159 68 161 psDrawLine
componentGC 0.000000 setForeground
componentGC 73 165 80 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 75 164 73 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 74 163 73 165 psDrawLine
componentGC 0.000000 setForeground
componentGC 77 169 85 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 80 168 77 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 79 167 77 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 82 173 90 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 85 172 82 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 84 171 82 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 87 177 95 172 psDrawLine
componentGC 0.000000 setForeground
componentGC 90 177 87 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 89 176 87 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 93 182 100 176 psDrawLine
componentGC 0.000000 setForeground
componentGC 95 181 93 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 94 180 93 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 98 186 106 181 psDrawLine
componentGC 0.000000 setForeground
componentGC 100 185 98 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 99 184 98 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 103 190 111 185 psDrawLine
componentGC 0.000000 setForeground
componentGC 106 190 103 190 psDrawLine
componentGC 0.000000 setForeground
componentGC 105 189 103 190 psDrawLine
componentGC 0.000000 setForeground
componentGC 109 195 116 189 psDrawLine
componentGC 0.000000 setForeground
componentGC 111 194 109 195 psDrawLine
componentGC 0.000000 setForeground
componentGC 110 193 109 195 psDrawLine
componentGC 0.000000 setForeground
componentGC 115 199 122 194 psDrawLine
componentGC 0.000000 setForeground
componentGC 117 198 115 199 psDrawLine
componentGC 0.000000 setForeground
componentGC 116 198 115 199 psDrawLine
componentGC 0.000000 setForeground
componentGC 120 204 127 198 psDrawLine
componentGC 0.000000 setForeground
componentGC 123 203 120 204 psDrawLine
componentGC 0.000000 setForeground
componentGC 122 202 120 204 psDrawLine
componentGC 0.000000 setForeground
componentGC 127 208 133 203 psDrawLine
componentGC 0.000000 setForeground
componentGC 129 207 127 208 psDrawLine
componentGC 0.000000 setForeground
componentGC 128 206 127 208 psDrawLine
componentGC 0.000000 setForeground
componentGC 133 213 139 208 psDrawLine
componentGC 0.000000 setForeground
componentGC 135 212 133 213 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 211 133 213 psDrawLine
componentGC 0.000000 setForeground
componentGC 140 217 145 213 psDrawLine
componentGC 0.000000 setForeground
componentGC 142 216 140 217 psDrawLine
componentGC 0.000000 setForeground
componentGC 141 216 140 217 psDrawLine
componentGC 0.000000 setForeground
componentGC 147 222 151 218 psDrawLine
componentGC 0.000000 setForeground
componentGC 148 221 147 222 psDrawLine
componentGC 0.000000 setForeground
componentGC 148 221 147 222 psDrawLine
componentGC 0.000000 setForeground
componentGC 154 227 157 222 psDrawLine
componentGC 0.000000 setForeground
componentGC 155 226 154 227 psDrawLine
componentGC 0.000000 setForeground
componentGC 154 226 154 227 psDrawLine
componentGC 0.000000 setForeground
componentGC 162 233 163 228 psDrawLine
componentGC 0.000000 setForeground
componentGC 162 232 162 233 psDrawLine
componentGC 0.000000 setForeground
componentGC 162 232 162 233 psDrawLine
componentGC 0.000000 setForeground
componentGC 169 239 169 233 psDrawLine
componentGC 0.000000 setForeground
componentGC 170 237 169 239 psDrawLine
componentGC 0.000000 setForeground
componentGC 169 237 169 239 psDrawLine
componentGC 0.000000 setForeground
componentGC 26 130 33 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 28 130 26 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 28 130 26 130 psDrawLine
componentGC 0.000000 setForeground
componentGC 31 134 37 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 32 134 31 134 psDrawLine
componentGC 0.000000 setForeground
componentGC 32 134 31 134 psDrawLine
componentGC 0.000000 setForeground
componentGC 35 138 42 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 37 138 35 138 psDrawLine
componentGC 0.000000 setForeground
componentGC 37 138 35 138 psDrawLine
componentGC 0.000000 setForeground
componentGC 40 143 46 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 42 143 40 143 psDrawLine
componentGC 0.000000 setForeground
componentGC 41 142 40 143 psDrawLine
componentGC 0.000000 setForeground
componentGC 44 147 51 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 46 147 44 147 psDrawLine
componentGC 0.000000 setForeground
componentGC 45 146 44 147 psDrawLine
componentGC 0.000000 setForeground
componentGC 49 151 55 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 50 151 49 151 psDrawLine
componentGC 0.000000 setForeground
componentGC 50 150 49 151 psDrawLine
componentGC 0.000000 setForeground
componentGC 53 156 60 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 55 155 53 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 54 155 53 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 57 160 64 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 59 159 57 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 59 159 57 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 62 164 69 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 64 164 62 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 63 163 62 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 66 169 74 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 69 168 66 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 68 167 66 169 psDrawLine
componentGC 0.000000 setForeground
componentGC 71 173 79 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 74 172 71 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 73 171 71 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 76 177 84 172 psDrawLine
componentGC 0.000000 setForeground
componentGC 79 176 76 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 78 176 76 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 81 182 89 176 psDrawLine
componentGC 0.000000 setForeground
componentGC 84 181 81 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 83 180 81 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 86 186 94 181 psDrawLine
componentGC 0.000000 setForeground
componentGC 89 185 86 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 88 184 86 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 92 191 100 185 psDrawLine
componentGC 0.000000 setForeground
componentGC 94 190 92 191 psDrawLine
componentGC 0.000000 setForeground
componentGC 93 189 92 191 psDrawLine
componentGC 0.000000 setForeground
componentGC 97 195 105 189 psDrawLine
componentGC 0.000000 setForeground
componentGC 100 194 97 195 psDrawLine
componentGC 0.000000 setForeground
componentGC 99 193 97 195 psDrawLine
componentGC 0.000000 setForeground
componentGC 103 200 110 194 psDrawLine
componentGC 0.000000 setForeground
componentGC 105 199 103 200 psDrawLine
componentGC 0.000000 setForeground
componentGC 104 198 103 200 psDrawLine
componentGC 0.000000 setForeground
componentGC 109 204 116 198 psDrawLine
componentGC 0.000000 setForeground
componentGC 111 203 109 204 psDrawLine
componentGC 0.000000 setForeground
componentGC 110 202 109 204 psDrawLine
componentGC 0.000000 setForeground
componentGC 115 209 121 203 psDrawLine
componentGC 0.000000 setForeground
componentGC 117 208 115 209 psDrawLine
componentGC 0.000000 setForeground
componentGC 116 207 115 209 psDrawLine
componentGC 0.000000 setForeground
componentGC 121 213 127 208 psDrawLine
componentGC 0.000000 setForeground
componentGC 123 212 121 213 psDrawLine
componentGC 0.000000 setForeground
componentGC 122 212 121 213 psDrawLine
componentGC 0.000000 setForeground
componentGC 127 218 133 213 psDrawLine
componentGC 0.000000 setForeground
componentGC 129 217 127 218 psDrawLine
componentGC 0.000000 setForeground
componentGC 128 216 127 218 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 223 139 218 psDrawLine
componentGC 0.000000 setForeground
componentGC 136 222 134 223 psDrawLine
componentGC 0.000000 setForeground
componentGC 135 221 134 223 psDrawLine
componentGC 0.000000 setForeground
componentGC 141 228 145 222 psDrawLine
componentGC 0.000000 setForeground
componentGC 142 227 141 228 psDrawLine
componentGC 0.000000 setForeground
componentGC 141 226 141 228 psDrawLine
componentGC 0.000000 setForeground
componentGC 148 233 151 228 psDrawLine
componentGC 0.000000 setForeground
componentGC 149 232 148 233 psDrawLine
componentGC 0.000000 setForeground
componentGC 148 232 148 233 psDrawLine
componentGC 0.000000 setForeground
componentGC 155 239 157 233 psDrawLine
componentGC 0.000000 setForeground
componentGC 156 238 155 239 psDrawLine
componentGC 0.000000 setForeground
componentGC 155 237 155 239 psDrawLine
componentGC 0.000000 setForeground
componentGC 162 245 163 238 psDrawLine
componentGC 0.000000 setForeground
componentGC 163 243 162 245 psDrawLine
componentGC 0.000000 setForeground
componentGC 162 243 162 245 psDrawLine
componentGC 0.000000 setForeground
componentGC 20 134 27 133 psDrawLine
componentGC 0.000000 setForeground
componentGC 21 134 20 134 psDrawLine
componentGC 0.000000 setForeground
componentGC 21 133 20 134 psDrawLine
componentGC 0.000000 setForeground
componentGC 24 138 31 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 26 138 24 138 psDrawLine
componentGC 0.000000 setForeground
componentGC 26 137 24 138 psDrawLine
componentGC 0.000000 setForeground
componentGC 29 142 36 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 30 142 29 142 psDrawLine
componentGC 0.000000 setForeground
componentGC 30 141 29 142 psDrawLine
componentGC 0.000000 setForeground
componentGC 33 147 40 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 35 146 33 147 psDrawLine
componentGC 0.000000 setForeground
componentGC 34 146 33 147 psDrawLine
componentGC 0.000000 setForeground
componentGC 37 151 45 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 39 151 37 151 psDrawLine
componentGC 0.000000 setForeground
componentGC 39 150 37 151 psDrawLine
componentGC 0.000000 setForeground
componentGC 42 155 49 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 44 155 42 155 psDrawLine
componentGC 0.000000 setForeground
componentGC 43 154 42 155 psDrawLine
componentGC 0.000000 setForeground
componentGC 46 160 54 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 48 159 46 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 48 158 46 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 51 164 58 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 53 163 51 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 52 163 51 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 55 168 63 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 58 168 55 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 57 167 55 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 60 173 68 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 62 172 60 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 61 171 60 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 65 177 73 172 psDrawLine
componentGC 0.000000 setForeground
componentGC 67 176 65 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 66 176 65 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 70 182 78 176 psDrawLine
componentGC 0.000000 setForeground
componentGC 72 181 70 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 71 180 70 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 75 186 83 181 psDrawLine
componentGC 0.000000 setForeground
componentGC 77 185 75 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 76 184 75 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 80 191 88 185 psDrawLine
componentGC 0.000000 setForeground
componentGC 83 190 80 191 psDrawLine
componentGC 0.000000 setForeground
componentGC 82 189 80 191 psDrawLine
componentGC 0.000000 setForeground
componentGC 86 195 93 189 psDrawLine
componentGC 0.000000 setForeground
componentGC 88 194 86 195 psDrawLine
componentGC 0.000000 setForeground
componentGC 87 193 86 195 psDrawLine
componentGC 0.000000 setForeground
componentGC 91 200 99 194 psDrawLine
componentGC 0.000000 setForeground
componentGC 93 199 91 200 psDrawLine
componentGC 0.000000 setForeground
componentGC 92 198 91 200 psDrawLine
componentGC 0.000000 setForeground
componentGC 97 205 104 198 psDrawLine
componentGC 0.000000 setForeground
componentGC 99 203 97 205 psDrawLine
componentGC 0.000000 setForeground
componentGC 98 203 97 205 psDrawLine
componentGC 0.000000 setForeground
componentGC 102 209 110 203 psDrawLine
componentGC 0.000000 setForeground
componentGC 105 208 102 209 psDrawLine
componentGC 0.000000 setForeground
componentGC 104 207 102 209 psDrawLine
componentGC 0.000000 setForeground
componentGC 108 214 115 208 psDrawLine
componentGC 0.000000 setForeground
componentGC 111 213 108 214 psDrawLine
componentGC 0.000000 setForeground
componentGC 109 212 108 214 psDrawLine
componentGC 0.000000 setForeground
componentGC 115 219 121 213 psDrawLine
componentGC 0.000000 setForeground
componentGC 117 218 115 219 psDrawLine
componentGC 0.000000 setForeground
componentGC 116 217 115 219 psDrawLine
componentGC 0.000000 setForeground
componentGC 121 224 127 218 psDrawLine
componentGC 0.000000 setForeground
componentGC 123 223 121 224 psDrawLine
componentGC 0.000000 setForeground
componentGC 122 222 121 224 psDrawLine
componentGC 0.000000 setForeground
componentGC 128 229 133 222 psDrawLine
componentGC 0.000000 setForeground
componentGC 129 228 128 229 psDrawLine
componentGC 0.000000 setForeground
componentGC 128 227 128 229 psDrawLine
componentGC 0.000000 setForeground
componentGC 134 234 138 228 psDrawLine
componentGC 0.000000 setForeground
componentGC 136 233 134 234 psDrawLine
componentGC 0.000000 setForeground
componentGC 135 232 134 234 psDrawLine
componentGC 0.000000 setForeground
componentGC 141 239 145 233 psDrawLine
componentGC 0.000000 setForeground
componentGC 143 238 141 239 psDrawLine
componentGC 0.000000 setForeground
componentGC 142 238 141 239 psDrawLine
componentGC 0.000000 setForeground
componentGC 149 245 151 238 psDrawLine
componentGC 0.000000 setForeground
componentGC 150 244 149 245 psDrawLine
componentGC 0.000000 setForeground
componentGC 148 243 149 245 psDrawLine
componentGC 0.000000 setForeground
componentGC 156 251 157 243 psDrawLine
componentGC 0.000000 setForeground
componentGC 157 249 156 251 psDrawLine
componentGC 0.000000 setForeground
componentGC 155 249 156 251 psDrawLine
componentGC 0.000000 setForeground
componentGC 13 138 21 137 psDrawLine
componentGC 0.000000 setForeground
componentGC 15 138 13 138 psDrawLine
componentGC 0.000000 setForeground
componentGC 15 137 13 138 psDrawLine
componentGC 0.000000 setForeground
componentGC 17 142 25 140 psDrawLine
componentGC 0.000000 setForeground
componentGC 19 142 17 142 psDrawLine
componentGC 0.000000 setForeground
componentGC 19 141 17 142 psDrawLine
componentGC 0.000000 setForeground
componentGC 22 146 30 144 psDrawLine
componentGC 0.000000 setForeground
componentGC 24 146 22 146 psDrawLine
componentGC 0.000000 setForeground
componentGC 23 145 22 146 psDrawLine
componentGC 0.000000 setForeground
componentGC 26 151 34 148 psDrawLine
componentGC 0.000000 setForeground
componentGC 28 150 26 151 psDrawLine
componentGC 0.000000 setForeground
componentGC 28 150 26 151 psDrawLine
componentGC 0.000000 setForeground
componentGC 30 155 38 152 psDrawLine
componentGC 0.000000 setForeground
componentGC 33 155 30 155 psDrawLine
componentGC 0.000000 setForeground
componentGC 32 154 30 155 psDrawLine
componentGC 0.000000 setForeground
componentGC 35 159 43 156 psDrawLine
componentGC 0.000000 setForeground
componentGC 37 159 35 159 psDrawLine
componentGC 0.000000 setForeground
componentGC 37 158 35 159 psDrawLine
componentGC 0.000000 setForeground
componentGC 39 164 48 160 psDrawLine
componentGC 0.000000 setForeground
componentGC 42 163 39 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 41 162 39 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 44 168 52 164 psDrawLine
componentGC 0.000000 setForeground
componentGC 46 168 44 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 46 167 44 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 49 173 57 168 psDrawLine
componentGC 0.000000 setForeground
componentGC 51 172 49 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 50 171 49 173 psDrawLine
componentGC 0.000000 setForeground
componentGC 53 177 62 172 psDrawLine
componentGC 0.000000 setForeground
componentGC 56 176 53 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 55 175 53 177 psDrawLine
componentGC 0.000000 setForeground
componentGC 58 182 67 176 psDrawLine
componentGC 0.000000 setForeground
componentGC 61 181 58 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 60 180 58 182 psDrawLine
componentGC 0.000000 setForeground
componentGC 63 186 72 181 psDrawLine
componentGC 0.000000 setForeground
componentGC 66 185 63 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 65 184 63 186 psDrawLine
componentGC 0.000000 setForeground
componentGC 68 191 77 185 psDrawLine
componentGC 0.000000 setForeground
componentGC 71 190 68 191 psDrawLine
componentGC 0.000000 setForeground
componentGC 70 189 68 191 psDrawLine
componentGC 0.000000 setForeground
componentGC 74 195 82 189 psDrawLine
componentGC 0.000000 setForeground
componentGC 76 194 74 195 psDrawLine
componentGC 0.000000 setForeground
componentGC 75 193 74 195 psDrawLine
componentGC 0.000000 setForeground
componentGC 79 200 87 194 psDrawLine
componentGC 0.000000 setForeground
componentGC 82 199 79 200 psDrawLine
componentGC 0.000000 setForeground
componentGC 80 198 79 200 psDrawLine
componentGC 0.000000 setForeground
componentGC 85 205 92 198 psDrawLine
componentGC 0.000000 setForeground
componentGC 87 204 85 205 psDrawLine
componentGC 0.000000 setForeground
componentGC 86 203 85 205 psDrawLine
componentGC 0.000000 setForeground
componentGC 90 209 98 203 psDrawLine
componentGC 0.000000 setForeground
componentGC 93 208 90 209 psDrawLine
componentGC 0.000000 setForeground
componentGC 91 208 90 209 psDrawLine
componentGC 0.000000 setForeground
componentGC 96 214 103 208 psDrawLine
componentGC 0.000000 setForeground
componentGC 98 213 96 214 psDrawLine
componentGC 0.000000 setForeground
componentGC 97 212 96 214 psDrawLine
componentGC 0.000000 setForeground
componentGC 102 219 109 213 psDrawLine
componentGC 0.000000 setForeground
componentGC 104 218 102 219 psDrawLine
componentGC 0.000000 setForeground
componentGC 103 217 102 219 psDrawLine
componentGC 0.000000 setForeground
componentGC 108 224 115 218 psDrawLine
componentGC 0.000000 setForeground
componentGC 110 223 108 224 psDrawLine
componentGC 0.000000 setForeground
componentGC 109 222 108 224 psDrawLine
componentGC 0.000000 setForeground
componentGC 115 229 120 222 psDrawLine
componentGC 0.000000 setForeground
componentGC 117 228 115 229 psDrawLine
componentGC 0.000000 setForeground
componentGC 115 227 115 229 psDrawLine
componentGC 0.000000 setForeground
componentGC 121 235 126 228 psDrawLine
componentGC 0.000000 setForeground
componentGC 123 233 121 235 psDrawLine
componentGC 0.000000 setForeground
componentGC 122 233 121 235 psDrawLine
componentGC 0.000000 setForeground
componentGC 128 240 132 233 psDrawLine
componentGC 0.000000 setForeground
componentGC 130 238 128 240 psDrawLine
componentGC 0.000000 setForeground
componentGC 128 238 128 240 psDrawLine
componentGC 0.000000 setForeground
componentGC 135 246 138 238 psDrawLine
componentGC 0.000000 setForeground
componentGC 136 244 135 246 psDrawLine
componentGC 0.000000 setForeground
componentGC 135 243 135 246 psDrawLine
componentGC 0.000000 setForeground
componentGC 142 251 144 243 psDrawLine
componentGC 0.000000 setForeground
componentGC 143 250 142 251 psDrawLine
componentGC 0.000000 setForeground
componentGC 142 249 142 251 psDrawLine
componentGC 0.000000 setForeground
componentGC 149 257 151 249 psDrawLine
componentGC 0.000000 setForeground
componentGC 150 255 149 257 psDrawLine
componentGC 0.000000 setForeground
componentGC 149 255 149 257 psDrawLine
grestore % restore graphics state
cleartomark %% clearing operand stack
end %% pops mainDict from dictionary stack
showpage
%-------------------------- end --------------------------%
|