Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

linearrow.ps 57 KB

You have to be logged in to leave a comment. Sign In
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
  1. %!PS-Adobe-3.0
  2. %%BoundingBox: 0 0 612 792
  3. %%HiResBoundingBox: 0 0 612.0000 792.0000
  4. %%Title: GMT v6.0.0 [64-bit] Document from psbasemap
  5. %%Creator: GMT6
  6. %%For: unknown
  7. %%DocumentNeededResources: font Helvetica
  8. %%CreationDate: Sat Feb 9 21:32:13 2019
  9. %%LanguageLevel: 2
  10. %%DocumentData: Clean7Bit
  11. %%Orientation: Portrait
  12. %%Pages: 1
  13. %%EndComments
  14. %%BeginProlog
  15. 250 dict begin
  16. /! {bind def} bind def
  17. /# {load def}!
  18. /A /setgray #
  19. /B /setdash #
  20. /C /setrgbcolor #
  21. /D /rlineto #
  22. /E {dup stringwidth pop}!
  23. /F /fill #
  24. /G /rmoveto #
  25. /H /sethsbcolor #
  26. /I /setpattern #
  27. /K /setcmykcolor #
  28. /L /lineto #
  29. /M /moveto #
  30. /N /newpath #
  31. /P /closepath #
  32. /R /rotate #
  33. /S /stroke #
  34. /T /translate #
  35. /U /grestore #
  36. /V /gsave #
  37. /W /setlinewidth #
  38. /Y {findfont exch scalefont setfont}!
  39. /Z /show #
  40. /FP {true charpath flattenpath}!
  41. /MU {matrix setmatrix}!
  42. /MS {/SMat matrix currentmatrix def}!
  43. /MR {SMat setmatrix}!
  44. /edef {exch def}!
  45. /FS {/fc edef /fs {V fc F U} def}!
  46. /FQ {/fs {} def}!
  47. /O0 {/os {N} def}!
  48. /O1 {/os {P S} def}!
  49. /FO {fs os}!
  50. /Sa {M MS dup 0 exch G 0.726542528 mul -72 R dup 0 D 4 {72 R dup 0 D -144 R dup 0 D} repeat pop MR FO}!
  51. /Sb {M dup 0 D exch 0 exch D neg 0 D FO}!
  52. /SB {MS T /BoxR edef /BoxW edef /BoxH edef BoxR 0 M
  53. BoxW 0 BoxW BoxH BoxR arct BoxW BoxH 0 BoxH BoxR arct 0 BoxH 0 0 BoxR arct 0 0 BoxW 0 BoxR arct MR FO}!
  54. /Sc {N 3 -1 roll 0 360 arc FO}!
  55. /Sd {M 4 {dup} repeat 0 G neg dup dup D exch D D FO}!
  56. /Se {N MS T R scale 0 0 1 0 360 arc MR FO}!
  57. /Sg {M MS 22.5 R dup 0 exch G -22.5 R 0.765366865 mul dup 0 D 6 {-45 R dup 0 D} repeat pop MR FO}!
  58. /Sh {M MS dup 0 G -120 R dup 0 D 4 {-60 R dup 0 D} repeat pop MR FO}!
  59. /Si {M MS dup neg 0 exch G 60 R 1.732050808 mul dup 0 D 120 R 0 D MR FO}!
  60. /Sj {M MS R dup -2 div 2 index -2 div G dup 0 D exch 0 exch D neg 0 D MR FO}!
  61. /Sn {M MS dup 0 exch G -36 R 1.175570505 mul dup 0 D 3 {-72 R dup 0 D} repeat pop MR FO}!
  62. /Sp {N 3 -1 roll 0 360 arc fs N}!
  63. /SP {M {D} repeat FO}!
  64. /Sr {M dup -2 div 2 index -2 div G dup 0 D exch 0 exch D neg 0 D FO}!
  65. /SR {MS T /BoxR edef /BoxW edef /BoxH edef BoxR BoxW -2 div BoxH -2 div T BoxR 0 M
  66. BoxW 0 BoxW BoxH BoxR arct BoxW BoxH 0 BoxH BoxR arct 0 BoxH 0 0 BoxR arct 0 0 BoxW 0 BoxR arct MR FO}!
  67. /Ss {M 1.414213562 mul dup dup dup -2 div dup G 0 D 0 exch D neg 0 D FO}!
  68. /St {M MS dup 0 exch G -60 R 1.732050808 mul dup 0 D -120 R 0 D MR FO}!
  69. /SV {0 exch M 0 D D D D D 0 D FO}!
  70. /Sv {0 0 M D D 0 D D D D D 0 D D FO}!
  71. /Sw {2 copy M 5 2 roll arc FO}!
  72. /Sx {M 1.414213562 mul 5 {dup} repeat -2 div dup G D neg 0 G neg D S}!
  73. /Sy {M dup 0 exch G dup -2 mul dup 0 exch D S}!
  74. /S+ {M dup 0 G dup -2 mul dup 0 D exch dup G 0 exch D S}!
  75. /S- {M dup 0 G dup -2 mul dup 0 D S}!
  76. /sw {stringwidth pop}!
  77. /sh {V MU 0 0 M FP pathbbox N 4 1 roll pop pop pop U}!
  78. /sd {V MU 0 0 M FP pathbbox N pop pop exch pop U}!
  79. /sH {V MU 0 0 M FP pathbbox N exch pop exch sub exch pop U}!
  80. /sb {E exch sh}!
  81. /bl {}!
  82. /bc {E -2 div 0 G}!
  83. /br {E neg 0 G}!
  84. /ml {dup 0 exch sh -2 div G}!
  85. /mc {dup E -2 div exch sh -2 div G}!
  86. /mr {dup E neg exch sh -2 div G}!
  87. /tl {dup 0 exch sh neg G}!
  88. /tc {dup E -2 div exch sh neg G}!
  89. /tr {dup E neg exch sh neg G}!
  90. /mx {2 copy lt {exch} if pop}!
  91. /PSL_xorig 0 def /PSL_yorig 0 def
  92. /TM {2 copy T PSL_yorig add /PSL_yorig edef PSL_xorig add /PSL_xorig edef}!
  93. /PSL_reencode {findfont dup length dict begin
  94. {1 index /FID ne {def}{pop pop} ifelse} forall
  95. exch /Encoding edef currentdict end definefont pop
  96. }!
  97. /PSL_eps_begin {
  98. /PSL_eps_state save def
  99. /PSL_dict_count countdictstack def
  100. /PSL_op_count count 1 sub def
  101. userdict begin
  102. /showpage {} def
  103. 0 setgray 0 setlinecap 1 setlinewidth
  104. 0 setlinejoin 10 setmiterlimit [] 0 setdash newpath
  105. /languagelevel where
  106. {pop languagelevel 1 ne {false setstrokeadjust false setoverprint} if} if
  107. }!
  108. /PSL_eps_end {
  109. count PSL_op_count sub {pop} repeat
  110. countdictstack PSL_dict_count sub {end} repeat
  111. PSL_eps_state restore
  112. }!
  113. /PSL_transp {
  114. /.setopacityalpha where {pop .setblendmode .setopacityalpha}{
  115. /pdfmark where {pop [ /BM exch /CA exch dup /ca exch /SetTransparency pdfmark}
  116. {pop pop} ifelse} ifelse
  117. }!
  118. /Standard+_Encoding [
  119. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  120. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  121. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  122. /.notdef /threequarters /threesuperior /trademark /twosuperior /yacute /ydieresis /zcaron
  123. /space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright
  124. /parenleft /parenright /asterisk /plus /comma /hyphen /period /slash
  125. /zero /one /two /three /four /five /six /seven
  126. /eight /nine /colon /semicolon /less /equal /greater /question
  127. /at /A /B /C /D /E /F /G
  128. /H /I /J /K /L /M /N /O
  129. /P /Q /R /S /T /U /V /W
  130. /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore
  131. /quoteleft /a /b /c /d /e /f /g
  132. /h /i /j /k /l /m /n /o
  133. /p /q /r /s /t /u /v /w
  134. /x /y /z /braceleft /bar /braceright /asciitilde /florin
  135. /Atilde /Ccedilla /Eth /Lslash /Ntilde /Otilde /Scaron /Thorn
  136. /Yacute /Ydieresis /Zcaron /atilde /brokenbar /ccedilla /copyright /degree
  137. /divide /eth /logicalnot /lslash /minus /mu /multiply /ntilde
  138. /onehalf /onequarter /onesuperior /otilde /plusminus /registered /scaron /thorn
  139. /.notdef /exclamdown /cent /sterling /fraction /yen /florin /section
  140. /currency /quotesingle /quotedblleft /guillemotleft /guilsinglleft /guilsinglright /fi /fl
  141. /Aacute /endash /dagger /daggerdbl /periodcentered /Acircumflex /paragraph /bullet
  142. /quotesinglbase /quotedblbase /quotedblright /guillemotright /ellipsis /perthousand /Adieresis /questiondown
  143. /Agrave /grave /acute /circumflex /tilde /macron /breve /dotaccent
  144. /dieresis /Eacute /ring /cedilla /Ecircumflex /hungarumlaut /ogonek /caron
  145. /emdash /Edieresis /Egrave /Iacute /Icircumflex /Idieresis /Igrave /Oacute
  146. /Ocircumflex /Odieresis /Ograve /Uacute /Ucircumflex /Udieresis /Ugrave /aacute
  147. /acircumflex /AE /adieresis /ordfeminine /agrave /eacute /ecircumflex /edieresis
  148. /egrave /Oslash /OE /ordmasculine /iacute /icircumflex /idieresis /igrave
  149. /oacute /ae /ocircumflex /odieresis /ograve /dotlessi /uacute /ucircumflex
  150. /udieresis /oslash /oe /germandbls /ugrave /Aring /aring /ydieresis
  151. ] def
  152. /PSL_font_encode 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 39 array astore def
  153. /F0 {/Helvetica Y}!
  154. /F1 {/Helvetica-Bold Y}!
  155. /F2 {/Helvetica-Oblique Y}!
  156. /F3 {/Helvetica-BoldOblique Y}!
  157. /F4 {/Times-Roman Y}!
  158. /F5 {/Times-Bold Y}!
  159. /F6 {/Times-Italic Y}!
  160. /F7 {/Times-BoldItalic Y}!
  161. /F8 {/Courier Y}!
  162. /F9 {/Courier-Bold Y}!
  163. /F10 {/Courier-Oblique Y}!
  164. /F11 {/Courier-BoldOblique Y}!
  165. /F12 {/Symbol Y}!
  166. /F13 {/AvantGarde-Book Y}!
  167. /F14 {/AvantGarde-BookOblique Y}!
  168. /F15 {/AvantGarde-Demi Y}!
  169. /F16 {/AvantGarde-DemiOblique Y}!
  170. /F17 {/Bookman-Demi Y}!
  171. /F18 {/Bookman-DemiItalic Y}!
  172. /F19 {/Bookman-Light Y}!
  173. /F20 {/Bookman-LightItalic Y}!
  174. /F21 {/Helvetica-Narrow Y}!
  175. /F22 {/Helvetica-Narrow-Bold Y}!
  176. /F23 {/Helvetica-Narrow-Oblique Y}!
  177. /F24 {/Helvetica-Narrow-BoldOblique Y}!
  178. /F25 {/NewCenturySchlbk-Roman Y}!
  179. /F26 {/NewCenturySchlbk-Italic Y}!
  180. /F27 {/NewCenturySchlbk-Bold Y}!
  181. /F28 {/NewCenturySchlbk-BoldItalic Y}!
  182. /F29 {/Palatino-Roman Y}!
  183. /F30 {/Palatino-Italic Y}!
  184. /F31 {/Palatino-Bold Y}!
  185. /F32 {/Palatino-BoldItalic Y}!
  186. /F33 {/ZapfChancery-MediumItalic Y}!
  187. /F34 {/ZapfDingbats Y}!
  188. /F35 {/Ryumin-Light-EUC-H Y}!
  189. /F36 {/Ryumin-Light-EUC-V Y}!
  190. /F37 {/GothicBBB-Medium-EUC-H Y}!
  191. /F38 {/GothicBBB-Medium-EUC-V Y}!
  192. /PSL_pathtextdict 26 dict def
  193. /PSL_pathtext
  194. {PSL_pathtextdict begin
  195. /ydepth exch def
  196. /textheight exch def
  197. /just exch def
  198. /offset exch def
  199. /str exch def
  200. /pathdist 0 def
  201. /setdist offset def
  202. /charcount 0 def
  203. /justy just 4 idiv textheight mul 2 div neg ydepth sub def
  204. V flattenpath
  205. {movetoproc} {linetoproc}
  206. {curvetoproc} {closepathproc}
  207. pathforall
  208. U N
  209. end
  210. } def
  211. PSL_pathtextdict begin
  212. /movetoproc
  213. { /newy exch def /newx exch def
  214. /firstx newx def /firsty newy def
  215. /ovr 0 def
  216. newx newy transform
  217. /cpy exch def /cpx exch def
  218. } def
  219. /linetoproc
  220. { /oldx newx def /oldy newy def
  221. /newy exch def /newx exch def
  222. /dx newx oldx sub def
  223. /dy newy oldy sub def
  224. /dist dx dup mul dy dup mul add sqrt def
  225. dist 0 ne
  226. { /dsx dx dist div ovr mul def
  227. /dsy dy dist div ovr mul def
  228. oldx dsx add oldy dsy add transform
  229. /cpy exch def /cpx exch def
  230. /pathdist pathdist dist add def
  231. {setdist pathdist le
  232. {charcount str length lt
  233. {setchar} {exit} ifelse}
  234. { /ovr setdist pathdist sub def
  235. exit}
  236. ifelse
  237. } loop
  238. } if
  239. } def
  240. /curvetoproc
  241. { (ERROR: No curveto's after flattenpath!)
  242. print
  243. } def
  244. /closepathproc
  245. {firstx firsty linetoproc
  246. firstx firsty movetoproc
  247. } def
  248. /setchar
  249. { /char str charcount 1 getinterval def
  250. /charcount charcount 1 add def
  251. /charwidth char stringwidth pop def
  252. V cpx cpy itransform T
  253. dy dx atan R
  254. 0 justy M
  255. char show
  256. 0 justy neg G
  257. currentpoint transform
  258. /cpy exch def /cpx exch def
  259. U /setdist setdist charwidth add def
  260. } def
  261. end
  262. /PSL_set_label_heights
  263. {
  264. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  265. /PSL_heights PSL_n_labels array def
  266. 0 1 PSL_n_labels_minus_1
  267. { /psl_k exch def
  268. /psl_label PSL_label_str psl_k get def
  269. PSL_label_font psl_k get cvx exec
  270. psl_label sH /PSL_height edef
  271. PSL_heights psl_k PSL_height put
  272. } for
  273. } def
  274. /PSL_curved_path_labels
  275. { /psl_bits exch def
  276. /PSL_placetext psl_bits 2 and 2 eq def
  277. /PSL_clippath psl_bits 4 and 4 eq def
  278. /PSL_strokeline false def
  279. /PSL_fillbox psl_bits 128 and 128 eq def
  280. /PSL_drawbox psl_bits 256 and 256 eq def
  281. /PSL_n_paths1 PSL_n_paths 1 sub def
  282. /PSL_usebox PSL_fillbox PSL_drawbox or def
  283. PSL_clippath {clipsave N clippath} if
  284. /psl_k 0 def
  285. /psl_p 0 def
  286. 0 1 PSL_n_paths1
  287. { /psl_kk exch def
  288. /PSL_n PSL_path_n psl_kk get def
  289. /PSL_m PSL_label_n psl_kk get def
  290. /PSL_x PSL_path_x psl_k PSL_n getinterval def
  291. /PSL_y PSL_path_y psl_k PSL_n getinterval def
  292. /PSL_node_tmp PSL_label_node psl_p PSL_m getinterval def
  293. /PSL_angle_tmp PSL_label_angle psl_p PSL_m getinterval def
  294. /PSL_str_tmp PSL_label_str psl_p PSL_m getinterval def
  295. /PSL_fnt_tmp PSL_label_font psl_p PSL_m getinterval def
  296. PSL_curved_path_label
  297. /psl_k psl_k PSL_n add def
  298. /psl_p psl_p PSL_m add def
  299. } for
  300. PSL_clippath {PSL_eoclip} if N
  301. } def
  302. /PSL_curved_path_label
  303. {
  304. /PSL_n1 PSL_n 1 sub def
  305. /PSL_m1 PSL_m 1 sub def
  306. PSL_CT_calcstringwidth
  307. PSL_CT_calclinedist
  308. PSL_CT_excludelabels
  309. PSL_CT_addcutpoints
  310. /PSL_nn1 PSL_nn 1 sub def
  311. /n 0 def
  312. /k 0 def
  313. /j 0 def
  314. /PSL_seg 0 def
  315. /PSL_xp PSL_nn array def
  316. /PSL_yp PSL_nn array def
  317. PSL_xp 0 PSL_xx 0 get put
  318. PSL_yp 0 PSL_yy 0 get put
  319. 1 1 PSL_nn1
  320. { /i exch def
  321. /node_type PSL_kind i get def
  322. /j j 1 add def
  323. PSL_xp j PSL_xx i get put
  324. PSL_yp j PSL_yy i get put
  325. node_type 1 eq
  326. {n 0 eq
  327. {PSL_CT_drawline}
  328. { PSL_CT_reversepath
  329. PSL_CT_textline} ifelse
  330. /j 0 def
  331. PSL_xp j PSL_xx i get put
  332. PSL_yp j PSL_yy i get put
  333. } if
  334. } for
  335. n 0 eq {PSL_CT_drawline} if
  336. } def
  337. /PSL_CT_textline
  338. { /psl_fnt PSL_fnt k get def
  339. psl_fnt (FS) search {pop pop pop /PSL_fmode 2 def} {pop /PSL_fmode 1 def} ifelse
  340. psl_fnt cvx exec
  341. /PSL_height PSL_heights k get def
  342. PSL_placetext {PSL_CT_placelabel} if
  343. PSL_clippath {PSL_CT_clippath} if
  344. /n 0 def /k k 1 add def
  345. } def
  346. /PSL_CT_calcstringwidth
  347. { /PSL_width_tmp PSL_m array def
  348. 0 1 PSL_m1
  349. { /i exch def
  350. PSL_fnt_tmp i get cvx exec
  351. PSL_width_tmp i PSL_str_tmp i get stringwidth pop put
  352. } for
  353. } def
  354. /PSL_CT_calclinedist
  355. { /PSL_newx PSL_x 0 get def
  356. /PSL_newy PSL_y 0 get def
  357. /dist 0.0 def
  358. /PSL_dist PSL_n array def
  359. PSL_dist 0 0.0 put
  360. 1 1 PSL_n1
  361. { /i exch def
  362. /PSL_oldx PSL_newx def
  363. /PSL_oldy PSL_newy def
  364. /PSL_newx PSL_x i get def
  365. /PSL_newy PSL_y i get def
  366. /dx PSL_newx PSL_oldx sub def
  367. /dy PSL_newy PSL_oldy sub def
  368. /dist dist dx dx mul dy dy mul add sqrt add def
  369. PSL_dist i dist put
  370. } for
  371. } def
  372. /PSL_CT_excludelabels
  373. { /k 0 def
  374. /PSL_width PSL_m array def
  375. /PSL_angle PSL_m array def
  376. /PSL_node PSL_m array def
  377. /PSL_str PSL_m array def
  378. /PSL_fnt PSL_m array def
  379. /lastdist PSL_dist PSL_n1 get def
  380. 0 1 PSL_m1
  381. { /i exch def
  382. /dist PSL_dist PSL_node_tmp i get get def
  383. /halfwidth PSL_width_tmp i get 2 div PSL_gap_x add def
  384. /L_dist dist halfwidth sub def
  385. /R_dist dist halfwidth add def
  386. L_dist 0 gt R_dist lastdist lt and
  387. {
  388. PSL_width k PSL_width_tmp i get put
  389. PSL_node k PSL_node_tmp i get put
  390. PSL_angle k PSL_angle_tmp i get put
  391. PSL_str k PSL_str_tmp i get put
  392. PSL_fnt k PSL_fnt_tmp i get put
  393. /k k 1 add def
  394. } if
  395. } for
  396. /PSL_m k def
  397. /PSL_m1 PSL_m 1 sub def
  398. } def
  399. /PSL_CT_addcutpoints
  400. { /k 0 def
  401. /PSL_nc PSL_m 2 mul 1 add def
  402. /PSL_cuts PSL_nc array def
  403. /PSL_nc1 PSL_nc 1 sub def
  404. 0 1 PSL_m1
  405. { /i exch def
  406. /dist PSL_dist PSL_node i get get def
  407. /halfwidth PSL_width i get 2 div PSL_gap_x add def
  408. PSL_cuts k dist halfwidth sub put
  409. /k k 1 add def
  410. PSL_cuts k dist halfwidth add put
  411. /k k 1 add def
  412. } for
  413. PSL_cuts k 100000.0 put
  414. /PSL_nn PSL_n PSL_m 2 mul add def
  415. /PSL_xx PSL_nn array def
  416. /PSL_yy PSL_nn array def
  417. /PSL_kind PSL_nn array def
  418. /j 0 def
  419. /k 0 def
  420. /dist 0.0 def
  421. 0 1 PSL_n1
  422. { /i exch def
  423. /last_dist dist def
  424. /dist PSL_dist i get def
  425. k 1 PSL_nc1
  426. { /kk exch def
  427. /this_cut PSL_cuts kk get def
  428. dist this_cut gt
  429. { /ds dist last_dist sub def
  430. /f ds 0.0 eq {0.0} {dist this_cut sub ds div} ifelse def
  431. /i1 i 0 eq {0} {i 1 sub} ifelse def
  432. PSL_xx j PSL_x i get dup PSL_x i1 get sub f mul sub put
  433. PSL_yy j PSL_y i get dup PSL_y i1 get sub f mul sub put
  434. PSL_kind j 1 put
  435. /j j 1 add def
  436. /k k 1 add def
  437. } if
  438. } for
  439. dist PSL_cuts k get le
  440. {PSL_xx j PSL_x i get put PSL_yy j PSL_y i get put
  441. PSL_kind j 0 put
  442. /j j 1 add def
  443. } if
  444. } for
  445. } def
  446. /PSL_CT_reversepath
  447. {PSL_xp j get PSL_xp 0 get lt
  448. {0 1 j 2 idiv
  449. { /left exch def
  450. /right j left sub def
  451. /tmp PSL_xp left get def
  452. PSL_xp left PSL_xp right get put
  453. PSL_xp right tmp put
  454. /tmp PSL_yp left get def
  455. PSL_yp left PSL_yp right get put
  456. PSL_yp right tmp put
  457. } for
  458. } if
  459. } def
  460. /PSL_CT_placelabel
  461. {
  462. /PSL_just PSL_label_justify k get def
  463. /PSL_height PSL_heights k get def
  464. /psl_label PSL_str k get def
  465. /psl_depth psl_label sd def
  466. PSL_usebox
  467. {PSL_CT_clippath
  468. PSL_fillbox
  469. {V PSL_setboxrgb fill U} if
  470. PSL_drawbox
  471. {V PSL_setboxpen S U} if N
  472. } if
  473. PSL_CT_placeline psl_label PSL_gap_x PSL_just PSL_height psl_depth PSL_pathtext
  474. } def
  475. /PSL_CT_clippath
  476. {
  477. /H PSL_height 2 div PSL_gap_y add def
  478. /xoff j 1 add array def
  479. /yoff j 1 add array def
  480. /angle 0 def
  481. 0 1 j {
  482. /ii exch def
  483. /x PSL_xp ii get def
  484. /y PSL_yp ii get def
  485. ii 0 eq {
  486. /x1 PSL_xp 1 get def
  487. /y1 PSL_yp 1 get def
  488. /dx x1 x sub def
  489. /dy y1 y sub def
  490. }
  491. { /i1 ii 1 sub def
  492. /x1 PSL_xp i1 get def
  493. /y1 PSL_yp i1 get def
  494. /dx x x1 sub def
  495. /dy y y1 sub def
  496. } ifelse
  497. dx 0.0 eq dy 0.0 eq and not
  498. { /angle dy dx atan 90 add def} if
  499. /sina angle sin def
  500. /cosa angle cos def
  501. xoff ii H cosa mul put
  502. yoff ii H sina mul put
  503. } for
  504. PSL_xp 0 get xoff 0 get add PSL_yp 0 get yoff 0 get add M
  505. 1 1 j {
  506. /ii exch def
  507. PSL_xp ii get xoff ii get add PSL_yp ii get yoff ii get add L
  508. } for
  509. j -1 0 {
  510. /ii exch def
  511. PSL_xp ii get xoff ii get sub PSL_yp ii get yoff ii get sub L
  512. } for P
  513. } def
  514. /PSL_CT_drawline
  515. {
  516. /str 20 string def
  517. PSL_strokeline
  518. {PSL_CT_placeline S} if
  519. /PSL_seg PSL_seg 1 add def
  520. /n 1 def
  521. } def
  522. /PSL_CT_placeline
  523. {PSL_xp 0 get PSL_yp 0 get M
  524. 1 1 j { /ii exch def PSL_xp ii get PSL_yp ii get L} for
  525. } def
  526. /PSL_draw_path_lines
  527. {
  528. /PSL_n_paths1 PSL_n_paths 1 sub def
  529. V
  530. /psl_start 0 def
  531. 0 1 PSL_n_paths1
  532. { /psl_k exch def
  533. /PSL_n PSL_path_n psl_k get def
  534. /PSL_n1 PSL_n 1 sub def
  535. PSL_path_pen psl_k get cvx exec
  536. N
  537. PSL_path_x psl_start get PSL_path_y psl_start get M
  538. 1 1 PSL_n1
  539. { /psl_i exch def
  540. /psl_kk psl_i psl_start add def
  541. PSL_path_x psl_kk get PSL_path_y psl_kk get L
  542. } for
  543. /psl_xclose PSL_path_x psl_kk get PSL_path_x psl_start get sub def
  544. /psl_yclose PSL_path_y psl_kk get PSL_path_y psl_start get sub def
  545. psl_xclose 0 eq psl_yclose 0 eq and { P } if
  546. S
  547. /psl_start psl_start PSL_n add def
  548. } for
  549. U
  550. } def
  551. /PSL_straight_path_labels
  552. {
  553. /psl_bits exch def
  554. /PSL_placetext psl_bits 2 and 2 eq def
  555. /PSL_rounded psl_bits 32 and 32 eq def
  556. /PSL_fillbox psl_bits 128 and 128 eq def
  557. /PSL_drawbox psl_bits 256 and 256 eq def
  558. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  559. /PSL_usebox PSL_fillbox PSL_drawbox or def
  560. 0 1 PSL_n_labels_minus_1
  561. { /psl_k exch def
  562. PSL_ST_prepare_text
  563. PSL_usebox
  564. { PSL_rounded
  565. {PSL_ST_textbox_round}
  566. {PSL_ST_textbox_rect}
  567. ifelse
  568. PSL_fillbox {V PSL_setboxrgb fill U} if
  569. PSL_drawbox {V PSL_setboxpen S U} if
  570. N
  571. } if
  572. PSL_placetext {PSL_ST_place_label} if
  573. } for
  574. } def
  575. /PSL_straight_path_clip
  576. {
  577. /psl_bits exch def
  578. /PSL_rounded psl_bits 32 and 32 eq def
  579. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  580. N clipsave clippath
  581. 0 1 PSL_n_labels_minus_1
  582. { /psl_k exch def
  583. PSL_ST_prepare_text
  584. PSL_rounded
  585. {PSL_ST_textbox_round}
  586. {PSL_ST_textbox_rect}
  587. ifelse
  588. } for
  589. PSL_eoclip N
  590. } def
  591. /PSL_ST_prepare_text
  592. {
  593. /psl_xp PSL_txt_x psl_k get def
  594. /psl_yp PSL_txt_y psl_k get def
  595. /psl_label PSL_label_str psl_k get def
  596. /psl_fnt PSL_label_font psl_k get def
  597. psl_fnt cvx exec
  598. psl_fnt (FS) search {pop pop pop /PSL_fmode 2 def} {pop /PSL_fmode 1 def} ifelse
  599. /PSL_height PSL_heights psl_k get def
  600. /psl_boxH PSL_height PSL_gap_y 2 mul add def
  601. /PSL_just PSL_label_justify psl_k get def
  602. /PSL_justx PSL_just 4 mod 1 sub 2 div neg def
  603. /PSL_justy PSL_just 4 idiv 2 div neg def
  604. /psl_SW psl_label stringwidth pop def
  605. /psl_boxW psl_SW PSL_gap_x 2 mul add def
  606. /psl_x0 psl_SW PSL_justx mul def
  607. /psl_y0 PSL_justy PSL_height mul def
  608. /psl_angle PSL_label_angle psl_k get def
  609. } def
  610. /PSL_ST_textbox_rect
  611. {
  612. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  613. PSL_gap_x neg PSL_gap_y neg M
  614. 0 psl_boxH D psl_boxW 0 D 0 psl_boxH neg D P
  615. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  616. } def
  617. /PSL_ST_textbox_round
  618. {
  619. /psl_BoxR PSL_gap_x PSL_gap_y lt {PSL_gap_x} {PSL_gap_y} ifelse def
  620. /psl_xd PSL_gap_x psl_BoxR sub def
  621. /psl_yd PSL_gap_y psl_BoxR sub def
  622. /psl_xL PSL_gap_x neg def
  623. /psl_yB PSL_gap_y neg def
  624. /psl_yT psl_boxH psl_yB add def
  625. /psl_H2 PSL_height psl_yd 2 mul add def
  626. /psl_W2 psl_SW psl_xd 2 mul add def
  627. /psl_xR psl_xL psl_boxW add def
  628. /psl_x0 psl_SW PSL_justx mul def
  629. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  630. psl_xL psl_yd M
  631. psl_xL psl_yT psl_xR psl_yT psl_BoxR arct psl_W2 0 D
  632. psl_xR psl_yT psl_xR psl_yB psl_BoxR arct 0 psl_H2 neg D
  633. psl_xR psl_yB psl_xL psl_yB psl_BoxR arct psl_W2 neg 0 D
  634. psl_xL psl_yB psl_xL psl_yd psl_BoxR arct P
  635. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  636. } def
  637. /PSL_ST_place_label
  638. {
  639. V psl_xp psl_yp T psl_angle R
  640. psl_SW PSL_justx mul psl_y0 M
  641. psl_label dup sd neg 0 exch G
  642. PSL_fmode 1 eq {show} {false charpath V S U fs N} ifelse
  643. U
  644. } def
  645. /PSL_nclip 0 def
  646. /PSL_clip {clip /PSL_nclip PSL_nclip 1 add def} def
  647. /PSL_eoclip {eoclip /PSL_nclip PSL_nclip 1 add def} def
  648. /PSL_cliprestore {cliprestore /PSL_nclip PSL_nclip 1 sub def} def
  649. %%EndProlog
  650. %%BeginSetup
  651. /PSLevel /languagelevel where {pop languagelevel} {1} ifelse def
  652. PSLevel 1 gt { << /PageSize [612 792] /ImagingBBox null >> setpagedevice } if
  653. %%EndSetup
  654. %%Page: 1 1
  655. %%BeginPageSetup
  656. V 0.06 0.06 scale
  657. %%EndPageSetup
  658. /PSL_page_xsize 10200 def
  659. /PSL_page_ysize 13200 def
  660. /PSL_completion {} def
  661. /PSL_movie_completion {} def
  662. %PSL_End_Header
  663. gsave
  664. 0 A
  665. FQ
  666. O0
  667. -3600 PSL_xorig sub PSL_page_xsize 2 div add 1200 TM
  668. % PostScript produced by:
  669. %@GMT: gmt psbasemap -R-5/100/-5/55 -JM6i -P -K -Baf -Xc
  670. %@PROJ: merc -5.00000000 100.00000000 -5.00000000 55.00000000 -5844273.267 5844273.267 -553583.847 7326837.715 +proj=merc +lon_0=47.5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  671. %GMTBoundingBox: -216 72 432 291.255
  672. %%BeginObject PSL_Layer_1
  673. 0 setlinecap
  674. 0 setlinejoin
  675. 3.32551 setmiterlimit
  676. 25 W
  677. 8 W
  678. N 343 0 M 0 -83 D S
  679. N 343 4854 M 0 84 D S
  680. N 1371 0 M 0 -83 D S
  681. N 1371 4854 M 0 84 D S
  682. N 2400 0 M 0 -83 D S
  683. N 2400 4854 M 0 84 D S
  684. N 3429 0 M 0 -83 D S
  685. N 3429 4854 M 0 84 D S
  686. N 4457 0 M 0 -83 D S
  687. N 4457 4854 M 0 84 D S
  688. N 5486 0 M 0 -83 D S
  689. N 5486 4854 M 0 84 D S
  690. N 6514 0 M 0 -83 D S
  691. N 6514 4854 M 0 84 D S
  692. N 0 341 M -83 0 D S
  693. N 7200 341 M 83 0 D S
  694. N 0 1375 M -83 0 D S
  695. N 7200 1375 M 83 0 D S
  696. N 0 2486 M -83 0 D S
  697. N 7200 2486 M 83 0 D S
  698. N 0 3785 M -83 0 D S
  699. N 7200 3785 M 83 0 D S
  700. 83 W
  701. 1 A
  702. N -42 0 M 0 341 D S
  703. N 7242 0 M 0 341 D S
  704. 0 A
  705. N -42 341 M 0 341 D S
  706. N 7242 341 M 0 341 D S
  707. 1 A
  708. N -42 682 M 0 344 D S
  709. N 7242 682 M 0 344 D S
  710. 0 A
  711. N -42 1026 M 0 349 D S
  712. N 7242 1026 M 0 349 D S
  713. 1 A
  714. N -42 1375 M 0 357 D S
  715. N 7242 1375 M 0 357 D S
  716. 0 A
  717. N -42 1732 M 0 369 D S
  718. N 7242 1732 M 0 369 D S
  719. 1 A
  720. N -42 2101 M 0 385 D S
  721. N 7242 2101 M 0 385 D S
  722. 0 A
  723. N -42 2486 M 0 405 D S
  724. N 7242 2486 M 0 405 D S
  725. 1 A
  726. N -42 2891 M 0 430 D S
  727. N 7242 2891 M 0 430 D S
  728. 0 A
  729. N -42 3321 M 0 464 D S
  730. N 7242 3321 M 0 464 D S
  731. 1 A
  732. N -42 3785 M 0 507 D S
  733. N 7242 3785 M 0 507 D S
  734. 0 A
  735. N -42 4292 M 0 562 D S
  736. N 7242 4292 M 0 562 D S
  737. 1 A
  738. N 0 -42 M 343 0 D S
  739. N 0 4896 M 343 0 D S
  740. 0 A
  741. N 343 -42 M 343 0 D S
  742. N 343 4896 M 343 0 D S
  743. 1 A
  744. N 686 -42 M 343 0 D S
  745. N 686 4896 M 343 0 D S
  746. 0 A
  747. N 1029 -42 M 342 0 D S
  748. N 1029 4896 M 342 0 D S
  749. 1 A
  750. N 1371 -42 M 343 0 D S
  751. N 1371 4896 M 343 0 D S
  752. 0 A
  753. N 1714 -42 M 343 0 D S
  754. N 1714 4896 M 343 0 D S
  755. 1 A
  756. N 2057 -42 M 343 0 D S
  757. N 2057 4896 M 343 0 D S
  758. 0 A
  759. N 2400 -42 M 343 0 D S
  760. N 2400 4896 M 343 0 D S
  761. 1 A
  762. N 2743 -42 M 343 0 D S
  763. N 2743 4896 M 343 0 D S
  764. 0 A
  765. N 3086 -42 M 343 0 D S
  766. N 3086 4896 M 343 0 D S
  767. 1 A
  768. N 3429 -42 M 342 0 D S
  769. N 3429 4896 M 342 0 D S
  770. 0 A
  771. N 3771 -42 M 343 0 D S
  772. N 3771 4896 M 343 0 D S
  773. 1 A
  774. N 4114 -42 M 343 0 D S
  775. N 4114 4896 M 343 0 D S
  776. 0 A
  777. N 4457 -42 M 343 0 D S
  778. N 4457 4896 M 343 0 D S
  779. 1 A
  780. N 4800 -42 M 343 0 D S
  781. N 4800 4896 M 343 0 D S
  782. 0 A
  783. N 5143 -42 M 343 0 D S
  784. N 5143 4896 M 343 0 D S
  785. 1 A
  786. N 5486 -42 M 343 0 D S
  787. N 5486 4896 M 343 0 D S
  788. 0 A
  789. N 5829 -42 M 342 0 D S
  790. N 5829 4896 M 342 0 D S
  791. 1 A
  792. N 6171 -42 M 343 0 D S
  793. N 6171 4896 M 343 0 D S
  794. 0 A
  795. N 6514 -42 M 343 0 D S
  796. N 6514 4896 M 343 0 D S
  797. 1 A
  798. N 6857 -42 M 343 0 D S
  799. N 6857 4896 M 343 0 D S
  800. 0 A
  801. 8 W
  802. N -83 0 M 7366 0 D S
  803. N -83 -83 M 7366 0 D S
  804. N 7200 -83 M 0 5021 D S
  805. N 7283 -83 M 0 5021 D S
  806. N 7283 4854 M -7366 0 D S
  807. N 7283 4938 M -7366 0 D S
  808. N 0 4938 M 0 -5021 D S
  809. N -83 4938 M 0 -5021 D S
  810. 343 -167 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  811. 200 F0
  812. (0�) tc Z
  813. 343 5021 M (0�) bc Z
  814. 1371 -167 M (15�) tc Z
  815. 1371 5021 M (15�) bc Z
  816. 2400 -167 M (30�) tc Z
  817. 2400 5021 M (30�) bc Z
  818. 3429 -167 M (45�) tc Z
  819. 3429 5021 M (45�) bc Z
  820. 4457 -167 M (60�) tc Z
  821. 4457 5021 M (60�) bc Z
  822. 5486 -167 M (75�) tc Z
  823. 5486 5021 M (75�) bc Z
  824. 6514 -167 M (90�) tc Z
  825. 6514 5021 M (90�) bc Z
  826. -167 341 M (0�) mr Z
  827. 7367 341 M (0�) ml Z
  828. -167 1375 M (15�) mr Z
  829. 7367 1375 M (15�) ml Z
  830. -167 2486 M (30�) mr Z
  831. 7367 2486 M (30�) ml Z
  832. -167 3785 M (45�) mr Z
  833. 7367 3785 M (45�) ml Z
  834. %%EndObject
  835. 0 A
  836. FQ
  837. O0
  838. 0 0 TM
  839. % PostScript produced by:
  840. %@GMT: gmt psxy -R-5/100/-5/55 -JM6i -O -K -W2p
  841. %@PROJ: merc -5.00000000 100.00000000 -5.00000000 55.00000000 -5844273.267 5844273.267 -553583.847 7326837.715 +proj=merc +lon_0=47.5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  842. %%BeginObject PSL_Layer_2
  843. 0 setlinecap
  844. 0 setlinejoin
  845. 3.32551 setmiterlimit
  846. 33 W
  847. 343 341 M
  848. 8 9 D
  849. 78 76 D
  850. 8 9 D
  851. 9 8 D
  852. 8 9 D
  853. 9 8 D
  854. 8 9 D
  855. 78 76 D
  856. 8 9 D
  857. 9 8 D
  858. 34 35 D
  859. 9 8 D
  860. 8 9 D
  861. 9 8 D
  862. 8 9 D
  863. 9 8 D
  864. 8 9 D
  865. 35 34 D
  866. 8 9 D
  867. 9 8 D
  868. 8 9 D
  869. 52 51 D
  870. 8 9 D
  871. 52 51 D
  872. 8 9 D
  873. 35 34 D
  874. 8 9 D
  875. 9 8 D
  876. 8 9 D
  877. 18 17 D
  878. 8 9 D
  879. 9 8 D
  880. 8 9 D
  881. 9 8 D
  882. 17 18 D
  883. 9 8 D
  884. 8 9 D
  885. 9 8 D
  886. 68 70 D
  887. 9 8 D
  888. 17 18 D
  889. 9 8 D
  890. 42 44 D
  891. 18 17 D
  892. 8 9 D
  893. 9 8 D
  894. 25 27 D
  895. 18 17 D
  896. 85 88 D
  897. 9 8 D
  898. 34 36 D
  899. 9 8 D
  900. 34 36 D
  901. 9 8 D
  902. 42 45 D
  903. 18 17 D
  904. 60 63 D
  905. 231 242 D
  906. 17 19 D
  907. 36 37 D
  908. 29 32 D
  909. 167 179 D
  910. 235 260 D
  911. 98 110 D
  912. 19 23 D
  913. 69 78 D
  914. 19 23 D
  915. 40 45 D
  916. 19 23 D
  917. 69 80 D
  918. 39 47 D
  919. 206 248 D
  920. 147 183 D
  921. 39 49 D
  922. 39 51 D
  923. 59 75 D
  924. 58 77 D
  925. 89 118 D
  926. 88 119 D
  927. 29 41 D
  928. 79 109 D
  929. 68 98 D
  930. 108 157 D
  931. 147 221 D
  932. 19 31 D
  933. S
  934. %%EndObject
  935. 0 A
  936. FQ
  937. O0
  938. 0 0 TM
  939. % PostScript produced by:
  940. %@GMT: gmt psxy -R-5/100/-5/55 -JM6i -O -K -Wfaint,red
  941. %@PROJ: merc -5.00000000 100.00000000 -5.00000000 55.00000000 -5844273.267 5844273.267 -553583.847 7326837.715 +proj=merc +lon_0=47.5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  942. %%BeginObject PSL_Layer_3
  943. 0 setlinecap
  944. 0 setlinejoin
  945. 3.32551 setmiterlimit
  946. 0 W
  947. 1 0 0 C
  948. 686 341 M
  949. 8 9 D
  950. 9 8 D
  951. 8 9 D
  952. 78 76 D
  953. 8 9 D
  954. 9 8 D
  955. 8 9 D
  956. 9 8 D
  957. 8 9 D
  958. 78 76 D
  959. 51 52 D
  960. 9 8 D
  961. 8 9 D
  962. 9 8 D
  963. 8 9 D
  964. 9 8 D
  965. 8 9 D
  966. 18 17 D
  967. 8 9 D
  968. 9 8 D
  969. 8 9 D
  970. 9 8 D
  971. 8 9 D
  972. 35 34 D
  973. 8 9 D
  974. 9 8 D
  975. 8 9 D
  976. 35 34 D
  977. 8 9 D
  978. 9 8 D
  979. 8 9 D
  980. 18 17 D
  981. 8 9 D
  982. 9 8 D
  983. 8 9 D
  984. 9 8 D
  985. 17 18 D
  986. 9 8 D
  987. 8 9 D
  988. 9 8 D
  989. 34 35 D
  990. 9 8 D
  991. 42 44 D
  992. 18 17 D
  993. 8 9 D
  994. 9 8 D
  995. 68 70 D
  996. 9 8 D
  997. 17 18 D
  998. 9 8 D
  999. 25 27 D
  1000. 9 8 D
  1001. 94 97 D
  1002. 9 8 D
  1003. 51 53 D
  1004. 77 80 D
  1005. 9 8 D
  1006. 68 72 D
  1007. 18 17 D
  1008. 214 225 D
  1009. 25 28 D
  1010. 67 70 D
  1011. 29 32 D
  1012. 157 169 D
  1013. 196 217 D
  1014. 107 121 D
  1015. 89 101 D
  1016. 19 23 D
  1017. 69 79 D
  1018. 29 35 D
  1019. 79 92 D
  1020. 186 225 D
  1021. 147 182 D
  1022. 29 38 D
  1023. 118 150 D
  1024. 58 77 D
  1025. 79 104 D
  1026. 19 27 D
  1027. 20 26 D
  1028. 19 27 D
  1029. 89 121 D
  1030. 166 236 D
  1031. 59 86 D
  1032. 29 44 D
  1033. 79 117 D
  1034. 68 106 D
  1035. S
  1036. %%EndObject
  1037. 0 A
  1038. FQ
  1039. O0
  1040. 0 0 TM
  1041. % PostScript produced by:
  1042. %@GMT: gmt psxy -R-5/100/-5/55 -JM6i -O -K -W2p+o1000k+v0.15i+gblack
  1043. %@PROJ: merc -5.00000000 100.00000000 -5.00000000 55.00000000 -5844273.267 5844273.267 -553583.847 7326837.715 +proj=merc +lon_0=47.5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1044. %%BeginObject PSL_Layer_4
  1045. 0 setlinecap
  1046. 0 setlinejoin
  1047. 3.32551 setmiterlimit
  1048. 33 W
  1049. 1250 904 M
  1050. 27 26 D
  1051. 43 44 D
  1052. 9 8 D
  1053. 42 44 D
  1054. 18 17 D
  1055. 8 9 D
  1056. 9 8 D
  1057. 68 70 D
  1058. 9 8 D
  1059. 17 18 D
  1060. 9 8 D
  1061. 25 27 D
  1062. 9 8 D
  1063. 94 97 D
  1064. 9 8 D
  1065. 51 53 D
  1066. 77 80 D
  1067. 9 8 D
  1068. 68 72 D
  1069. 18 17 D
  1070. 214 225 D
  1071. 25 28 D
  1072. 67 70 D
  1073. 29 32 D
  1074. 157 169 D
  1075. 196 217 D
  1076. 107 121 D
  1077. 89 101 D
  1078. 19 23 D
  1079. 69 79 D
  1080. 29 35 D
  1081. 79 92 D
  1082. 186 225 D
  1083. 147 182 D
  1084. 29 38 D
  1085. 118 150 D
  1086. 58 77 D
  1087. 13 16 D
  1088. S
  1089. V
  1090. /PSL_vecheadpen {17 W 0 A [] 0 B} def
  1091. {0 A} FS
  1092. 4 W
  1093. V 1250 904 T -134.816 R
  1094. U
  1095. V 1123 776 T -134.816 R
  1096. PSL_vecheadpen
  1097. 33 W
  1098. 0 0 M
  1099. -180 48 D
  1100. 0 -96 D
  1101. P clip fs P S
  1102. U
  1103. /PSL_vecheadpen {17 W 0 A [] 0 B} def
  1104. 4 W
  1105. V 3500 3414 T 52.8596 R
  1106. U
  1107. V 3608 3558 T 52.8596 R
  1108. PSL_vecheadpen
  1109. 33 W
  1110. 0 0 M
  1111. -180 48 D
  1112. 0 -96 D
  1113. P clip fs P S
  1114. U
  1115. U
  1116. %%EndObject
  1117. 0 A
  1118. FQ
  1119. O0
  1120. 0 0 TM
  1121. % PostScript produced by:
  1122. %@GMT: gmt psxy -R-5/100/-5/55 -JM6i -O -K -Wfaint,red
  1123. %@PROJ: merc -5.00000000 100.00000000 -5.00000000 55.00000000 -5844273.267 5844273.267 -553583.847 7326837.715 +proj=merc +lon_0=47.5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1124. %%BeginObject PSL_Layer_5
  1125. 0 setlinecap
  1126. 0 setlinejoin
  1127. 3.32551 setmiterlimit
  1128. 0 W
  1129. 1 0 0 C
  1130. 1029 341 M
  1131. 8 9 D
  1132. 9 8 D
  1133. 8 9 D
  1134. 9 8 D
  1135. 8 9 D
  1136. 78 76 D
  1137. 8 9 D
  1138. 9 8 D
  1139. 8 9 D
  1140. 9 8 D
  1141. 8 9 D
  1142. 138 136 D
  1143. 8 9 D
  1144. 9 8 D
  1145. 8 9 D
  1146. 9 8 D
  1147. 17 18 D
  1148. 9 8 D
  1149. 8 9 D
  1150. 9 8 D
  1151. 8 9 D
  1152. 9 8 D
  1153. 8 9 D
  1154. 18 17 D
  1155. 8 9 D
  1156. 9 8 D
  1157. 8 9 D
  1158. 9 8 D
  1159. 8 9 D
  1160. 18 17 D
  1161. 8 9 D
  1162. 9 8 D
  1163. 8 9 D
  1164. 9 8 D
  1165. 17 18 D
  1166. 9 8 D
  1167. 8 9 D
  1168. 9 8 D
  1169. 34 35 D
  1170. 9 8 D
  1171. 85 87 D
  1172. 9 8 D
  1173. 17 18 D
  1174. 9 8 D
  1175. 42 44 D
  1176. 18 17 D
  1177. 8 9 D
  1178. 9 8 D
  1179. 51 53 D
  1180. 9 8 D
  1181. 25 27 D
  1182. 18 17 D
  1183. 51 53 D
  1184. 9 8 D
  1185. 51 53 D
  1186. 77 80 D
  1187. 9 8 D
  1188. 68 72 D
  1189. 9 8 D
  1190. 223 234 D
  1191. 25 28 D
  1192. 57 60 D
  1193. 49 52 D
  1194. 29 32 D
  1195. 69 74 D
  1196. 39 43 D
  1197. 196 216 D
  1198. 147 166 D
  1199. 196 227 D
  1200. 88 104 D
  1201. 147 178 D
  1202. 98 121 D
  1203. 156 198 D
  1204. 187 244 D
  1205. 19 27 D
  1206. 118 160 D
  1207. 186 265 D
  1208. 98 144 D
  1209. 49 74 D
  1210. 78 120 D
  1211. S
  1212. %%EndObject
  1213. 0 A
  1214. FQ
  1215. O0
  1216. 0 0 TM
  1217. % PostScript produced by:
  1218. %@GMT: gmt psxy -R-5/100/-5/55 -JM6i -O -K -W2p+o1000k+v0.4i+p0.25p,blue+h1
  1219. %@PROJ: merc -5.00000000 100.00000000 -5.00000000 55.00000000 -5844273.267 5844273.267 -553583.847 7326837.715 +proj=merc +lon_0=47.5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1220. %%BeginObject PSL_Layer_6
  1221. 0 setlinecap
  1222. 0 setlinejoin
  1223. 3.32551 setmiterlimit
  1224. 33 W
  1225. 1636 946 M
  1226. 78 80 D
  1227. 9 8 D
  1228. 17 18 D
  1229. 9 8 D
  1230. 42 44 D
  1231. 18 17 D
  1232. 8 9 D
  1233. 9 8 D
  1234. 51 53 D
  1235. 9 8 D
  1236. 25 27 D
  1237. 18 17 D
  1238. 51 53 D
  1239. 9 8 D
  1240. 51 53 D
  1241. 77 80 D
  1242. 9 8 D
  1243. 68 72 D
  1244. 9 8 D
  1245. 223 234 D
  1246. 25 28 D
  1247. 57 60 D
  1248. 49 52 D
  1249. 29 32 D
  1250. 69 74 D
  1251. 39 43 D
  1252. 196 216 D
  1253. 147 166 D
  1254. 196 227 D
  1255. 88 104 D
  1256. 147 178 D
  1257. 98 121 D
  1258. 156 198 D
  1259. 61 78 D
  1260. 23 31 D
  1261. S
  1262. V
  1263. /PSL_vecheadpen {4 W 0 0 1 C [] 0 B} def
  1264. O1
  1265. 4 W
  1266. V 1636 946 T -134.839 R
  1267. U
  1268. V 1466 776 T -134.839 R
  1269. PSL_vecheadpen
  1270. 8 W
  1271. 0 0 M
  1272. -480 129 D
  1273. 240 -129 D
  1274. -240 -129 D
  1275. P clip fs P S
  1276. U
  1277. /PSL_vecheadpen {4 W 0 0 1 C [] 0 B} def
  1278. 4 W
  1279. V 3806 3367 T 52.4326 R
  1280. U
  1281. V 3952 3557 T 52.4326 R
  1282. PSL_vecheadpen
  1283. 8 W
  1284. 0 0 M
  1285. -480 129 D
  1286. 240 -129 D
  1287. -240 -129 D
  1288. P clip fs P S
  1289. U
  1290. U
  1291. %%EndObject
  1292. 0 A
  1293. FQ
  1294. O0
  1295. 0 0 TM
  1296. % PostScript produced by:
  1297. %@GMT: gmt psxy -R-5/100/-5/55 -JM6i -O -K -Wfaint,red
  1298. %@PROJ: merc -5.00000000 100.00000000 -5.00000000 55.00000000 -5844273.267 5844273.267 -553583.847 7326837.715 +proj=merc +lon_0=47.5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1299. %%BeginObject PSL_Layer_7
  1300. 0 setlinecap
  1301. 0 setlinejoin
  1302. 3.32551 setmiterlimit
  1303. 0 W
  1304. 1 0 0 C
  1305. 1371 341 M
  1306. 18 17 D
  1307. 8 9 D
  1308. 9 8 D
  1309. 8 9 D
  1310. 9 8 D
  1311. 8 9 D
  1312. 78 76 D
  1313. 8 9 D
  1314. 9 8 D
  1315. 8 9 D
  1316. 9 8 D
  1317. 8 9 D
  1318. 52 51 D
  1319. 8 9 D
  1320. 78 76 D
  1321. 8 9 D
  1322. 9 8 D
  1323. 34 35 D
  1324. 9 8 D
  1325. 8 9 D
  1326. 9 8 D
  1327. 8 9 D
  1328. 9 8 D
  1329. 17 18 D
  1330. 9 8 D
  1331. 8 9 D
  1332. 9 8 D
  1333. 8 9 D
  1334. 9 8 D
  1335. 17 18 D
  1336. 9 8 D
  1337. 8 9 D
  1338. 9 8 D
  1339. 34 35 D
  1340. 9 8 D
  1341. 102 104 D
  1342. 18 17 D
  1343. 8 9 D
  1344. 9 8 D
  1345. 68 70 D
  1346. 9 8 D
  1347. 17 18 D
  1348. 9 8 D
  1349. 51 53 D
  1350. 9 8 D
  1351. 25 27 D
  1352. 9 8 D
  1353. 180 185 D
  1354. 17 18 D
  1355. 9 8 D
  1356. 68 72 D
  1357. 9 8 D
  1358. 222 234 D
  1359. 73 77 D
  1360. 29 32 D
  1361. 79 84 D
  1362. 29 32 D
  1363. 108 117 D
  1364. 196 218 D
  1365. 156 178 D
  1366. 30 34 D
  1367. 19 23 D
  1368. 79 91 D
  1369. 29 35 D
  1370. 59 69 D
  1371. 147 178 D
  1372. 108 133 D
  1373. 137 173 D
  1374. 29 38 D
  1375. 167 218 D
  1376. 147 200 D
  1377. 68 96 D
  1378. 108 154 D
  1379. 19 29 D
  1380. 79 115 D
  1381. 137 209 D
  1382. S
  1383. %%EndObject
  1384. 0 A
  1385. FQ
  1386. O0
  1387. 0 0 TM
  1388. % PostScript produced by:
  1389. %@GMT: gmt psxy -R-5/100/-5/55 -JM6i -O -K -W2p+o1000k+v0.4i+p0.25p,blue+h0
  1390. %@PROJ: merc -5.00000000 100.00000000 -5.00000000 55.00000000 -5844273.267 5844273.267 -553583.847 7326837.715 +proj=merc +lon_0=47.5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1391. %%BeginObject PSL_Layer_8
  1392. 0 setlinecap
  1393. 0 setlinejoin
  1394. 3.32551 setmiterlimit
  1395. 33 W
  1396. 2147 1117 M
  1397. 10 9 D
  1398. 63 65 D
  1399. 9 8 D
  1400. 25 27 D
  1401. 9 8 D
  1402. 180 185 D
  1403. 17 18 D
  1404. 9 8 D
  1405. 68 72 D
  1406. 9 8 D
  1407. 222 234 D
  1408. 73 77 D
  1409. 29 32 D
  1410. 79 84 D
  1411. 29 32 D
  1412. 108 117 D
  1413. 196 218 D
  1414. 156 178 D
  1415. 30 34 D
  1416. 19 23 D
  1417. 79 91 D
  1418. 29 35 D
  1419. 59 69 D
  1420. 147 178 D
  1421. 108 133 D
  1422. 93 117 D
  1423. S
  1424. V
  1425. /PSL_vecheadpen {4 W 0 0 1 C [] 0 B} def
  1426. O1
  1427. 4 W
  1428. V 2147 1117 T -134.533 R
  1429. U
  1430. V 1811 775 T -134.533 R
  1431. PSL_vecheadpen
  1432. 8 W
  1433. 0 0 M
  1434. -480 129 D
  1435. 0 -258 D
  1436. P clip fs P S
  1437. U
  1438. /PSL_vecheadpen {4 W 0 0 1 C [] 0 B} def
  1439. 4 W
  1440. V 4002 3177 T 51.6406 R
  1441. U
  1442. V 4300 3553 T 51.6406 R
  1443. PSL_vecheadpen
  1444. 8 W
  1445. 0 0 M
  1446. -480 129 D
  1447. 0 -258 D
  1448. P clip fs P S
  1449. U
  1450. U
  1451. %%EndObject
  1452. 0 A
  1453. FQ
  1454. O0
  1455. 0 0 TM
  1456. % PostScript produced by:
  1457. %@GMT: gmt psxy -R-5/100/-5/55 -JM6i -O -K -Wfaint,red
  1458. %@PROJ: merc -5.00000000 100.00000000 -5.00000000 55.00000000 -5844273.267 5844273.267 -553583.847 7326837.715 +proj=merc +lon_0=47.5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1459. %%BeginObject PSL_Layer_9
  1460. 0 setlinecap
  1461. 0 setlinejoin
  1462. 3.32551 setmiterlimit
  1463. 0 W
  1464. 1 0 0 C
  1465. 1714 341 M
  1466. 35 34 D
  1467. 8 9 D
  1468. 9 8 D
  1469. 8 9 D
  1470. 9 8 D
  1471. 8 9 D
  1472. 78 76 D
  1473. 8 9 D
  1474. 9 8 D
  1475. 8 9 D
  1476. 9 8 D
  1477. 8 9 D
  1478. 35 34 D
  1479. 8 9 D
  1480. 9 8 D
  1481. 8 9 D
  1482. 78 76 D
  1483. 51 52 D
  1484. 9 8 D
  1485. 8 9 D
  1486. 9 8 D
  1487. 34 35 D
  1488. 9 8 D
  1489. 8 9 D
  1490. 9 8 D
  1491. 34 35 D
  1492. 9 8 D
  1493. 102 104 D
  1494. 35 34 D
  1495. 8 9 D
  1496. 9 8 D
  1497. 17 18 D
  1498. 9 8 D
  1499. 42 44 D
  1500. 18 17 D
  1501. 8 9 D
  1502. 9 8 D
  1503. 111 114 D
  1504. 9 8 D
  1505. 25 27 D
  1506. 18 17 D
  1507. 59 62 D
  1508. 18 17 D
  1509. 25 27 D
  1510. 9 8 D
  1511. 103 107 D
  1512. 17 18 D
  1513. 9 8 D
  1514. 222 234 D
  1515. 63 67 D
  1516. 108 115 D
  1517. 68 75 D
  1518. 79 85 D
  1519. 97 109 D
  1520. 89 98 D
  1521. 186 212 D
  1522. 108 125 D
  1523. 29 35 D
  1524. 59 69 D
  1525. 137 166 D
  1526. 108 132 D
  1527. 19 25 D
  1528. 20 24 D
  1529. 19 25 D
  1530. 30 37 D
  1531. 19 25 D
  1532. 40 50 D
  1533. 29 38 D
  1534. 147 192 D
  1535. 147 199 D
  1536. 39 55 D
  1537. 118 166 D
  1538. 68 99 D
  1539. 69 101 D
  1540. 137 209 D
  1541. S
  1542. %%EndObject
  1543. 0 A
  1544. FQ
  1545. O0
  1546. 0 0 TM
  1547. % PostScript produced by:
  1548. %@GMT: gmt psxy -R-5/100/-5/55 -JM6i -O -K -W2p+o1i/0.5i+ve0.3i+p1.5p,blue+gpink+ec+vb0.3i+p1.5p,blue+ggreen+es
  1549. %@PROJ: merc -5.00000000 100.00000000 -5.00000000 55.00000000 -5844273.267 5844273.267 -553583.847 7326837.715 +proj=merc +lon_0=47.5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1550. %%BeginObject PSL_Layer_10
  1551. 0 setlinecap
  1552. 0 setlinejoin
  1553. 3.32551 setmiterlimit
  1554. 33 W
  1555. 2628 1257 M
  1556. 18 19 D
  1557. 10 9 D
  1558. 52 55 D
  1559. 18 17 D
  1560. 25 27 D
  1561. 9 8 D
  1562. 103 107 D
  1563. 17 18 D
  1564. 9 8 D
  1565. 222 234 D
  1566. 63 67 D
  1567. 108 115 D
  1568. 68 75 D
  1569. 79 85 D
  1570. 97 109 D
  1571. 89 98 D
  1572. 186 212 D
  1573. 108 125 D
  1574. 29 35 D
  1575. 59 69 D
  1576. 137 166 D
  1577. 108 132 D
  1578. 19 25 D
  1579. 20 24 D
  1580. 19 25 D
  1581. 30 37 D
  1582. 19 25 D
  1583. 40 50 D
  1584. 29 38 D
  1585. 147 192 D
  1586. 147 199 D
  1587. 19 27 D
  1588. 15 20 D
  1589. S
  1590. V
  1591. /PSL_vecheadpen {25 W 0 0 1 C [] 0 B} def
  1592. {0 1 0 C} FS
  1593. O1
  1594. 25 W
  1595. V 2628 1257 T -134.296 R
  1596. N 0 0 M 93 0 D S
  1597. U
  1598. V 2562 1190 T -134.296 R
  1599. PSL_vecheadpen
  1600. 50 W
  1601. -93 93 M
  1602. 186 0 D
  1603. 0 -186 D
  1604. -186 0 D
  1605. P clip fs P S U
  1606. /PSL_vecheadpen {25 W 0 0 1 C [] 0 B} def
  1607. {1 0.753 0.796 C} FS
  1608. 25 W
  1609. V 4746 3709 T 54.2241 R
  1610. N 0 0 M 105 0 D S
  1611. U
  1612. V 4807 3794 T 54.2241 R
  1613. PSL_vecheadpen
  1614. 50 W
  1615. N 0 0 105 0 360 arc
  1616. P clip fs P S U
  1617. U
  1618. %%EndObject
  1619. 0 A
  1620. FQ
  1621. O0
  1622. 0 0 TM
  1623. % PostScript produced by:
  1624. %@GMT: gmt psxy -R-5/100/-5/55 -JM6i -O -K -Wfaint,red
  1625. %@PROJ: merc -5.00000000 100.00000000 -5.00000000 55.00000000 -5844273.267 5844273.267 -553583.847 7326837.715 +proj=merc +lon_0=47.5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1626. %%BeginObject PSL_Layer_11
  1627. 0 setlinecap
  1628. 0 setlinejoin
  1629. 3.32551 setmiterlimit
  1630. 0 W
  1631. 1 0 0 C
  1632. 2057 341 M
  1633. 52 51 D
  1634. 8 9 D
  1635. 9 8 D
  1636. 8 9 D
  1637. 9 8 D
  1638. 8 9 D
  1639. 78 76 D
  1640. 8 9 D
  1641. 9 8 D
  1642. 8 9 D
  1643. 9 8 D
  1644. 8 9 D
  1645. 18 17 D
  1646. 8 9 D
  1647. 9 8 D
  1648. 8 9 D
  1649. 9 8 D
  1650. 8 9 D
  1651. 138 136 D
  1652. 51 52 D
  1653. 9 8 D
  1654. 102 104 D
  1655. 35 34 D
  1656. 8 9 D
  1657. 9 8 D
  1658. 8 9 D
  1659. 18 17 D
  1660. 8 9 D
  1661. 9 8 D
  1662. 68 70 D
  1663. 9 8 D
  1664. 17 18 D
  1665. 9 8 D
  1666. 42 44 D
  1667. 18 17 D
  1668. 51 53 D
  1669. 9 8 D
  1670. 25 27 D
  1671. 9 8 D
  1672. 68 71 D
  1673. 18 17 D
  1674. 25 27 D
  1675. 9 8 D
  1676. 51 53 D
  1677. 146 152 D
  1678. 154 162 D
  1679. 112 119 D
  1680. 29 32 D
  1681. 118 127 D
  1682. 186 205 D
  1683. 147 166 D
  1684. 196 226 D
  1685. 147 174 D
  1686. 195 239 D
  1687. 89 111 D
  1688. 19 25 D
  1689. 30 37 D
  1690. 68 89 D
  1691. 108 141 D
  1692. 108 145 D
  1693. 19 27 D
  1694. 128 177 D
  1695. 97 140 D
  1696. 40 57 D
  1697. 29 44 D
  1698. 30 43 D
  1699. 68 103 D
  1700. 69 106 D
  1701. S
  1702. %%EndObject
  1703. 0 A
  1704. FQ
  1705. O0
  1706. 0 0 TM
  1707. % PostScript produced by:
  1708. %@GMT: gmt psxy -R-5/100/-5/55 -JM6i -O -K -W2p+o1i/1000n+v0.3i+gred
  1709. %@PROJ: merc -5.00000000 100.00000000 -5.00000000 55.00000000 -5844273.267 5844273.267 -553583.847 7326837.715 +proj=merc +lon_0=47.5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1710. %%BeginObject PSL_Layer_12
  1711. 0 setlinecap
  1712. 0 setlinejoin
  1713. 3.32551 setmiterlimit
  1714. 33 W
  1715. 3157 1448 M
  1716. 143 149 D
  1717. 154 162 D
  1718. 112 119 D
  1719. 29 32 D
  1720. 118 127 D
  1721. 186 205 D
  1722. 147 166 D
  1723. 196 226 D
  1724. 78 92 D
  1725. 14 16 D
  1726. S
  1727. V
  1728. /PSL_vecheadpen {17 W 0 A [] 0 B} def
  1729. {1 0 0 C} FS
  1730. 4 W
  1731. V 3157 1448 T -133.853 R
  1732. U
  1733. V 2907 1188 T -133.853 R
  1734. PSL_vecheadpen
  1735. 33 W
  1736. 0 0 M
  1737. -360 96 D
  1738. 0 -192 D
  1739. P clip fs P S
  1740. U
  1741. /PSL_vecheadpen {17 W 0 A [] 0 B} def
  1742. 4 W
  1743. V 4334 2742 T 49.9134 R
  1744. U
  1745. V 4566 3018 T 49.9134 R
  1746. PSL_vecheadpen
  1747. 33 W
  1748. 0 0 M
  1749. -360 96 D
  1750. 0 -192 D
  1751. P clip fs P S
  1752. U
  1753. U
  1754. %%EndObject
  1755. 0 A
  1756. FQ
  1757. O0
  1758. 0 0 TM
  1759. % PostScript produced by:
  1760. %@GMT: gmt psxy -R-5/100/-5/55 -JM6i -O -K -Wfaint,red
  1761. %@PROJ: merc -5.00000000 100.00000000 -5.00000000 55.00000000 -5844273.267 5844273.267 -553583.847 7326837.715 +proj=merc +lon_0=47.5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1762. %%BeginObject PSL_Layer_13
  1763. 0 setlinecap
  1764. 0 setlinejoin
  1765. 3.32551 setmiterlimit
  1766. 0 W
  1767. 1 0 0 C
  1768. 2400 341 M
  1769. 69 68 D
  1770. 8 9 D
  1771. 9 8 D
  1772. 8 9 D
  1773. 9 8 D
  1774. 8 9 D
  1775. 78 76 D
  1776. 8 9 D
  1777. 9 8 D
  1778. 8 9 D
  1779. 9 8 D
  1780. 17 18 D
  1781. 9 8 D
  1782. 8 9 D
  1783. 9 8 D
  1784. 8 9 D
  1785. 9 8 D
  1786. 8 9 D
  1787. 52 51 D
  1788. 8 9 D
  1789. 172 171 D
  1790. 8 9 D
  1791. 35 34 D
  1792. 8 9 D
  1793. 9 8 D
  1794. 8 9 D
  1795. 18 17 D
  1796. 8 9 D
  1797. 9 8 D
  1798. 8 9 D
  1799. 9 8 D
  1800. 17 18 D
  1801. 9 8 D
  1802. 42 44 D
  1803. 18 17 D
  1804. 8 9 D
  1805. 9 8 D
  1806. 68 70 D
  1807. 9 8 D
  1808. 94 97 D
  1809. 9 8 D
  1810. 25 27 D
  1811. 18 17 D
  1812. 25 27 D
  1813. 9 8 D
  1814. 34 36 D
  1815. 9 8 D
  1816. 51 53 D
  1817. 223 233 D
  1818. 130 137 D
  1819. 29 32 D
  1820. 30 31 D
  1821. 29 32 D
  1822. 59 63 D
  1823. 39 43 D
  1824. 245 270 D
  1825. 108 122 D
  1826. 39 44 D
  1827. 19 23 D
  1828. 79 90 D
  1829. 19 23 D
  1830. 30 34 D
  1831. 29 35 D
  1832. 118 139 D
  1833. 205 251 D
  1834. 88 111 D
  1835. 30 37 D
  1836. 39 51 D
  1837. 69 88 D
  1838. 137 182 D
  1839. 59 79 D
  1840. 19 27 D
  1841. 59 81 D
  1842. 39 55 D
  1843. 59 83 D
  1844. 147 213 D
  1845. 78 118 D
  1846. 79 120 D
  1847. S
  1848. %%EndObject
  1849. 0 A
  1850. FQ
  1851. O0
  1852. 0 0 TM
  1853. % PostScript produced by:
  1854. %@GMT: gmt psxy -R-5/100/-5/55 -JM6i -O -K -W2p+o1000k/0+ve0.3i+gblue
  1855. %@PROJ: merc -5.00000000 100.00000000 -5.00000000 55.00000000 -5844273.267 5844273.267 -553583.847 7326837.715 +proj=merc +lon_0=47.5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1856. %%BeginObject PSL_Layer_14
  1857. 0 setlinecap
  1858. 0 setlinejoin
  1859. 3.32551 setmiterlimit
  1860. 33 W
  1861. 2837 776 M
  1862. 94 95 D
  1863. 35 34 D
  1864. 8 9 D
  1865. 9 8 D
  1866. 8 9 D
  1867. 18 17 D
  1868. 8 9 D
  1869. 9 8 D
  1870. 8 9 D
  1871. 9 8 D
  1872. 17 18 D
  1873. 9 8 D
  1874. 42 44 D
  1875. 18 17 D
  1876. 8 9 D
  1877. 9 8 D
  1878. 68 70 D
  1879. 9 8 D
  1880. 94 97 D
  1881. 9 8 D
  1882. 25 27 D
  1883. 18 17 D
  1884. 25 27 D
  1885. 9 8 D
  1886. 34 36 D
  1887. 9 8 D
  1888. 51 53 D
  1889. 223 233 D
  1890. 130 137 D
  1891. 29 32 D
  1892. 30 31 D
  1893. 29 32 D
  1894. 59 63 D
  1895. 39 43 D
  1896. 245 270 D
  1897. 108 122 D
  1898. 39 44 D
  1899. 19 23 D
  1900. 79 90 D
  1901. 19 23 D
  1902. 30 34 D
  1903. 29 35 D
  1904. 118 139 D
  1905. 205 251 D
  1906. 88 111 D
  1907. 30 37 D
  1908. 39 51 D
  1909. 69 88 D
  1910. 137 182 D
  1911. 59 79 D
  1912. 19 27 D
  1913. 59 81 D
  1914. 39 55 D
  1915. 59 83 D
  1916. 104 151 D
  1917. S
  1918. V
  1919. /PSL_vecheadpen {17 W 0 A [] 0 B} def
  1920. {0 0 1 C} FS
  1921. 4 W
  1922. V 5629 3992 T 55.6468 R
  1923. U
  1924. V 5833 4289 T 55.6468 R
  1925. PSL_vecheadpen
  1926. 33 W
  1927. 0 0 M
  1928. -360 96 D
  1929. 0 -192 D
  1930. P clip fs P S
  1931. U
  1932. U
  1933. %%EndObject
  1934. 0 A
  1935. FQ
  1936. O0
  1937. 0 0 TM
  1938. % PostScript produced by:
  1939. %@GMT: gmt psxy -R-5/100/-5/55 -JM6i -O -K -Wfaint,red
  1940. %@PROJ: merc -5.00000000 100.00000000 -5.00000000 55.00000000 -5844273.267 5844273.267 -553583.847 7326837.715 +proj=merc +lon_0=47.5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  1941. %%BeginObject PSL_Layer_15
  1942. 0 setlinecap
  1943. 0 setlinejoin
  1944. 3.32551 setmiterlimit
  1945. 0 W
  1946. 1 0 0 C
  1947. 2743 341 M
  1948. 8 9 D
  1949. 78 76 D
  1950. 8 9 D
  1951. 9 8 D
  1952. 8 9 D
  1953. 9 8 D
  1954. 8 9 D
  1955. 78 76 D
  1956. 8 9 D
  1957. 9 8 D
  1958. 34 35 D
  1959. 9 8 D
  1960. 8 9 D
  1961. 9 8 D
  1962. 8 9 D
  1963. 9 8 D
  1964. 8 9 D
  1965. 35 34 D
  1966. 8 9 D
  1967. 9 8 D
  1968. 8 9 D
  1969. 52 51 D
  1970. 8 9 D
  1971. 52 51 D
  1972. 8 9 D
  1973. 35 34 D
  1974. 8 9 D
  1975. 9 8 D
  1976. 8 9 D
  1977. 18 17 D
  1978. 8 9 D
  1979. 9 8 D
  1980. 8 9 D
  1981. 9 8 D
  1982. 17 18 D
  1983. 9 8 D
  1984. 8 9 D
  1985. 9 8 D
  1986. 68 70 D
  1987. 9 8 D
  1988. 17 18 D
  1989. 9 8 D
  1990. 42 44 D
  1991. 18 17 D
  1992. 8 9 D
  1993. 9 8 D
  1994. 25 27 D
  1995. 18 17 D
  1996. 85 88 D
  1997. 9 8 D
  1998. 34 36 D
  1999. 9 8 D
  2000. 34 36 D
  2001. 9 8 D
  2002. 42 45 D
  2003. 18 17 D
  2004. 60 63 D
  2005. 231 242 D
  2006. 17 19 D
  2007. 36 37 D
  2008. 29 32 D
  2009. 167 179 D
  2010. 235 260 D
  2011. 98 110 D
  2012. 19 23 D
  2013. 69 78 D
  2014. 19 23 D
  2015. 40 45 D
  2016. 19 23 D
  2017. 69 80 D
  2018. 39 47 D
  2019. 206 248 D
  2020. 147 183 D
  2021. 39 49 D
  2022. 39 51 D
  2023. 59 75 D
  2024. 58 77 D
  2025. 89 118 D
  2026. 88 119 D
  2027. 29 41 D
  2028. 79 109 D
  2029. 68 98 D
  2030. 108 157 D
  2031. 147 221 D
  2032. 19 31 D
  2033. S
  2034. %%EndObject
  2035. 0 A
  2036. FQ
  2037. O0
  2038. 0 0 TM
  2039. % PostScript produced by:
  2040. %@GMT: gmt psxy -R-5/100/-5/55 -JM6i -O -K -W2p+o0/1000k+ve0.3i+p1.5p,blue+et
  2041. %@PROJ: merc -5.00000000 100.00000000 -5.00000000 55.00000000 -5844273.267 5844273.267 -553583.847 7326837.715 +proj=merc +lon_0=47.5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  2042. %%BeginObject PSL_Layer_16
  2043. 0 setlinecap
  2044. 0 setlinejoin
  2045. 3.32551 setmiterlimit
  2046. 33 W
  2047. 2743 341 M
  2048. 8 9 D
  2049. 78 76 D
  2050. 8 9 D
  2051. 9 8 D
  2052. 8 9 D
  2053. 9 8 D
  2054. 8 9 D
  2055. 78 76 D
  2056. 8 9 D
  2057. 9 8 D
  2058. 34 35 D
  2059. 9 8 D
  2060. 8 9 D
  2061. 9 8 D
  2062. 8 9 D
  2063. 9 8 D
  2064. 8 9 D
  2065. 35 34 D
  2066. 8 9 D
  2067. 9 8 D
  2068. 8 9 D
  2069. 52 51 D
  2070. 8 9 D
  2071. 52 51 D
  2072. 8 9 D
  2073. 35 34 D
  2074. 8 9 D
  2075. 9 8 D
  2076. 8 9 D
  2077. 18 17 D
  2078. 8 9 D
  2079. 9 8 D
  2080. 8 9 D
  2081. 9 8 D
  2082. 17 18 D
  2083. 9 8 D
  2084. 8 9 D
  2085. 9 8 D
  2086. 68 70 D
  2087. 9 8 D
  2088. 17 18 D
  2089. 9 8 D
  2090. 42 44 D
  2091. 18 17 D
  2092. 8 9 D
  2093. 9 8 D
  2094. 25 27 D
  2095. 18 17 D
  2096. 85 88 D
  2097. 9 8 D
  2098. 34 36 D
  2099. 9 8 D
  2100. 34 36 D
  2101. 9 8 D
  2102. 42 45 D
  2103. 18 17 D
  2104. 60 63 D
  2105. 231 242 D
  2106. 17 19 D
  2107. 36 37 D
  2108. 29 32 D
  2109. 167 179 D
  2110. 235 260 D
  2111. 98 110 D
  2112. 19 23 D
  2113. 69 78 D
  2114. 19 23 D
  2115. 40 45 D
  2116. 19 23 D
  2117. 69 80 D
  2118. 39 47 D
  2119. 206 248 D
  2120. 147 183 D
  2121. 39 49 D
  2122. 39 51 D
  2123. 59 75 D
  2124. 58 77 D
  2125. 100 133 D
  2126. 21 28 D
  2127. S
  2128. V
  2129. /PSL_vecheadpen {25 W 0 0 1 C [] 0 B} def
  2130. O1
  2131. 25 W
  2132. V 5665 3559 T 53.2605 R
  2133. N 0 0 M 1 0 D S
  2134. U
  2135. V 5665 3560 T 53.2605 R
  2136. PSL_vecheadpen
  2137. 50 W
  2138. 0 -96 M
  2139. 0 192 D
  2140. S
  2141. U
  2142. U
  2143. %%EndObject
  2144. 0 A
  2145. FQ
  2146. O0
  2147. 0 0 TM
  2148. % PostScript produced by:
  2149. %@GMT: gmt psxy -R-5/100/-5/55 -JM6i -O -K -Wfaint,red
  2150. %@PROJ: merc -5.00000000 100.00000000 -5.00000000 55.00000000 -5844273.267 5844273.267 -553583.847 7326837.715 +proj=merc +lon_0=47.5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  2151. %%BeginObject PSL_Layer_17
  2152. 0 setlinecap
  2153. 0 setlinejoin
  2154. 3.32551 setmiterlimit
  2155. 0 W
  2156. 1 0 0 C
  2157. 3086 341 M
  2158. 8 9 D
  2159. 9 8 D
  2160. 8 9 D
  2161. 78 76 D
  2162. 8 9 D
  2163. 9 8 D
  2164. 8 9 D
  2165. 9 8 D
  2166. 8 9 D
  2167. 78 76 D
  2168. 51 52 D
  2169. 9 8 D
  2170. 8 9 D
  2171. 9 8 D
  2172. 8 9 D
  2173. 9 8 D
  2174. 8 9 D
  2175. 18 17 D
  2176. 8 9 D
  2177. 9 8 D
  2178. 8 9 D
  2179. 9 8 D
  2180. 8 9 D
  2181. 35 34 D
  2182. 8 9 D
  2183. 9 8 D
  2184. 8 9 D
  2185. 35 34 D
  2186. 8 9 D
  2187. 9 8 D
  2188. 8 9 D
  2189. 18 17 D
  2190. 8 9 D
  2191. 9 8 D
  2192. 8 9 D
  2193. 9 8 D
  2194. 17 18 D
  2195. 9 8 D
  2196. 8 9 D
  2197. 9 8 D
  2198. 34 35 D
  2199. 9 8 D
  2200. 42 44 D
  2201. 18 17 D
  2202. 8 9 D
  2203. 9 8 D
  2204. 68 70 D
  2205. 9 8 D
  2206. 17 18 D
  2207. 9 8 D
  2208. 25 27 D
  2209. 9 8 D
  2210. 94 97 D
  2211. 9 8 D
  2212. 51 53 D
  2213. 77 80 D
  2214. 9 8 D
  2215. 68 72 D
  2216. 18 17 D
  2217. 214 225 D
  2218. 25 28 D
  2219. 67 70 D
  2220. 29 32 D
  2221. 157 169 D
  2222. 196 217 D
  2223. 107 121 D
  2224. 89 101 D
  2225. 19 23 D
  2226. 69 79 D
  2227. 29 35 D
  2228. 79 92 D
  2229. 186 225 D
  2230. 147 182 D
  2231. 29 38 D
  2232. 118 150 D
  2233. 58 77 D
  2234. 79 104 D
  2235. 19 27 D
  2236. 20 26 D
  2237. 19 27 D
  2238. 89 121 D
  2239. 166 236 D
  2240. 59 86 D
  2241. 29 44 D
  2242. 79 117 D
  2243. 68 106 D
  2244. S
  2245. %%EndObject
  2246. 0 A
  2247. FQ
  2248. O0
  2249. 0 0 TM
  2250. % PostScript produced by:
  2251. %@GMT: gmt psxy -R-5/100/-5/55 -JM6i -O -K -W2p+o1i/0+v0.3i+p0.25p,blue+gcyan+h1
  2252. %@PROJ: merc -5.00000000 100.00000000 -5.00000000 55.00000000 -5844273.267 5844273.267 -553583.847 7326837.715 +proj=merc +lon_0=47.5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  2253. %%BeginObject PSL_Layer_18
  2254. 0 setlinecap
  2255. 0 setlinejoin
  2256. 3.32551 setmiterlimit
  2257. 33 W
  2258. 4060 1319 M
  2259. 114 118 D
  2260. 9 8 D
  2261. 68 72 D
  2262. 18 17 D
  2263. 214 225 D
  2264. 25 28 D
  2265. 67 70 D
  2266. 29 32 D
  2267. 157 169 D
  2268. 196 217 D
  2269. 107 121 D
  2270. 89 101 D
  2271. 19 23 D
  2272. 69 79 D
  2273. 29 35 D
  2274. 79 92 D
  2275. 186 225 D
  2276. 147 182 D
  2277. 29 38 D
  2278. 118 150 D
  2279. 58 77 D
  2280. 79 104 D
  2281. 19 27 D
  2282. 20 26 D
  2283. 19 27 D
  2284. 89 121 D
  2285. 166 236 D
  2286. 59 86 D
  2287. 29 44 D
  2288. 49 72 D
  2289. S
  2290. V
  2291. /PSL_vecheadpen {4 W 0 0 1 C [] 0 B} def
  2292. {0 1 1 C} FS
  2293. O1
  2294. 4 W
  2295. V 4060 1319 T -134.157 R
  2296. U
  2297. V 3934 1189 T -134.157 R
  2298. PSL_vecheadpen
  2299. 8 W
  2300. 0 0 M
  2301. -360 96 D
  2302. 180 -96 D
  2303. -180 -96 D
  2304. P clip fs P S
  2305. U
  2306. /PSL_vecheadpen {4 W 0 0 1 C [] 0 B} def
  2307. 4 W
  2308. V 6416 4141 T 56.1218 R
  2309. U
  2310. V 6516 4290 T 56.1218 R
  2311. PSL_vecheadpen
  2312. 8 W
  2313. 0 0 M
  2314. -360 96 D
  2315. 180 -96 D
  2316. -180 -96 D
  2317. P clip fs P S
  2318. U
  2319. U
  2320. %%EndObject
  2321. 0 A
  2322. FQ
  2323. O0
  2324. 0 0 TM
  2325. % PostScript produced by:
  2326. %@GMT: gmt psxy -R-5/100/-5/55 -JM6i -O -K -Wfaint,red
  2327. %@PROJ: merc -5.00000000 100.00000000 -5.00000000 55.00000000 -5844273.267 5844273.267 -553583.847 7326837.715 +proj=merc +lon_0=47.5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  2328. %%BeginObject PSL_Layer_19
  2329. 0 setlinecap
  2330. 0 setlinejoin
  2331. 3.32551 setmiterlimit
  2332. 0 W
  2333. 1 0 0 C
  2334. 3429 341 M
  2335. 8 9 D
  2336. 9 8 D
  2337. 8 9 D
  2338. 9 8 D
  2339. 8 9 D
  2340. 78 76 D
  2341. 8 9 D
  2342. 9 8 D
  2343. 8 9 D
  2344. 9 8 D
  2345. 8 9 D
  2346. 138 136 D
  2347. 8 9 D
  2348. 9 8 D
  2349. 8 9 D
  2350. 9 8 D
  2351. 17 18 D
  2352. 9 8 D
  2353. 8 9 D
  2354. 9 8 D
  2355. 8 9 D
  2356. 9 8 D
  2357. 8 9 D
  2358. 18 17 D
  2359. 8 9 D
  2360. 9 8 D
  2361. 8 9 D
  2362. 9 8 D
  2363. 8 9 D
  2364. 18 17 D
  2365. 8 9 D
  2366. 9 8 D
  2367. 8 9 D
  2368. 9 8 D
  2369. 17 18 D
  2370. 9 8 D
  2371. 8 9 D
  2372. 9 8 D
  2373. 34 35 D
  2374. 9 8 D
  2375. 85 87 D
  2376. 9 8 D
  2377. 17 18 D
  2378. 9 8 D
  2379. 42 44 D
  2380. 18 17 D
  2381. 8 9 D
  2382. 9 8 D
  2383. 51 53 D
  2384. 9 8 D
  2385. 25 27 D
  2386. 18 17 D
  2387. 51 53 D
  2388. 9 8 D
  2389. 51 53 D
  2390. 77 80 D
  2391. 9 8 D
  2392. 68 72 D
  2393. 9 8 D
  2394. 223 234 D
  2395. 25 28 D
  2396. 57 60 D
  2397. 49 52 D
  2398. 29 32 D
  2399. 69 74 D
  2400. 39 43 D
  2401. 196 216 D
  2402. 147 166 D
  2403. 196 227 D
  2404. 88 104 D
  2405. 147 178 D
  2406. 98 121 D
  2407. 156 198 D
  2408. 187 244 D
  2409. 19 27 D
  2410. 118 160 D
  2411. 186 265 D
  2412. 98 144 D
  2413. 49 74 D
  2414. 78 120 D
  2415. S
  2416. %%EndObject
  2417. 0 A
  2418. FQ
  2419. O0
  2420. 0 0 TM
  2421. % PostScript produced by:
  2422. %@GMT: gmt psxy -R-5/100/-5/55 -JM6i -O -K -W2p+o0/1i+vb0.3i+gblack+h0.5
  2423. %@PROJ: merc -5.00000000 100.00000000 -5.00000000 55.00000000 -5844273.267 5844273.267 -553583.847 7326837.715 +proj=merc +lon_0=47.5 +k=1 +x_0=0 +y_0=0 +units=m +a=6378137.000 +b=6356752.314245 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
  2424. %%BeginObject PSL_Layer_20
  2425. 0 setlinecap
  2426. 0 setlinejoin
  2427. 3.32551 setmiterlimit
  2428. 33 W
  2429. 3620 531 M
  2430. 109 108 D
  2431. 8 9 D
  2432. 9 8 D
  2433. 8 9 D
  2434. 9 8 D
  2435. 17 18 D
  2436. 9 8 D
  2437. 8 9 D
  2438. 9 8 D
  2439. 8 9 D
  2440. 9 8 D
  2441. 8 9 D
  2442. 18 17 D
  2443. 8 9 D
  2444. 9 8 D
  2445. 8 9 D
  2446. 9 8 D
  2447. 8 9 D
  2448. 18 17 D
  2449. 8 9 D
  2450. 9 8 D
  2451. 8 9 D
  2452. 9 8 D
  2453. 17 18 D
  2454. 9 8 D
  2455. 8 9 D
  2456. 9 8 D
  2457. 34 35 D
  2458. 9 8 D
  2459. 85 87 D
  2460. 9 8 D
  2461. 17 18 D
  2462. 9 8 D
  2463. 42 44 D
  2464. 18 17 D
  2465. 8 9 D
  2466. 9 8 D
  2467. 51 53 D
  2468. 9 8 D
  2469. 25 27 D
  2470. 18 17 D
  2471. 51 53 D
  2472. 9 8 D
  2473. 51 53 D
  2474. 77 80 D
  2475. 9 8 D
  2476. 68 72 D
  2477. 9 8 D
  2478. 223 234 D
  2479. 25 28 D
  2480. 57 60 D
  2481. 49 52 D
  2482. 29 32 D
  2483. 69 74 D
  2484. 39 43 D
  2485. 196 216 D
  2486. 147 166 D
  2487. 196 227 D
  2488. 88 104 D
  2489. 147 178 D
  2490. 98 121 D
  2491. 157 199 D
  2492. 41 53 D
  2493. S
  2494. V
  2495. /PSL_vecheadpen {17 W 0 A [] 0 B} def
  2496. {0 A} FS
  2497. 4 W
  2498. V 3620 531 T -135.153 R
  2499. U
  2500. V 3429 341 T -135.153 R
  2501. PSL_vecheadpen
  2502. 33 W
  2503. 0 0 M
  2504. -360 96 D
  2505. 90 -96 D
  2506. -90 -96 D
  2507. P clip fs P S
  2508. U
  2509. U
  2510. %%EndObject
  2511. 0 A
  2512. FQ
  2513. O0
  2514. 0 6600 TM
  2515. % PostScript produced by:
  2516. %@GMT: gmt psbasemap -R-5/100/-5/55 -Jx0.0571428571429i -O -K -Baf -Y5.5i
  2517. %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
  2518. %%BeginObject PSL_Layer_21
  2519. 0 setlinecap
  2520. 0 setlinejoin
  2521. 3.32551 setmiterlimit
  2522. 25 W
  2523. 2 setlinecap
  2524. N 0 4114 M 0 -4114 D S
  2525. /PSL_A0_y 83 def
  2526. /PSL_A1_y 0 def
  2527. 8 W
  2528. N 0 343 M -83 0 D S
  2529. N 0 1714 M -83 0 D S
  2530. N 0 3086 M -83 0 D S
  2531. /PSL_AH0 0
  2532. /MM {neg exch M} def
  2533. PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2534. 200 F0
  2535. (0) sw mx
  2536. (20) sw mx
  2537. (40) sw mx
  2538. def
  2539. /PSL_A0_y PSL_A0_y 83 add def
  2540. 343 PSL_A0_y MM
  2541. (0) mr Z
  2542. 1714 PSL_A0_y MM
  2543. (20) mr Z
  2544. 3086 PSL_A0_y MM
  2545. (40) mr Z
  2546. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  2547. N 0 1029 M -42 0 D S
  2548. N 0 2400 M -42 0 D S
  2549. N 0 3771 M -42 0 D S
  2550. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2551. 7200 0 T
  2552. 25 W
  2553. N 0 4114 M 0 -4114 D S
  2554. /PSL_A0_y 83 def
  2555. /PSL_A1_y 0 def
  2556. 8 W
  2557. N 0 343 M 83 0 D S
  2558. N 0 1714 M 83 0 D S
  2559. N 0 3086 M 83 0 D S
  2560. /PSL_AH0 0
  2561. /MM {exch M} def
  2562. (0) sw mx
  2563. (20) sw mx
  2564. (40) sw mx
  2565. def
  2566. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  2567. 343 PSL_A0_y MM
  2568. (0) mr Z
  2569. 1714 PSL_A0_y MM
  2570. (20) mr Z
  2571. 3086 PSL_A0_y MM
  2572. (40) mr Z
  2573. N 0 1029 M 42 0 D S
  2574. N 0 2400 M 42 0 D S
  2575. N 0 3771 M 42 0 D S
  2576. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2577. -7200 0 T
  2578. 25 W
  2579. N 0 0 M 7200 0 D S
  2580. /PSL_A0_y 83 def
  2581. /PSL_A1_y 0 def
  2582. 8 W
  2583. N 343 0 M 0 -83 D S
  2584. N 1714 0 M 0 -83 D S
  2585. N 3086 0 M 0 -83 D S
  2586. N 4457 0 M 0 -83 D S
  2587. N 5829 0 M 0 -83 D S
  2588. N 7200 0 M 0 -83 D S
  2589. /PSL_AH0 0
  2590. /MM {neg M} def
  2591. (0) sh mx
  2592. (20) sh mx
  2593. (40) sh mx
  2594. (60) sh mx
  2595. (80) sh mx
  2596. (100) sh mx
  2597. def
  2598. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  2599. 343 PSL_A0_y MM
  2600. (0) bc Z
  2601. 1714 PSL_A0_y MM
  2602. (20) bc Z
  2603. 3086 PSL_A0_y MM
  2604. (40) bc Z
  2605. 4457 PSL_A0_y MM
  2606. (60) bc Z
  2607. 5829 PSL_A0_y MM
  2608. (80) bc Z
  2609. 7200 PSL_A0_y MM
  2610. (100) bc Z
  2611. N 1029 0 M 0 -42 D S
  2612. N 2400 0 M 0 -42 D S
  2613. N 3771 0 M 0 -42 D S
  2614. N 5143 0 M 0 -42 D S
  2615. N 6514 0 M 0 -42 D S
  2616. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2617. 0 4114 T
  2618. 25 W
  2619. N 0 0 M 7200 0 D S
  2620. /PSL_A0_y 83 def
  2621. /PSL_A1_y 0 def
  2622. 8 W
  2623. N 343 0 M 0 83 D S
  2624. N 1714 0 M 0 83 D S
  2625. N 3086 0 M 0 83 D S
  2626. N 4457 0 M 0 83 D S
  2627. N 5829 0 M 0 83 D S
  2628. N 7200 0 M 0 83 D S
  2629. /PSL_AH0 0
  2630. /MM {M} def
  2631. (0) sh mx
  2632. (20) sh mx
  2633. (40) sh mx
  2634. (60) sh mx
  2635. (80) sh mx
  2636. (100) sh mx
  2637. def
  2638. /PSL_A0_y PSL_A0_y 83 add def
  2639. 343 PSL_A0_y MM
  2640. (0) bc Z
  2641. 1714 PSL_A0_y MM
  2642. (20) bc Z
  2643. 3086 PSL_A0_y MM
  2644. (40) bc Z
  2645. 4457 PSL_A0_y MM
  2646. (60) bc Z
  2647. 5829 PSL_A0_y MM
  2648. (80) bc Z
  2649. 7200 PSL_A0_y MM
  2650. (100) bc Z
  2651. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  2652. N 1029 0 M 0 42 D S
  2653. N 2400 0 M 0 42 D S
  2654. N 3771 0 M 0 42 D S
  2655. N 5143 0 M 0 42 D S
  2656. N 6514 0 M 0 42 D S
  2657. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2658. 0 -4114 T
  2659. 0 setlinecap
  2660. %%EndObject
  2661. 0 A
  2662. FQ
  2663. O0
  2664. 0 0 TM
  2665. % PostScript produced by:
  2666. %@GMT: gmt psxy -R-5/100/-5/55 -Jx0.0571428571429i -O -K -W2p
  2667. %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
  2668. %%BeginObject PSL_Layer_22
  2669. 0 setlinecap
  2670. 0 setlinejoin
  2671. 3.32551 setmiterlimit
  2672. 33 W
  2673. 343 343 M
  2674. 3428 3428 D
  2675. S
  2676. %%EndObject
  2677. 0 A
  2678. FQ
  2679. O0
  2680. 0 0 TM
  2681. % PostScript produced by:
  2682. %@GMT: gmt psxy -R-5/100/-5/55 -Jx0.0571428571429i -O -K -Wfaint,red
  2683. %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
  2684. %%BeginObject PSL_Layer_23
  2685. 0 setlinecap
  2686. 0 setlinejoin
  2687. 3.32551 setmiterlimit
  2688. 0 W
  2689. 1 0 0 C
  2690. 686 343 M
  2691. 205 206 D
  2692. 412 411 D
  2693. 68 69 D
  2694. 412 411 D
  2695. 68 69 D
  2696. 412 411 D
  2697. 68 69 D
  2698. 412 411 D
  2699. 68 69 D
  2700. 412 411 D
  2701. 68 69 D
  2702. 412 411 D
  2703. 68 69 D
  2704. 343 342 D
  2705. S
  2706. %%EndObject
  2707. 0 A
  2708. FQ
  2709. O0
  2710. 0 0 TM
  2711. % PostScript produced by:
  2712. %@GMT: gmt psxy -R-5/100/-5/55 -Jx0.0571428571429i -O -K -W2p+o10+v0.15i+gblack
  2713. %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
  2714. %%BeginObject PSL_Layer_24
  2715. 0 setlinecap
  2716. 0 setlinejoin
  2717. 3.32551 setmiterlimit
  2718. 33 W
  2719. 1298 955 M
  2720. 73 74 D
  2721. 412 411 D
  2722. 68 69 D
  2723. 412 411 D
  2724. 68 69 D
  2725. 412 411 D
  2726. 68 69 D
  2727. 412 411 D
  2728. 68 69 D
  2729. 211 210 D
  2730. S
  2731. V
  2732. /PSL_vecheadpen {17 W 0 A [] 0 B} def
  2733. {0 A} FS
  2734. 4 W
  2735. V 1298 955 T -135 R
  2736. U
  2737. V 1171 828 T -135 R
  2738. PSL_vecheadpen
  2739. 33 W
  2740. 0 0 M
  2741. -180 48 D
  2742. 0 -96 D
  2743. P clip fs P S
  2744. U
  2745. /PSL_vecheadpen {17 W 0 A [] 0 B} def
  2746. 4 W
  2747. V 3502 3159 T 45 R
  2748. U
  2749. V 3629 3287 T 45 R
  2750. PSL_vecheadpen
  2751. 33 W
  2752. 0 0 M
  2753. -180 48 D
  2754. 0 -96 D
  2755. P clip fs P S
  2756. U
  2757. U
  2758. %%EndObject
  2759. 0 A
  2760. FQ
  2761. O0
  2762. 0 0 TM
  2763. % PostScript produced by:
  2764. %@GMT: gmt psxy -R-5/100/-5/55 -Jx0.0571428571429i -O -K -Wfaint,red
  2765. %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
  2766. %%BeginObject PSL_Layer_25
  2767. 0 setlinecap
  2768. 0 setlinejoin
  2769. 3.32551 setmiterlimit
  2770. 0 W
  2771. 1 0 0 C
  2772. 1029 343 M
  2773. 205 206 D
  2774. 69 68 D
  2775. 68 69 D
  2776. 275 274 D
  2777. 68 69 D
  2778. 69 68 D
  2779. 68 69 D
  2780. 275 274 D
  2781. 68 69 D
  2782. 69 68 D
  2783. 68 69 D
  2784. 275 274 D
  2785. 68 69 D
  2786. 69 68 D
  2787. 68 69 D
  2788. 275 274 D
  2789. 68 69 D
  2790. 69 68 D
  2791. 68 69 D
  2792. 275 274 D
  2793. 68 69 D
  2794. 69 68 D
  2795. 68 69 D
  2796. 275 274 D
  2797. 68 69 D
  2798. 69 68 D
  2799. 68 69 D
  2800. 206 205 D
  2801. S
  2802. %%EndObject
  2803. 0 A
  2804. FQ
  2805. O0
  2806. 0 0 TM
  2807. % PostScript produced by:
  2808. %@GMT: gmt psxy -R-5/100/-5/55 -Jx0.0571428571429i -O -K -W2p+o10+v0.4i+p0.25p,blue+h1
  2809. %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
  2810. %%BeginObject PSL_Layer_26
  2811. 0 setlinecap
  2812. 0 setlinejoin
  2813. 3.32551 setmiterlimit
  2814. 33 W
  2815. 1683 997 M
  2816. 31 32 D
  2817. 69 68 D
  2818. 68 69 D
  2819. 275 274 D
  2820. 68 69 D
  2821. 69 68 D
  2822. 68 69 D
  2823. 275 274 D
  2824. 68 69 D
  2825. 69 68 D
  2826. 68 69 D
  2827. 275 274 D
  2828. 68 69 D
  2829. 69 68 D
  2830. 68 69 D
  2831. 275 274 D
  2832. 68 69 D
  2833. 69 68 D
  2834. 68 69 D
  2835. 32 31 D
  2836. S
  2837. V
  2838. /PSL_vecheadpen {4 W 0 0 1 C [] 0 B} def
  2839. O1
  2840. 4 W
  2841. V 1683 997 T -135 R
  2842. U
  2843. V 1513 828 T -135 R
  2844. PSL_vecheadpen
  2845. 8 W
  2846. 0 0 M
  2847. -480 129 D
  2848. 240 -129 D
  2849. -240 -129 D
  2850. P clip fs P S
  2851. U
  2852. /PSL_vecheadpen {4 W 0 0 1 C [] 0 B} def
  2853. 4 W
  2854. V 3803 3117 T 45 R
  2855. U
  2856. V 3972 3287 T 45 R
  2857. PSL_vecheadpen
  2858. 8 W
  2859. 0 0 M
  2860. -480 129 D
  2861. 240 -129 D
  2862. -240 -129 D
  2863. P clip fs P S
  2864. U
  2865. U
  2866. %%EndObject
  2867. 0 A
  2868. FQ
  2869. O0
  2870. 0 0 TM
  2871. % PostScript produced by:
  2872. %@GMT: gmt psxy -R-5/100/-5/55 -Jx0.0571428571429i -O -K -Wfaint,red
  2873. %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
  2874. %%BeginObject PSL_Layer_27
  2875. 0 setlinecap
  2876. 0 setlinejoin
  2877. 3.32551 setmiterlimit
  2878. 0 W
  2879. 1 0 0 C
  2880. 1371 343 M
  2881. 138 137 D
  2882. 68 69 D
  2883. 69 68 D
  2884. 68 69 D
  2885. 69 68 D
  2886. 68 69 D
  2887. 138 137 D
  2888. 68 69 D
  2889. 69 68 D
  2890. 68 69 D
  2891. 69 68 D
  2892. 68 69 D
  2893. 138 137 D
  2894. 68 69 D
  2895. 69 68 D
  2896. 68 69 D
  2897. 69 68 D
  2898. 68 69 D
  2899. 138 137 D
  2900. 68 69 D
  2901. 69 68 D
  2902. 68 69 D
  2903. 69 68 D
  2904. 68 69 D
  2905. 138 137 D
  2906. 68 69 D
  2907. 69 68 D
  2908. 68 69 D
  2909. 69 68 D
  2910. 68 69 D
  2911. 138 137 D
  2912. 68 69 D
  2913. 69 68 D
  2914. 68 69 D
  2915. 69 68 D
  2916. 68 69 D
  2917. 138 137 D
  2918. 68 69 D
  2919. 69 68 D
  2920. 68 69 D
  2921. 69 68 D
  2922. 68 69 D
  2923. 69 68 D
  2924. S
  2925. %%EndObject
  2926. 0 A
  2927. FQ
  2928. O0
  2929. 0 0 TM
  2930. % PostScript produced by:
  2931. %@GMT: gmt psxy -R-5/100/-5/55 -Jx0.0571428571429i -O -K -W2p+o10+v0.4i+p0.25p,blue+h0
  2932. %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
  2933. %%BeginObject PSL_Layer_28
  2934. 0 setlinecap
  2935. 0 setlinejoin
  2936. 3.32551 setmiterlimit
  2937. 33 W
  2938. 2196 1167 M
  2939. 135 136 D
  2940. 138 137 D
  2941. 68 69 D
  2942. 69 68 D
  2943. 68 69 D
  2944. 69 68 D
  2945. 68 69 D
  2946. 138 137 D
  2947. 68 69 D
  2948. 69 68 D
  2949. 68 69 D
  2950. 69 68 D
  2951. 68 69 D
  2952. 138 137 D
  2953. 68 69 D
  2954. 69 68 D
  2955. 68 69 D
  2956. 69 68 D
  2957. 68 69 D
  2958. 205 204 D
  2959. S
  2960. V
  2961. /PSL_vecheadpen {4 W 0 0 1 C [] 0 B} def
  2962. O1
  2963. 4 W
  2964. V 2196 1167 T -135 R
  2965. U
  2966. V 1856 828 T -135 R
  2967. PSL_vecheadpen
  2968. 8 W
  2969. 0 0 M
  2970. -480 129 D
  2971. 0 -258 D
  2972. P clip fs P S
  2973. U
  2974. /PSL_vecheadpen {4 W 0 0 1 C [] 0 B} def
  2975. 4 W
  2976. V 3976 2947 T 45 R
  2977. U
  2978. V 4315 3287 T 45 R
  2979. PSL_vecheadpen
  2980. 8 W
  2981. 0 0 M
  2982. -480 129 D
  2983. 0 -258 D
  2984. P clip fs P S
  2985. U
  2986. U
  2987. %%EndObject
  2988. 0 A
  2989. FQ
  2990. O0
  2991. 0 0 TM
  2992. % PostScript produced by:
  2993. %@GMT: gmt psxy -R-5/100/-5/55 -Jx0.0571428571429i -O -K -Wfaint,red
  2994. %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
  2995. %%BeginObject PSL_Layer_29
  2996. 0 setlinecap
  2997. 0 setlinejoin
  2998. 3.32551 setmiterlimit
  2999. 0 W
  3000. 1 0 0 C
  3001. 1714 343 M
  3002. 69 68 D
  3003. 137 138 D
  3004. 69 68 D
  3005. 68 69 D
  3006. 69 68 D
  3007. 68 69 D
  3008. 69 68 D
  3009. 137 138 D
  3010. 69 68 D
  3011. 68 69 D
  3012. 69 68 D
  3013. 68 69 D
  3014. 69 68 D
  3015. 137 138 D
  3016. 69 68 D
  3017. 68 69 D
  3018. 69 68 D
  3019. 68 69 D
  3020. 69 68 D
  3021. 137 138 D
  3022. 69 68 D
  3023. 68 69 D
  3024. 69 68 D
  3025. 68 69 D
  3026. 69 68 D
  3027. 137 138 D
  3028. 69 68 D
  3029. 68 69 D
  3030. 69 68 D
  3031. 68 69 D
  3032. 69 68 D
  3033. 137 138 D
  3034. 69 68 D
  3035. 68 69 D
  3036. 69 68 D
  3037. 68 69 D
  3038. 69 68 D
  3039. 137 138 D
  3040. 69 68 D
  3041. 68 69 D
  3042. 69 68 D
  3043. 68 69 D
  3044. 69 68 D
  3045. S
  3046. %%EndObject
  3047. 0 A
  3048. FQ
  3049. O0
  3050. 0 0 TM
  3051. % PostScript produced by:
  3052. %@GMT: gmt psxy -R-5/100/-5/55 -Jx0.0571428571429i -O -K -W2p+o1i/0.5i+ve0.3i+p1.5p,blue+gpink+ec+vb0.3i+p1.5p,blue+ggreen+es
  3053. %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
  3054. %%BeginObject PSL_Layer_30
  3055. 0 setlinecap
  3056. 0 setlinejoin
  3057. 3.32551 setmiterlimit
  3058. 33 W
  3059. 2629 1257 M
  3060. 45 46 D
  3061. 69 68 D
  3062. 137 138 D
  3063. 69 68 D
  3064. 68 69 D
  3065. 69 68 D
  3066. 68 69 D
  3067. 69 68 D
  3068. 137 138 D
  3069. 69 68 D
  3070. 68 69 D
  3071. 69 68 D
  3072. 68 69 D
  3073. 69 68 D
  3074. 137 138 D
  3075. 69 68 D
  3076. 68 69 D
  3077. 69 68 D
  3078. 68 69 D
  3079. 69 68 D
  3080. 137 138 D
  3081. 69 68 D
  3082. 68 69 D
  3083. 69 68 D
  3084. 118 119 D
  3085. S
  3086. V
  3087. /PSL_vecheadpen {25 W 0 0 1 C [] 0 B} def
  3088. {0 1 0 C} FS
  3089. O1
  3090. 25 W
  3091. V 2629 1257 T -135 R
  3092. N 0 0 M 93 0 D S
  3093. U
  3094. V 2563 1191 T -135 R
  3095. PSL_vecheadpen
  3096. 50 W
  3097. -93 93 M
  3098. 186 0 D
  3099. 0 -186 D
  3100. -186 0 D
  3101. P clip fs P S U
  3102. /PSL_vecheadpen {25 W 0 0 1 C [] 0 B} def
  3103. {1 0.753 0.796 C} FS
  3104. 25 W
  3105. V 4644 3273 T 45 R
  3106. N 0 0 M 105 0 D S
  3107. U
  3108. V 4719 3347 T 45 R
  3109. PSL_vecheadpen
  3110. 50 W
  3111. N 0 0 105 0 360 arc
  3112. P clip fs P S U
  3113. U
  3114. %%EndObject
  3115. 0 A
  3116. FQ
  3117. O0
  3118. 0 0 TM
  3119. % PostScript produced by:
  3120. %@GMT: gmt psxy -R-5/100/-5/55 -Jx0.0571428571429i -O -K -Wfaint,red
  3121. %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
  3122. %%BeginObject PSL_Layer_31
  3123. 0 setlinecap
  3124. 0 setlinejoin
  3125. 3.32551 setmiterlimit
  3126. 0 W
  3127. 1 0 0 C
  3128. 2057 343 M
  3129. 69 68 D
  3130. 274 275 D
  3131. 69 68 D
  3132. 68 69 D
  3133. 69 68 D
  3134. 274 275 D
  3135. 69 68 D
  3136. 68 69 D
  3137. 69 68 D
  3138. 274 275 D
  3139. 69 68 D
  3140. 68 69 D
  3141. 69 68 D
  3142. 274 275 D
  3143. 69 68 D
  3144. 68 69 D
  3145. 69 68 D
  3146. 274 275 D
  3147. 69 68 D
  3148. 68 69 D
  3149. 69 68 D
  3150. 274 275 D
  3151. 69 68 D
  3152. 68 69 D
  3153. 69 68 D
  3154. 274 275 D
  3155. 69 68 D
  3156. 68 69 D
  3157. 69 68 D
  3158. S
  3159. %%EndObject
  3160. 0 A
  3161. FQ
  3162. O0
  3163. 0 0 TM
  3164. % PostScript produced by:
  3165. %@GMT: gmt psxy -R-5/100/-5/55 -Jx0.0571428571429i -O -K -W2p+o1i/10+v0.3i+gred
  3166. %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
  3167. %%BeginObject PSL_Layer_32
  3168. 0 setlinecap
  3169. 0 setlinejoin
  3170. 3.32551 setmiterlimit
  3171. 33 W
  3172. 3160 1446 M
  3173. 269 268 D
  3174. 68 69 D
  3175. 69 68 D
  3176. 274 275 D
  3177. 69 68 D
  3178. 68 69 D
  3179. 69 68 D
  3180. 274 275 D
  3181. 69 68 D
  3182. 68 69 D
  3183. 69 68 D
  3184. 220 221 D
  3185. S
  3186. V
  3187. /PSL_vecheadpen {17 W 0 A [] 0 B} def
  3188. {1 0 0 C} FS
  3189. 4 W
  3190. V 3160 1446 T -135 R
  3191. U
  3192. V 2906 1191 T -135 R
  3193. PSL_vecheadpen
  3194. 33 W
  3195. 0 0 M
  3196. -360 96 D
  3197. 0 -192 D
  3198. P clip fs P S
  3199. U
  3200. /PSL_vecheadpen {17 W 0 A [] 0 B} def
  3201. 4 W
  3202. V 4746 3032 T 45 R
  3203. U
  3204. V 5001 3287 T 45 R
  3205. PSL_vecheadpen
  3206. 33 W
  3207. 0 0 M
  3208. -360 96 D
  3209. 0 -192 D
  3210. P clip fs P S
  3211. U
  3212. U
  3213. %%EndObject
  3214. 0 A
  3215. FQ
  3216. O0
  3217. 0 0 TM
  3218. % PostScript produced by:
  3219. %@GMT: gmt psxy -R-5/100/-5/55 -Jx0.0571428571429i -O -K -Wfaint,red
  3220. %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
  3221. %%BeginObject PSL_Layer_33
  3222. 0 setlinecap
  3223. 0 setlinejoin
  3224. 3.32551 setmiterlimit
  3225. 0 W
  3226. 1 0 0 C
  3227. 2400 343 M
  3228. 69 68 D
  3229. 411 412 D
  3230. 69 68 D
  3231. 411 412 D
  3232. 69 68 D
  3233. 411 412 D
  3234. 69 68 D
  3235. 411 412 D
  3236. 69 68 D
  3237. 411 412 D
  3238. 69 68 D
  3239. 411 412 D
  3240. 69 68 D
  3241. 411 412 D
  3242. 69 68 D
  3243. S
  3244. %%EndObject
  3245. 0 A
  3246. FQ
  3247. O0
  3248. 0 0 TM
  3249. % PostScript produced by:
  3250. %@GMT: gmt psxy -R-5/100/-5/55 -Jx0.0571428571429i -O -K -W2p+o10/0+ve0.3i+gblue
  3251. %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
  3252. %%BeginObject PSL_Layer_34
  3253. 0 setlinecap
  3254. 0 setlinejoin
  3255. 3.32551 setmiterlimit
  3256. 33 W
  3257. 2885 828 M
  3258. 64 63 D
  3259. 411 412 D
  3260. 69 68 D
  3261. 411 412 D
  3262. 69 68 D
  3263. 411 412 D
  3264. 69 68 D
  3265. 411 412 D
  3266. 69 68 D
  3267. 411 412 D
  3268. 69 68 D
  3269. 225 226 D
  3270. S
  3271. V
  3272. /PSL_vecheadpen {17 W 0 A [] 0 B} def
  3273. {0 0 1 C} FS
  3274. 4 W
  3275. V 5574 3517 T 45 R
  3276. U
  3277. V 5829 3771 T 45 R
  3278. PSL_vecheadpen
  3279. 33 W
  3280. 0 0 M
  3281. -360 96 D
  3282. 0 -192 D
  3283. P clip fs P S
  3284. U
  3285. U
  3286. %%EndObject
  3287. 0 A
  3288. FQ
  3289. O0
  3290. 0 0 TM
  3291. % PostScript produced by:
  3292. %@GMT: gmt psxy -R-5/100/-5/55 -Jx0.0571428571429i -O -K -Wfaint,red
  3293. %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
  3294. %%BeginObject PSL_Layer_35
  3295. 0 setlinecap
  3296. 0 setlinejoin
  3297. 3.32551 setmiterlimit
  3298. 0 W
  3299. 1 0 0 C
  3300. 2743 343 M
  3301. 3428 3428 D
  3302. S
  3303. %%EndObject
  3304. 0 A
  3305. FQ
  3306. O0
  3307. 0 0 TM
  3308. % PostScript produced by:
  3309. %@GMT: gmt psxy -R-5/100/-5/55 -Jx0.0571428571429i -O -K -W2p+o0/10+ve0.3i+p1.5p,blue+et
  3310. %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
  3311. %%BeginObject PSL_Layer_36
  3312. 0 setlinecap
  3313. 0 setlinejoin
  3314. 3.32551 setmiterlimit
  3315. 33 W
  3316. 2743 343 M
  3317. 2944 2944 D
  3318. S
  3319. V
  3320. /PSL_vecheadpen {25 W 0 0 1 C [] 0 B} def
  3321. O1
  3322. 25 W
  3323. V 5687 3287 T 45 R
  3324. N 0 0 M 1 0 D S
  3325. U
  3326. V 5687 3287 T 45 R
  3327. PSL_vecheadpen
  3328. 50 W
  3329. 0 -96 M
  3330. 0 192 D
  3331. S
  3332. U
  3333. U
  3334. %%EndObject
  3335. 0 A
  3336. FQ
  3337. O0
  3338. 0 0 TM
  3339. % PostScript produced by:
  3340. %@GMT: gmt psxy -R-5/100/-5/55 -Jx0.0571428571429i -O -K -Wfaint,red
  3341. %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
  3342. %%BeginObject PSL_Layer_37
  3343. 0 setlinecap
  3344. 0 setlinejoin
  3345. 3.32551 setmiterlimit
  3346. 0 W
  3347. 1 0 0 C
  3348. 3086 343 M
  3349. 205 206 D
  3350. 412 411 D
  3351. 68 69 D
  3352. 412 411 D
  3353. 68 69 D
  3354. 412 411 D
  3355. 68 69 D
  3356. 412 411 D
  3357. 68 69 D
  3358. 412 411 D
  3359. 68 69 D
  3360. 412 411 D
  3361. 68 69 D
  3362. 343 342 D
  3363. S
  3364. %%EndObject
  3365. 0 A
  3366. FQ
  3367. O0
  3368. 0 0 TM
  3369. % PostScript produced by:
  3370. %@GMT: gmt psxy -R-5/100/-5/55 -Jx0.0571428571429i -O -K -W2p+o1i/0+v0.3i+p0.25p,blue+gcyan+h1
  3371. %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
  3372. %%BeginObject PSL_Layer_38
  3373. 0 setlinecap
  3374. 0 setlinejoin
  3375. 3.32551 setmiterlimit
  3376. 33 W
  3377. 4062 1319 M
  3378. 189 190 D
  3379. 412 411 D
  3380. 68 69 D
  3381. 412 411 D
  3382. 68 69 D
  3383. 412 411 D
  3384. 68 69 D
  3385. 412 411 D
  3386. 68 69 D
  3387. 216 215 D
  3388. S
  3389. V
  3390. /PSL_vecheadpen {4 W 0 0 1 C [] 0 B} def
  3391. {0 1 1 C} FS
  3392. O1
  3393. 4 W
  3394. V 4062 1319 T -135 R
  3395. U
  3396. V 3934 1191 T -135 R
  3397. PSL_vecheadpen
  3398. 8 W
  3399. 0 0 M
  3400. -360 96 D
  3401. 180 -96 D
  3402. -180 -96 D
  3403. P clip fs P S
  3404. U
  3405. /PSL_vecheadpen {4 W 0 0 1 C [] 0 B} def
  3406. 4 W
  3407. V 6387 3644 T 45 R
  3408. U
  3409. V 6514 3771 T 45 R
  3410. PSL_vecheadpen
  3411. 8 W
  3412. 0 0 M
  3413. -360 96 D
  3414. 180 -96 D
  3415. -180 -96 D
  3416. P clip fs P S
  3417. U
  3418. U
  3419. %%EndObject
  3420. 0 A
  3421. FQ
  3422. O0
  3423. 0 0 TM
  3424. % PostScript produced by:
  3425. %@GMT: gmt psxy -R-5/100/-5/55 -Jx0.0571428571429i -O -K -Wfaint,red
  3426. %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
  3427. %%BeginObject PSL_Layer_39
  3428. 0 setlinecap
  3429. 0 setlinejoin
  3430. 3.32551 setmiterlimit
  3431. 0 W
  3432. 1 0 0 C
  3433. 3429 343 M
  3434. 205 206 D
  3435. 69 68 D
  3436. 68 69 D
  3437. 275 274 D
  3438. 68 69 D
  3439. 69 68 D
  3440. 68 69 D
  3441. 275 274 D
  3442. 68 69 D
  3443. 69 68 D
  3444. 68 69 D
  3445. 275 274 D
  3446. 68 69 D
  3447. 69 68 D
  3448. 68 69 D
  3449. 275 274 D
  3450. 68 69 D
  3451. 69 68 D
  3452. 68 69 D
  3453. 275 274 D
  3454. 68 69 D
  3455. 69 68 D
  3456. 68 69 D
  3457. 275 274 D
  3458. 68 69 D
  3459. 69 68 D
  3460. 68 69 D
  3461. 206 205 D
  3462. S
  3463. %%EndObject
  3464. 0 A
  3465. FQ
  3466. O0
  3467. 0 0 TM
  3468. % PostScript produced by:
  3469. %@GMT: gmt psxy -R-5/100/-5/55 -Jx0.0571428571429i -O -K -W2p+o0/1i+vb0.3i+gblack+h0.5
  3470. %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
  3471. %%BeginObject PSL_Layer_40
  3472. 0 setlinecap
  3473. 0 setlinejoin
  3474. 3.32551 setmiterlimit
  3475. 33 W
  3476. 3619 534 M
  3477. 84 83 D
  3478. 68 69 D
  3479. 275 274 D
  3480. 68 69 D
  3481. 69 68 D
  3482. 68 69 D
  3483. 275 274 D
  3484. 68 69 D
  3485. 69 68 D
  3486. 68 69 D
  3487. 275 274 D
  3488. 68 69 D
  3489. 69 68 D
  3490. 68 69 D
  3491. 275 274 D
  3492. 68 69 D
  3493. 69 68 D
  3494. 68 69 D
  3495. 318 317 D
  3496. S
  3497. V
  3498. /PSL_vecheadpen {17 W 0 A [] 0 B} def
  3499. {0 A} FS
  3500. 4 W
  3501. V 3619 534 T -135 R
  3502. U
  3503. V 3429 343 T -135 R
  3504. PSL_vecheadpen
  3505. 33 W
  3506. 0 0 M
  3507. -360 96 D
  3508. 90 -96 D
  3509. -90 -96 D
  3510. P clip fs P S
  3511. U
  3512. U
  3513. %%EndObject
  3514. 0 A
  3515. FQ
  3516. O0
  3517. 0 0 TM
  3518. % PostScript produced by:
  3519. %@GMT: gmt psxy -R-5/100/-5/55 -Jx0.0571428571429i -O -T
  3520. %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
  3521. %%BeginObject PSL_Layer_41
  3522. 0 setlinecap
  3523. 0 setlinejoin
  3524. 3.32551 setmiterlimit
  3525. %%EndObject
  3526. grestore
  3527. PSL_movie_completion /PSL_movie_completion {} def
  3528. %PSL_Begin_Trailer
  3529. %%PageTrailer
  3530. U
  3531. showpage
  3532. %%Trailer
  3533. end
  3534. %%EOF
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...