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
|
- %!PS-Adobe-3.0
- %%BoundingBox: 0 0 612 792
- %%HiResBoundingBox: 0 0 612.0000 792.0000
- %%Title: GMT v6.0.0 [64-bit] Document from psbasemap
- %%Creator: GMT6
- %%For: unknown
- %%DocumentNeededResources: font Helvetica
- %%CreationDate: Sat Feb 9 21:32:13 2019
- %%LanguageLevel: 2
- %%DocumentData: Clean7Bit
- %%Orientation: Portrait
- %%Pages: 1
- %%EndComments
- %%BeginProlog
- 250 dict begin
- /! {bind def} bind def
- /# {load def}!
- /A /setgray #
- /B /setdash #
- /C /setrgbcolor #
- /D /rlineto #
- /E {dup stringwidth pop}!
- /F /fill #
- /G /rmoveto #
- /H /sethsbcolor #
- /I /setpattern #
- /K /setcmykcolor #
- /L /lineto #
- /M /moveto #
- /N /newpath #
- /P /closepath #
- /R /rotate #
- /S /stroke #
- /T /translate #
- /U /grestore #
- /V /gsave #
- /W /setlinewidth #
- /Y {findfont exch scalefont setfont}!
- /Z /show #
- /FP {true charpath flattenpath}!
- /MU {matrix setmatrix}!
- /MS {/SMat matrix currentmatrix def}!
- /MR {SMat setmatrix}!
- /edef {exch def}!
- /FS {/fc edef /fs {V fc F U} def}!
- /FQ {/fs {} def}!
- /O0 {/os {N} def}!
- /O1 {/os {P S} def}!
- /FO {fs os}!
- /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}!
- /Sb {M dup 0 D exch 0 exch D neg 0 D FO}!
- /SB {MS T /BoxR edef /BoxW edef /BoxH edef BoxR 0 M
- 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}!
- /Sc {N 3 -1 roll 0 360 arc FO}!
- /Sd {M 4 {dup} repeat 0 G neg dup dup D exch D D FO}!
- /Se {N MS T R scale 0 0 1 0 360 arc MR FO}!
- /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}!
- /Sh {M MS dup 0 G -120 R dup 0 D 4 {-60 R dup 0 D} repeat pop MR FO}!
- /Si {M MS dup neg 0 exch G 60 R 1.732050808 mul dup 0 D 120 R 0 D MR FO}!
- /Sj {M MS R dup -2 div 2 index -2 div G dup 0 D exch 0 exch D neg 0 D MR FO}!
- /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}!
- /Sp {N 3 -1 roll 0 360 arc fs N}!
- /SP {M {D} repeat FO}!
- /Sr {M dup -2 div 2 index -2 div G dup 0 D exch 0 exch D neg 0 D FO}!
- /SR {MS T /BoxR edef /BoxW edef /BoxH edef BoxR BoxW -2 div BoxH -2 div T BoxR 0 M
- 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}!
- /Ss {M 1.414213562 mul dup dup dup -2 div dup G 0 D 0 exch D neg 0 D FO}!
- /St {M MS dup 0 exch G -60 R 1.732050808 mul dup 0 D -120 R 0 D MR FO}!
- /SV {0 exch M 0 D D D D D 0 D FO}!
- /Sv {0 0 M D D 0 D D D D D 0 D D FO}!
- /Sw {2 copy M 5 2 roll arc FO}!
- /Sx {M 1.414213562 mul 5 {dup} repeat -2 div dup G D neg 0 G neg D S}!
- /Sy {M dup 0 exch G dup -2 mul dup 0 exch D S}!
- /S+ {M dup 0 G dup -2 mul dup 0 D exch dup G 0 exch D S}!
- /S- {M dup 0 G dup -2 mul dup 0 D S}!
- /sw {stringwidth pop}!
- /sh {V MU 0 0 M FP pathbbox N 4 1 roll pop pop pop U}!
- /sd {V MU 0 0 M FP pathbbox N pop pop exch pop U}!
- /sH {V MU 0 0 M FP pathbbox N exch pop exch sub exch pop U}!
- /sb {E exch sh}!
- /bl {}!
- /bc {E -2 div 0 G}!
- /br {E neg 0 G}!
- /ml {dup 0 exch sh -2 div G}!
- /mc {dup E -2 div exch sh -2 div G}!
- /mr {dup E neg exch sh -2 div G}!
- /tl {dup 0 exch sh neg G}!
- /tc {dup E -2 div exch sh neg G}!
- /tr {dup E neg exch sh neg G}!
- /mx {2 copy lt {exch} if pop}!
- /PSL_xorig 0 def /PSL_yorig 0 def
- /TM {2 copy T PSL_yorig add /PSL_yorig edef PSL_xorig add /PSL_xorig edef}!
- /PSL_reencode {findfont dup length dict begin
- {1 index /FID ne {def}{pop pop} ifelse} forall
- exch /Encoding edef currentdict end definefont pop
- }!
- /PSL_eps_begin {
- /PSL_eps_state save def
- /PSL_dict_count countdictstack def
- /PSL_op_count count 1 sub def
- userdict begin
- /showpage {} def
- 0 setgray 0 setlinecap 1 setlinewidth
- 0 setlinejoin 10 setmiterlimit [] 0 setdash newpath
- /languagelevel where
- {pop languagelevel 1 ne {false setstrokeadjust false setoverprint} if} if
- }!
- /PSL_eps_end {
- count PSL_op_count sub {pop} repeat
- countdictstack PSL_dict_count sub {end} repeat
- PSL_eps_state restore
- }!
- /PSL_transp {
- /.setopacityalpha where {pop .setblendmode .setopacityalpha}{
- /pdfmark where {pop [ /BM exch /CA exch dup /ca exch /SetTransparency pdfmark}
- {pop pop} ifelse} ifelse
- }!
- /Standard+_Encoding [
- /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
- /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
- /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
- /.notdef /threequarters /threesuperior /trademark /twosuperior /yacute /ydieresis /zcaron
- /space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright
- /parenleft /parenright /asterisk /plus /comma /hyphen /period /slash
- /zero /one /two /three /four /five /six /seven
- /eight /nine /colon /semicolon /less /equal /greater /question
- /at /A /B /C /D /E /F /G
- /H /I /J /K /L /M /N /O
- /P /Q /R /S /T /U /V /W
- /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore
- /quoteleft /a /b /c /d /e /f /g
- /h /i /j /k /l /m /n /o
- /p /q /r /s /t /u /v /w
- /x /y /z /braceleft /bar /braceright /asciitilde /florin
- /Atilde /Ccedilla /Eth /Lslash /Ntilde /Otilde /Scaron /Thorn
- /Yacute /Ydieresis /Zcaron /atilde /brokenbar /ccedilla /copyright /degree
- /divide /eth /logicalnot /lslash /minus /mu /multiply /ntilde
- /onehalf /onequarter /onesuperior /otilde /plusminus /registered /scaron /thorn
- /.notdef /exclamdown /cent /sterling /fraction /yen /florin /section
- /currency /quotesingle /quotedblleft /guillemotleft /guilsinglleft /guilsinglright /fi /fl
- /Aacute /endash /dagger /daggerdbl /periodcentered /Acircumflex /paragraph /bullet
- /quotesinglbase /quotedblbase /quotedblright /guillemotright /ellipsis /perthousand /Adieresis /questiondown
- /Agrave /grave /acute /circumflex /tilde /macron /breve /dotaccent
- /dieresis /Eacute /ring /cedilla /Ecircumflex /hungarumlaut /ogonek /caron
- /emdash /Edieresis /Egrave /Iacute /Icircumflex /Idieresis /Igrave /Oacute
- /Ocircumflex /Odieresis /Ograve /Uacute /Ucircumflex /Udieresis /Ugrave /aacute
- /acircumflex /AE /adieresis /ordfeminine /agrave /eacute /ecircumflex /edieresis
- /egrave /Oslash /OE /ordmasculine /iacute /icircumflex /idieresis /igrave
- /oacute /ae /ocircumflex /odieresis /ograve /dotlessi /uacute /ucircumflex
- /udieresis /oslash /oe /germandbls /ugrave /Aring /aring /ydieresis
- ] def
- /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
- /F0 {/Helvetica Y}!
- /F1 {/Helvetica-Bold Y}!
- /F2 {/Helvetica-Oblique Y}!
- /F3 {/Helvetica-BoldOblique Y}!
- /F4 {/Times-Roman Y}!
- /F5 {/Times-Bold Y}!
- /F6 {/Times-Italic Y}!
- /F7 {/Times-BoldItalic Y}!
- /F8 {/Courier Y}!
- /F9 {/Courier-Bold Y}!
- /F10 {/Courier-Oblique Y}!
- /F11 {/Courier-BoldOblique Y}!
- /F12 {/Symbol Y}!
- /F13 {/AvantGarde-Book Y}!
- /F14 {/AvantGarde-BookOblique Y}!
- /F15 {/AvantGarde-Demi Y}!
- /F16 {/AvantGarde-DemiOblique Y}!
- /F17 {/Bookman-Demi Y}!
- /F18 {/Bookman-DemiItalic Y}!
- /F19 {/Bookman-Light Y}!
- /F20 {/Bookman-LightItalic Y}!
- /F21 {/Helvetica-Narrow Y}!
- /F22 {/Helvetica-Narrow-Bold Y}!
- /F23 {/Helvetica-Narrow-Oblique Y}!
- /F24 {/Helvetica-Narrow-BoldOblique Y}!
- /F25 {/NewCenturySchlbk-Roman Y}!
- /F26 {/NewCenturySchlbk-Italic Y}!
- /F27 {/NewCenturySchlbk-Bold Y}!
- /F28 {/NewCenturySchlbk-BoldItalic Y}!
- /F29 {/Palatino-Roman Y}!
- /F30 {/Palatino-Italic Y}!
- /F31 {/Palatino-Bold Y}!
- /F32 {/Palatino-BoldItalic Y}!
- /F33 {/ZapfChancery-MediumItalic Y}!
- /F34 {/ZapfDingbats Y}!
- /F35 {/Ryumin-Light-EUC-H Y}!
- /F36 {/Ryumin-Light-EUC-V Y}!
- /F37 {/GothicBBB-Medium-EUC-H Y}!
- /F38 {/GothicBBB-Medium-EUC-V Y}!
- /PSL_pathtextdict 26 dict def
- /PSL_pathtext
- {PSL_pathtextdict begin
- /ydepth exch def
- /textheight exch def
- /just exch def
- /offset exch def
- /str exch def
- /pathdist 0 def
- /setdist offset def
- /charcount 0 def
- /justy just 4 idiv textheight mul 2 div neg ydepth sub def
- V flattenpath
- {movetoproc} {linetoproc}
- {curvetoproc} {closepathproc}
- pathforall
- U N
- end
- } def
- PSL_pathtextdict begin
- /movetoproc
- { /newy exch def /newx exch def
- /firstx newx def /firsty newy def
- /ovr 0 def
- newx newy transform
- /cpy exch def /cpx exch def
- } def
- /linetoproc
- { /oldx newx def /oldy newy def
- /newy exch def /newx exch def
- /dx newx oldx sub def
- /dy newy oldy sub def
- /dist dx dup mul dy dup mul add sqrt def
- dist 0 ne
- { /dsx dx dist div ovr mul def
- /dsy dy dist div ovr mul def
- oldx dsx add oldy dsy add transform
- /cpy exch def /cpx exch def
- /pathdist pathdist dist add def
- {setdist pathdist le
- {charcount str length lt
- {setchar} {exit} ifelse}
- { /ovr setdist pathdist sub def
- exit}
- ifelse
- } loop
- } if
- } def
- /curvetoproc
- { (ERROR: No curveto's after flattenpath!)
- print
- } def
- /closepathproc
- {firstx firsty linetoproc
- firstx firsty movetoproc
- } def
- /setchar
- { /char str charcount 1 getinterval def
- /charcount charcount 1 add def
- /charwidth char stringwidth pop def
- V cpx cpy itransform T
- dy dx atan R
- 0 justy M
- char show
- 0 justy neg G
- currentpoint transform
- /cpy exch def /cpx exch def
- U /setdist setdist charwidth add def
- } def
- end
- /PSL_set_label_heights
- {
- /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
- /PSL_heights PSL_n_labels array def
- 0 1 PSL_n_labels_minus_1
- { /psl_k exch def
- /psl_label PSL_label_str psl_k get def
- PSL_label_font psl_k get cvx exec
- psl_label sH /PSL_height edef
- PSL_heights psl_k PSL_height put
- } for
- } def
- /PSL_curved_path_labels
- { /psl_bits exch def
- /PSL_placetext psl_bits 2 and 2 eq def
- /PSL_clippath psl_bits 4 and 4 eq def
- /PSL_strokeline false def
- /PSL_fillbox psl_bits 128 and 128 eq def
- /PSL_drawbox psl_bits 256 and 256 eq def
- /PSL_n_paths1 PSL_n_paths 1 sub def
- /PSL_usebox PSL_fillbox PSL_drawbox or def
- PSL_clippath {clipsave N clippath} if
- /psl_k 0 def
- /psl_p 0 def
- 0 1 PSL_n_paths1
- { /psl_kk exch def
- /PSL_n PSL_path_n psl_kk get def
- /PSL_m PSL_label_n psl_kk get def
- /PSL_x PSL_path_x psl_k PSL_n getinterval def
- /PSL_y PSL_path_y psl_k PSL_n getinterval def
- /PSL_node_tmp PSL_label_node psl_p PSL_m getinterval def
- /PSL_angle_tmp PSL_label_angle psl_p PSL_m getinterval def
- /PSL_str_tmp PSL_label_str psl_p PSL_m getinterval def
- /PSL_fnt_tmp PSL_label_font psl_p PSL_m getinterval def
- PSL_curved_path_label
- /psl_k psl_k PSL_n add def
- /psl_p psl_p PSL_m add def
- } for
- PSL_clippath {PSL_eoclip} if N
- } def
- /PSL_curved_path_label
- {
- /PSL_n1 PSL_n 1 sub def
- /PSL_m1 PSL_m 1 sub def
- PSL_CT_calcstringwidth
- PSL_CT_calclinedist
- PSL_CT_excludelabels
- PSL_CT_addcutpoints
- /PSL_nn1 PSL_nn 1 sub def
- /n 0 def
- /k 0 def
- /j 0 def
- /PSL_seg 0 def
- /PSL_xp PSL_nn array def
- /PSL_yp PSL_nn array def
- PSL_xp 0 PSL_xx 0 get put
- PSL_yp 0 PSL_yy 0 get put
- 1 1 PSL_nn1
- { /i exch def
- /node_type PSL_kind i get def
- /j j 1 add def
- PSL_xp j PSL_xx i get put
- PSL_yp j PSL_yy i get put
- node_type 1 eq
- {n 0 eq
- {PSL_CT_drawline}
- { PSL_CT_reversepath
- PSL_CT_textline} ifelse
- /j 0 def
- PSL_xp j PSL_xx i get put
- PSL_yp j PSL_yy i get put
- } if
- } for
- n 0 eq {PSL_CT_drawline} if
- } def
- /PSL_CT_textline
- { /psl_fnt PSL_fnt k get def
- psl_fnt (FS) search {pop pop pop /PSL_fmode 2 def} {pop /PSL_fmode 1 def} ifelse
- psl_fnt cvx exec
- /PSL_height PSL_heights k get def
- PSL_placetext {PSL_CT_placelabel} if
- PSL_clippath {PSL_CT_clippath} if
- /n 0 def /k k 1 add def
- } def
- /PSL_CT_calcstringwidth
- { /PSL_width_tmp PSL_m array def
- 0 1 PSL_m1
- { /i exch def
- PSL_fnt_tmp i get cvx exec
- PSL_width_tmp i PSL_str_tmp i get stringwidth pop put
- } for
- } def
- /PSL_CT_calclinedist
- { /PSL_newx PSL_x 0 get def
- /PSL_newy PSL_y 0 get def
- /dist 0.0 def
- /PSL_dist PSL_n array def
- PSL_dist 0 0.0 put
- 1 1 PSL_n1
- { /i exch def
- /PSL_oldx PSL_newx def
- /PSL_oldy PSL_newy def
- /PSL_newx PSL_x i get def
- /PSL_newy PSL_y i get def
- /dx PSL_newx PSL_oldx sub def
- /dy PSL_newy PSL_oldy sub def
- /dist dist dx dx mul dy dy mul add sqrt add def
- PSL_dist i dist put
- } for
- } def
- /PSL_CT_excludelabels
- { /k 0 def
- /PSL_width PSL_m array def
- /PSL_angle PSL_m array def
- /PSL_node PSL_m array def
- /PSL_str PSL_m array def
- /PSL_fnt PSL_m array def
- /lastdist PSL_dist PSL_n1 get def
- 0 1 PSL_m1
- { /i exch def
- /dist PSL_dist PSL_node_tmp i get get def
- /halfwidth PSL_width_tmp i get 2 div PSL_gap_x add def
- /L_dist dist halfwidth sub def
- /R_dist dist halfwidth add def
- L_dist 0 gt R_dist lastdist lt and
- {
- PSL_width k PSL_width_tmp i get put
- PSL_node k PSL_node_tmp i get put
- PSL_angle k PSL_angle_tmp i get put
- PSL_str k PSL_str_tmp i get put
- PSL_fnt k PSL_fnt_tmp i get put
- /k k 1 add def
- } if
- } for
- /PSL_m k def
- /PSL_m1 PSL_m 1 sub def
- } def
- /PSL_CT_addcutpoints
- { /k 0 def
- /PSL_nc PSL_m 2 mul 1 add def
- /PSL_cuts PSL_nc array def
- /PSL_nc1 PSL_nc 1 sub def
- 0 1 PSL_m1
- { /i exch def
- /dist PSL_dist PSL_node i get get def
- /halfwidth PSL_width i get 2 div PSL_gap_x add def
- PSL_cuts k dist halfwidth sub put
- /k k 1 add def
- PSL_cuts k dist halfwidth add put
- /k k 1 add def
- } for
- PSL_cuts k 100000.0 put
- /PSL_nn PSL_n PSL_m 2 mul add def
- /PSL_xx PSL_nn array def
- /PSL_yy PSL_nn array def
- /PSL_kind PSL_nn array def
- /j 0 def
- /k 0 def
- /dist 0.0 def
- 0 1 PSL_n1
- { /i exch def
- /last_dist dist def
- /dist PSL_dist i get def
- k 1 PSL_nc1
- { /kk exch def
- /this_cut PSL_cuts kk get def
- dist this_cut gt
- { /ds dist last_dist sub def
- /f ds 0.0 eq {0.0} {dist this_cut sub ds div} ifelse def
- /i1 i 0 eq {0} {i 1 sub} ifelse def
- PSL_xx j PSL_x i get dup PSL_x i1 get sub f mul sub put
- PSL_yy j PSL_y i get dup PSL_y i1 get sub f mul sub put
- PSL_kind j 1 put
- /j j 1 add def
- /k k 1 add def
- } if
- } for
- dist PSL_cuts k get le
- {PSL_xx j PSL_x i get put PSL_yy j PSL_y i get put
- PSL_kind j 0 put
- /j j 1 add def
- } if
- } for
- } def
- /PSL_CT_reversepath
- {PSL_xp j get PSL_xp 0 get lt
- {0 1 j 2 idiv
- { /left exch def
- /right j left sub def
- /tmp PSL_xp left get def
- PSL_xp left PSL_xp right get put
- PSL_xp right tmp put
- /tmp PSL_yp left get def
- PSL_yp left PSL_yp right get put
- PSL_yp right tmp put
- } for
- } if
- } def
- /PSL_CT_placelabel
- {
- /PSL_just PSL_label_justify k get def
- /PSL_height PSL_heights k get def
- /psl_label PSL_str k get def
- /psl_depth psl_label sd def
- PSL_usebox
- {PSL_CT_clippath
- PSL_fillbox
- {V PSL_setboxrgb fill U} if
- PSL_drawbox
- {V PSL_setboxpen S U} if N
- } if
- PSL_CT_placeline psl_label PSL_gap_x PSL_just PSL_height psl_depth PSL_pathtext
- } def
- /PSL_CT_clippath
- {
- /H PSL_height 2 div PSL_gap_y add def
- /xoff j 1 add array def
- /yoff j 1 add array def
- /angle 0 def
- 0 1 j {
- /ii exch def
- /x PSL_xp ii get def
- /y PSL_yp ii get def
- ii 0 eq {
- /x1 PSL_xp 1 get def
- /y1 PSL_yp 1 get def
- /dx x1 x sub def
- /dy y1 y sub def
- }
- { /i1 ii 1 sub def
- /x1 PSL_xp i1 get def
- /y1 PSL_yp i1 get def
- /dx x x1 sub def
- /dy y y1 sub def
- } ifelse
- dx 0.0 eq dy 0.0 eq and not
- { /angle dy dx atan 90 add def} if
- /sina angle sin def
- /cosa angle cos def
- xoff ii H cosa mul put
- yoff ii H sina mul put
- } for
- PSL_xp 0 get xoff 0 get add PSL_yp 0 get yoff 0 get add M
- 1 1 j {
- /ii exch def
- PSL_xp ii get xoff ii get add PSL_yp ii get yoff ii get add L
- } for
- j -1 0 {
- /ii exch def
- PSL_xp ii get xoff ii get sub PSL_yp ii get yoff ii get sub L
- } for P
- } def
- /PSL_CT_drawline
- {
- /str 20 string def
- PSL_strokeline
- {PSL_CT_placeline S} if
- /PSL_seg PSL_seg 1 add def
- /n 1 def
- } def
- /PSL_CT_placeline
- {PSL_xp 0 get PSL_yp 0 get M
- 1 1 j { /ii exch def PSL_xp ii get PSL_yp ii get L} for
- } def
- /PSL_draw_path_lines
- {
- /PSL_n_paths1 PSL_n_paths 1 sub def
- V
- /psl_start 0 def
- 0 1 PSL_n_paths1
- { /psl_k exch def
- /PSL_n PSL_path_n psl_k get def
- /PSL_n1 PSL_n 1 sub def
- PSL_path_pen psl_k get cvx exec
- N
- PSL_path_x psl_start get PSL_path_y psl_start get M
- 1 1 PSL_n1
- { /psl_i exch def
- /psl_kk psl_i psl_start add def
- PSL_path_x psl_kk get PSL_path_y psl_kk get L
- } for
- /psl_xclose PSL_path_x psl_kk get PSL_path_x psl_start get sub def
- /psl_yclose PSL_path_y psl_kk get PSL_path_y psl_start get sub def
- psl_xclose 0 eq psl_yclose 0 eq and { P } if
- S
- /psl_start psl_start PSL_n add def
- } for
- U
- } def
- /PSL_straight_path_labels
- {
- /psl_bits exch def
- /PSL_placetext psl_bits 2 and 2 eq def
- /PSL_rounded psl_bits 32 and 32 eq def
- /PSL_fillbox psl_bits 128 and 128 eq def
- /PSL_drawbox psl_bits 256 and 256 eq def
- /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
- /PSL_usebox PSL_fillbox PSL_drawbox or def
- 0 1 PSL_n_labels_minus_1
- { /psl_k exch def
- PSL_ST_prepare_text
- PSL_usebox
- { PSL_rounded
- {PSL_ST_textbox_round}
- {PSL_ST_textbox_rect}
- ifelse
- PSL_fillbox {V PSL_setboxrgb fill U} if
- PSL_drawbox {V PSL_setboxpen S U} if
- N
- } if
- PSL_placetext {PSL_ST_place_label} if
- } for
- } def
- /PSL_straight_path_clip
- {
- /psl_bits exch def
- /PSL_rounded psl_bits 32 and 32 eq def
- /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
- N clipsave clippath
- 0 1 PSL_n_labels_minus_1
- { /psl_k exch def
- PSL_ST_prepare_text
- PSL_rounded
- {PSL_ST_textbox_round}
- {PSL_ST_textbox_rect}
- ifelse
- } for
- PSL_eoclip N
- } def
- /PSL_ST_prepare_text
- {
- /psl_xp PSL_txt_x psl_k get def
- /psl_yp PSL_txt_y psl_k get def
- /psl_label PSL_label_str psl_k get def
- /psl_fnt PSL_label_font psl_k get def
- psl_fnt cvx exec
- psl_fnt (FS) search {pop pop pop /PSL_fmode 2 def} {pop /PSL_fmode 1 def} ifelse
- /PSL_height PSL_heights psl_k get def
- /psl_boxH PSL_height PSL_gap_y 2 mul add def
- /PSL_just PSL_label_justify psl_k get def
- /PSL_justx PSL_just 4 mod 1 sub 2 div neg def
- /PSL_justy PSL_just 4 idiv 2 div neg def
- /psl_SW psl_label stringwidth pop def
- /psl_boxW psl_SW PSL_gap_x 2 mul add def
- /psl_x0 psl_SW PSL_justx mul def
- /psl_y0 PSL_justy PSL_height mul def
- /psl_angle PSL_label_angle psl_k get def
- } def
- /PSL_ST_textbox_rect
- {
- psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
- PSL_gap_x neg PSL_gap_y neg M
- 0 psl_boxH D psl_boxW 0 D 0 psl_boxH neg D P
- psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
- } def
- /PSL_ST_textbox_round
- {
- /psl_BoxR PSL_gap_x PSL_gap_y lt {PSL_gap_x} {PSL_gap_y} ifelse def
- /psl_xd PSL_gap_x psl_BoxR sub def
- /psl_yd PSL_gap_y psl_BoxR sub def
- /psl_xL PSL_gap_x neg def
- /psl_yB PSL_gap_y neg def
- /psl_yT psl_boxH psl_yB add def
- /psl_H2 PSL_height psl_yd 2 mul add def
- /psl_W2 psl_SW psl_xd 2 mul add def
- /psl_xR psl_xL psl_boxW add def
- /psl_x0 psl_SW PSL_justx mul def
- psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
- psl_xL psl_yd M
- psl_xL psl_yT psl_xR psl_yT psl_BoxR arct psl_W2 0 D
- psl_xR psl_yT psl_xR psl_yB psl_BoxR arct 0 psl_H2 neg D
- psl_xR psl_yB psl_xL psl_yB psl_BoxR arct psl_W2 neg 0 D
- psl_xL psl_yB psl_xL psl_yd psl_BoxR arct P
- psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
- } def
- /PSL_ST_place_label
- {
- V psl_xp psl_yp T psl_angle R
- psl_SW PSL_justx mul psl_y0 M
- psl_label dup sd neg 0 exch G
- PSL_fmode 1 eq {show} {false charpath V S U fs N} ifelse
- U
- } def
- /PSL_nclip 0 def
- /PSL_clip {clip /PSL_nclip PSL_nclip 1 add def} def
- /PSL_eoclip {eoclip /PSL_nclip PSL_nclip 1 add def} def
- /PSL_cliprestore {cliprestore /PSL_nclip PSL_nclip 1 sub def} def
- %%EndProlog
- %%BeginSetup
- /PSLevel /languagelevel where {pop languagelevel} {1} ifelse def
- PSLevel 1 gt { << /PageSize [612 792] /ImagingBBox null >> setpagedevice } if
- %%EndSetup
- %%Page: 1 1
- %%BeginPageSetup
- V 0.06 0.06 scale
- %%EndPageSetup
- /PSL_page_xsize 10200 def
- /PSL_page_ysize 13200 def
- /PSL_completion {} def
- /PSL_movie_completion {} def
- %PSL_End_Header
- gsave
- 0 A
- FQ
- O0
- -3600 PSL_xorig sub PSL_page_xsize 2 div add 1200 TM
- % PostScript produced by:
- %@GMT: gmt psbasemap -R-5/100/-5/55 -JM6i -P -K -Baf -Xc
- %@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
- %GMTBoundingBox: -216 72 432 291.255
- %%BeginObject PSL_Layer_1
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 25 W
- 8 W
- N 343 0 M 0 -83 D S
- N 343 4854 M 0 84 D S
- N 1371 0 M 0 -83 D S
- N 1371 4854 M 0 84 D S
- N 2400 0 M 0 -83 D S
- N 2400 4854 M 0 84 D S
- N 3429 0 M 0 -83 D S
- N 3429 4854 M 0 84 D S
- N 4457 0 M 0 -83 D S
- N 4457 4854 M 0 84 D S
- N 5486 0 M 0 -83 D S
- N 5486 4854 M 0 84 D S
- N 6514 0 M 0 -83 D S
- N 6514 4854 M 0 84 D S
- N 0 341 M -83 0 D S
- N 7200 341 M 83 0 D S
- N 0 1375 M -83 0 D S
- N 7200 1375 M 83 0 D S
- N 0 2486 M -83 0 D S
- N 7200 2486 M 83 0 D S
- N 0 3785 M -83 0 D S
- N 7200 3785 M 83 0 D S
- 83 W
- 1 A
- N -42 0 M 0 341 D S
- N 7242 0 M 0 341 D S
- 0 A
- N -42 341 M 0 341 D S
- N 7242 341 M 0 341 D S
- 1 A
- N -42 682 M 0 344 D S
- N 7242 682 M 0 344 D S
- 0 A
- N -42 1026 M 0 349 D S
- N 7242 1026 M 0 349 D S
- 1 A
- N -42 1375 M 0 357 D S
- N 7242 1375 M 0 357 D S
- 0 A
- N -42 1732 M 0 369 D S
- N 7242 1732 M 0 369 D S
- 1 A
- N -42 2101 M 0 385 D S
- N 7242 2101 M 0 385 D S
- 0 A
- N -42 2486 M 0 405 D S
- N 7242 2486 M 0 405 D S
- 1 A
- N -42 2891 M 0 430 D S
- N 7242 2891 M 0 430 D S
- 0 A
- N -42 3321 M 0 464 D S
- N 7242 3321 M 0 464 D S
- 1 A
- N -42 3785 M 0 507 D S
- N 7242 3785 M 0 507 D S
- 0 A
- N -42 4292 M 0 562 D S
- N 7242 4292 M 0 562 D S
- 1 A
- N 0 -42 M 343 0 D S
- N 0 4896 M 343 0 D S
- 0 A
- N 343 -42 M 343 0 D S
- N 343 4896 M 343 0 D S
- 1 A
- N 686 -42 M 343 0 D S
- N 686 4896 M 343 0 D S
- 0 A
- N 1029 -42 M 342 0 D S
- N 1029 4896 M 342 0 D S
- 1 A
- N 1371 -42 M 343 0 D S
- N 1371 4896 M 343 0 D S
- 0 A
- N 1714 -42 M 343 0 D S
- N 1714 4896 M 343 0 D S
- 1 A
- N 2057 -42 M 343 0 D S
- N 2057 4896 M 343 0 D S
- 0 A
- N 2400 -42 M 343 0 D S
- N 2400 4896 M 343 0 D S
- 1 A
- N 2743 -42 M 343 0 D S
- N 2743 4896 M 343 0 D S
- 0 A
- N 3086 -42 M 343 0 D S
- N 3086 4896 M 343 0 D S
- 1 A
- N 3429 -42 M 342 0 D S
- N 3429 4896 M 342 0 D S
- 0 A
- N 3771 -42 M 343 0 D S
- N 3771 4896 M 343 0 D S
- 1 A
- N 4114 -42 M 343 0 D S
- N 4114 4896 M 343 0 D S
- 0 A
- N 4457 -42 M 343 0 D S
- N 4457 4896 M 343 0 D S
- 1 A
- N 4800 -42 M 343 0 D S
- N 4800 4896 M 343 0 D S
- 0 A
- N 5143 -42 M 343 0 D S
- N 5143 4896 M 343 0 D S
- 1 A
- N 5486 -42 M 343 0 D S
- N 5486 4896 M 343 0 D S
- 0 A
- N 5829 -42 M 342 0 D S
- N 5829 4896 M 342 0 D S
- 1 A
- N 6171 -42 M 343 0 D S
- N 6171 4896 M 343 0 D S
- 0 A
- N 6514 -42 M 343 0 D S
- N 6514 4896 M 343 0 D S
- 1 A
- N 6857 -42 M 343 0 D S
- N 6857 4896 M 343 0 D S
- 0 A
- 8 W
- N -83 0 M 7366 0 D S
- N -83 -83 M 7366 0 D S
- N 7200 -83 M 0 5021 D S
- N 7283 -83 M 0 5021 D S
- N 7283 4854 M -7366 0 D S
- N 7283 4938 M -7366 0 D S
- N 0 4938 M 0 -5021 D S
- N -83 4938 M 0 -5021 D S
- 343 -167 M PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
- 200 F0
- (0�) tc Z
- 343 5021 M (0�) bc Z
- 1371 -167 M (15�) tc Z
- 1371 5021 M (15�) bc Z
- 2400 -167 M (30�) tc Z
- 2400 5021 M (30�) bc Z
- 3429 -167 M (45�) tc Z
- 3429 5021 M (45�) bc Z
- 4457 -167 M (60�) tc Z
- 4457 5021 M (60�) bc Z
- 5486 -167 M (75�) tc Z
- 5486 5021 M (75�) bc Z
- 6514 -167 M (90�) tc Z
- 6514 5021 M (90�) bc Z
- -167 341 M (0�) mr Z
- 7367 341 M (0�) ml Z
- -167 1375 M (15�) mr Z
- 7367 1375 M (15�) ml Z
- -167 2486 M (30�) mr Z
- 7367 2486 M (30�) ml Z
- -167 3785 M (45�) mr Z
- 7367 3785 M (45�) ml Z
- %%EndObject
- 0 A
- FQ
- O0
- 0 0 TM
- % PostScript produced by:
- %@GMT: gmt psxy -R-5/100/-5/55 -JM6i -O -K -W2p
- %@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
- %%BeginObject PSL_Layer_2
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 33 W
- 343 341 M
- 8 9 D
- 78 76 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 78 76 D
- 8 9 D
- 9 8 D
- 34 35 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 35 34 D
- 8 9 D
- 9 8 D
- 8 9 D
- 52 51 D
- 8 9 D
- 52 51 D
- 8 9 D
- 35 34 D
- 8 9 D
- 9 8 D
- 8 9 D
- 18 17 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 17 18 D
- 9 8 D
- 8 9 D
- 9 8 D
- 68 70 D
- 9 8 D
- 17 18 D
- 9 8 D
- 42 44 D
- 18 17 D
- 8 9 D
- 9 8 D
- 25 27 D
- 18 17 D
- 85 88 D
- 9 8 D
- 34 36 D
- 9 8 D
- 34 36 D
- 9 8 D
- 42 45 D
- 18 17 D
- 60 63 D
- 231 242 D
- 17 19 D
- 36 37 D
- 29 32 D
- 167 179 D
- 235 260 D
- 98 110 D
- 19 23 D
- 69 78 D
- 19 23 D
- 40 45 D
- 19 23 D
- 69 80 D
- 39 47 D
- 206 248 D
- 147 183 D
- 39 49 D
- 39 51 D
- 59 75 D
- 58 77 D
- 89 118 D
- 88 119 D
- 29 41 D
- 79 109 D
- 68 98 D
- 108 157 D
- 147 221 D
- 19 31 D
- S
- %%EndObject
- 0 A
- FQ
- O0
- 0 0 TM
- % PostScript produced by:
- %@GMT: gmt psxy -R-5/100/-5/55 -JM6i -O -K -Wfaint,red
- %@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
- %%BeginObject PSL_Layer_3
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 0 W
- 1 0 0 C
- 686 341 M
- 8 9 D
- 9 8 D
- 8 9 D
- 78 76 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 78 76 D
- 51 52 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 18 17 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 35 34 D
- 8 9 D
- 9 8 D
- 8 9 D
- 35 34 D
- 8 9 D
- 9 8 D
- 8 9 D
- 18 17 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 17 18 D
- 9 8 D
- 8 9 D
- 9 8 D
- 34 35 D
- 9 8 D
- 42 44 D
- 18 17 D
- 8 9 D
- 9 8 D
- 68 70 D
- 9 8 D
- 17 18 D
- 9 8 D
- 25 27 D
- 9 8 D
- 94 97 D
- 9 8 D
- 51 53 D
- 77 80 D
- 9 8 D
- 68 72 D
- 18 17 D
- 214 225 D
- 25 28 D
- 67 70 D
- 29 32 D
- 157 169 D
- 196 217 D
- 107 121 D
- 89 101 D
- 19 23 D
- 69 79 D
- 29 35 D
- 79 92 D
- 186 225 D
- 147 182 D
- 29 38 D
- 118 150 D
- 58 77 D
- 79 104 D
- 19 27 D
- 20 26 D
- 19 27 D
- 89 121 D
- 166 236 D
- 59 86 D
- 29 44 D
- 79 117 D
- 68 106 D
- S
- %%EndObject
- 0 A
- FQ
- O0
- 0 0 TM
- % PostScript produced by:
- %@GMT: gmt psxy -R-5/100/-5/55 -JM6i -O -K -W2p+o1000k+v0.15i+gblack
- %@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
- %%BeginObject PSL_Layer_4
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 33 W
- 1250 904 M
- 27 26 D
- 43 44 D
- 9 8 D
- 42 44 D
- 18 17 D
- 8 9 D
- 9 8 D
- 68 70 D
- 9 8 D
- 17 18 D
- 9 8 D
- 25 27 D
- 9 8 D
- 94 97 D
- 9 8 D
- 51 53 D
- 77 80 D
- 9 8 D
- 68 72 D
- 18 17 D
- 214 225 D
- 25 28 D
- 67 70 D
- 29 32 D
- 157 169 D
- 196 217 D
- 107 121 D
- 89 101 D
- 19 23 D
- 69 79 D
- 29 35 D
- 79 92 D
- 186 225 D
- 147 182 D
- 29 38 D
- 118 150 D
- 58 77 D
- 13 16 D
- S
- V
- /PSL_vecheadpen {17 W 0 A [] 0 B} def
- {0 A} FS
- 4 W
- V 1250 904 T -134.816 R
- U
- V 1123 776 T -134.816 R
- PSL_vecheadpen
- 33 W
- 0 0 M
- -180 48 D
- 0 -96 D
- P clip fs P S
- U
- /PSL_vecheadpen {17 W 0 A [] 0 B} def
- 4 W
- V 3500 3414 T 52.8596 R
- U
- V 3608 3558 T 52.8596 R
- PSL_vecheadpen
- 33 W
- 0 0 M
- -180 48 D
- 0 -96 D
- P clip fs P S
- U
- U
- %%EndObject
- 0 A
- FQ
- O0
- 0 0 TM
- % PostScript produced by:
- %@GMT: gmt psxy -R-5/100/-5/55 -JM6i -O -K -Wfaint,red
- %@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
- %%BeginObject PSL_Layer_5
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 0 W
- 1 0 0 C
- 1029 341 M
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 78 76 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 138 136 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 17 18 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 18 17 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 18 17 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 17 18 D
- 9 8 D
- 8 9 D
- 9 8 D
- 34 35 D
- 9 8 D
- 85 87 D
- 9 8 D
- 17 18 D
- 9 8 D
- 42 44 D
- 18 17 D
- 8 9 D
- 9 8 D
- 51 53 D
- 9 8 D
- 25 27 D
- 18 17 D
- 51 53 D
- 9 8 D
- 51 53 D
- 77 80 D
- 9 8 D
- 68 72 D
- 9 8 D
- 223 234 D
- 25 28 D
- 57 60 D
- 49 52 D
- 29 32 D
- 69 74 D
- 39 43 D
- 196 216 D
- 147 166 D
- 196 227 D
- 88 104 D
- 147 178 D
- 98 121 D
- 156 198 D
- 187 244 D
- 19 27 D
- 118 160 D
- 186 265 D
- 98 144 D
- 49 74 D
- 78 120 D
- S
- %%EndObject
- 0 A
- FQ
- O0
- 0 0 TM
- % PostScript produced by:
- %@GMT: gmt psxy -R-5/100/-5/55 -JM6i -O -K -W2p+o1000k+v0.4i+p0.25p,blue+h1
- %@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
- %%BeginObject PSL_Layer_6
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 33 W
- 1636 946 M
- 78 80 D
- 9 8 D
- 17 18 D
- 9 8 D
- 42 44 D
- 18 17 D
- 8 9 D
- 9 8 D
- 51 53 D
- 9 8 D
- 25 27 D
- 18 17 D
- 51 53 D
- 9 8 D
- 51 53 D
- 77 80 D
- 9 8 D
- 68 72 D
- 9 8 D
- 223 234 D
- 25 28 D
- 57 60 D
- 49 52 D
- 29 32 D
- 69 74 D
- 39 43 D
- 196 216 D
- 147 166 D
- 196 227 D
- 88 104 D
- 147 178 D
- 98 121 D
- 156 198 D
- 61 78 D
- 23 31 D
- S
- V
- /PSL_vecheadpen {4 W 0 0 1 C [] 0 B} def
- O1
- 4 W
- V 1636 946 T -134.839 R
- U
- V 1466 776 T -134.839 R
- PSL_vecheadpen
- 8 W
- 0 0 M
- -480 129 D
- 240 -129 D
- -240 -129 D
- P clip fs P S
- U
- /PSL_vecheadpen {4 W 0 0 1 C [] 0 B} def
- 4 W
- V 3806 3367 T 52.4326 R
- U
- V 3952 3557 T 52.4326 R
- PSL_vecheadpen
- 8 W
- 0 0 M
- -480 129 D
- 240 -129 D
- -240 -129 D
- P clip fs P S
- U
- U
- %%EndObject
- 0 A
- FQ
- O0
- 0 0 TM
- % PostScript produced by:
- %@GMT: gmt psxy -R-5/100/-5/55 -JM6i -O -K -Wfaint,red
- %@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
- %%BeginObject PSL_Layer_7
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 0 W
- 1 0 0 C
- 1371 341 M
- 18 17 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 78 76 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 52 51 D
- 8 9 D
- 78 76 D
- 8 9 D
- 9 8 D
- 34 35 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 17 18 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 17 18 D
- 9 8 D
- 8 9 D
- 9 8 D
- 34 35 D
- 9 8 D
- 102 104 D
- 18 17 D
- 8 9 D
- 9 8 D
- 68 70 D
- 9 8 D
- 17 18 D
- 9 8 D
- 51 53 D
- 9 8 D
- 25 27 D
- 9 8 D
- 180 185 D
- 17 18 D
- 9 8 D
- 68 72 D
- 9 8 D
- 222 234 D
- 73 77 D
- 29 32 D
- 79 84 D
- 29 32 D
- 108 117 D
- 196 218 D
- 156 178 D
- 30 34 D
- 19 23 D
- 79 91 D
- 29 35 D
- 59 69 D
- 147 178 D
- 108 133 D
- 137 173 D
- 29 38 D
- 167 218 D
- 147 200 D
- 68 96 D
- 108 154 D
- 19 29 D
- 79 115 D
- 137 209 D
- S
- %%EndObject
- 0 A
- FQ
- O0
- 0 0 TM
- % PostScript produced by:
- %@GMT: gmt psxy -R-5/100/-5/55 -JM6i -O -K -W2p+o1000k+v0.4i+p0.25p,blue+h0
- %@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
- %%BeginObject PSL_Layer_8
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 33 W
- 2147 1117 M
- 10 9 D
- 63 65 D
- 9 8 D
- 25 27 D
- 9 8 D
- 180 185 D
- 17 18 D
- 9 8 D
- 68 72 D
- 9 8 D
- 222 234 D
- 73 77 D
- 29 32 D
- 79 84 D
- 29 32 D
- 108 117 D
- 196 218 D
- 156 178 D
- 30 34 D
- 19 23 D
- 79 91 D
- 29 35 D
- 59 69 D
- 147 178 D
- 108 133 D
- 93 117 D
- S
- V
- /PSL_vecheadpen {4 W 0 0 1 C [] 0 B} def
- O1
- 4 W
- V 2147 1117 T -134.533 R
- U
- V 1811 775 T -134.533 R
- PSL_vecheadpen
- 8 W
- 0 0 M
- -480 129 D
- 0 -258 D
- P clip fs P S
- U
- /PSL_vecheadpen {4 W 0 0 1 C [] 0 B} def
- 4 W
- V 4002 3177 T 51.6406 R
- U
- V 4300 3553 T 51.6406 R
- PSL_vecheadpen
- 8 W
- 0 0 M
- -480 129 D
- 0 -258 D
- P clip fs P S
- U
- U
- %%EndObject
- 0 A
- FQ
- O0
- 0 0 TM
- % PostScript produced by:
- %@GMT: gmt psxy -R-5/100/-5/55 -JM6i -O -K -Wfaint,red
- %@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
- %%BeginObject PSL_Layer_9
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 0 W
- 1 0 0 C
- 1714 341 M
- 35 34 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 78 76 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 35 34 D
- 8 9 D
- 9 8 D
- 8 9 D
- 78 76 D
- 51 52 D
- 9 8 D
- 8 9 D
- 9 8 D
- 34 35 D
- 9 8 D
- 8 9 D
- 9 8 D
- 34 35 D
- 9 8 D
- 102 104 D
- 35 34 D
- 8 9 D
- 9 8 D
- 17 18 D
- 9 8 D
- 42 44 D
- 18 17 D
- 8 9 D
- 9 8 D
- 111 114 D
- 9 8 D
- 25 27 D
- 18 17 D
- 59 62 D
- 18 17 D
- 25 27 D
- 9 8 D
- 103 107 D
- 17 18 D
- 9 8 D
- 222 234 D
- 63 67 D
- 108 115 D
- 68 75 D
- 79 85 D
- 97 109 D
- 89 98 D
- 186 212 D
- 108 125 D
- 29 35 D
- 59 69 D
- 137 166 D
- 108 132 D
- 19 25 D
- 20 24 D
- 19 25 D
- 30 37 D
- 19 25 D
- 40 50 D
- 29 38 D
- 147 192 D
- 147 199 D
- 39 55 D
- 118 166 D
- 68 99 D
- 69 101 D
- 137 209 D
- S
- %%EndObject
- 0 A
- FQ
- O0
- 0 0 TM
- % PostScript produced by:
- %@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
- %@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
- %%BeginObject PSL_Layer_10
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 33 W
- 2628 1257 M
- 18 19 D
- 10 9 D
- 52 55 D
- 18 17 D
- 25 27 D
- 9 8 D
- 103 107 D
- 17 18 D
- 9 8 D
- 222 234 D
- 63 67 D
- 108 115 D
- 68 75 D
- 79 85 D
- 97 109 D
- 89 98 D
- 186 212 D
- 108 125 D
- 29 35 D
- 59 69 D
- 137 166 D
- 108 132 D
- 19 25 D
- 20 24 D
- 19 25 D
- 30 37 D
- 19 25 D
- 40 50 D
- 29 38 D
- 147 192 D
- 147 199 D
- 19 27 D
- 15 20 D
- S
- V
- /PSL_vecheadpen {25 W 0 0 1 C [] 0 B} def
- {0 1 0 C} FS
- O1
- 25 W
- V 2628 1257 T -134.296 R
- N 0 0 M 93 0 D S
- U
- V 2562 1190 T -134.296 R
- PSL_vecheadpen
- 50 W
- -93 93 M
- 186 0 D
- 0 -186 D
- -186 0 D
- P clip fs P S U
- /PSL_vecheadpen {25 W 0 0 1 C [] 0 B} def
- {1 0.753 0.796 C} FS
- 25 W
- V 4746 3709 T 54.2241 R
- N 0 0 M 105 0 D S
- U
- V 4807 3794 T 54.2241 R
- PSL_vecheadpen
- 50 W
- N 0 0 105 0 360 arc
- P clip fs P S U
- U
- %%EndObject
- 0 A
- FQ
- O0
- 0 0 TM
- % PostScript produced by:
- %@GMT: gmt psxy -R-5/100/-5/55 -JM6i -O -K -Wfaint,red
- %@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
- %%BeginObject PSL_Layer_11
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 0 W
- 1 0 0 C
- 2057 341 M
- 52 51 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 78 76 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 18 17 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 138 136 D
- 51 52 D
- 9 8 D
- 102 104 D
- 35 34 D
- 8 9 D
- 9 8 D
- 8 9 D
- 18 17 D
- 8 9 D
- 9 8 D
- 68 70 D
- 9 8 D
- 17 18 D
- 9 8 D
- 42 44 D
- 18 17 D
- 51 53 D
- 9 8 D
- 25 27 D
- 9 8 D
- 68 71 D
- 18 17 D
- 25 27 D
- 9 8 D
- 51 53 D
- 146 152 D
- 154 162 D
- 112 119 D
- 29 32 D
- 118 127 D
- 186 205 D
- 147 166 D
- 196 226 D
- 147 174 D
- 195 239 D
- 89 111 D
- 19 25 D
- 30 37 D
- 68 89 D
- 108 141 D
- 108 145 D
- 19 27 D
- 128 177 D
- 97 140 D
- 40 57 D
- 29 44 D
- 30 43 D
- 68 103 D
- 69 106 D
- S
- %%EndObject
- 0 A
- FQ
- O0
- 0 0 TM
- % PostScript produced by:
- %@GMT: gmt psxy -R-5/100/-5/55 -JM6i -O -K -W2p+o1i/1000n+v0.3i+gred
- %@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
- %%BeginObject PSL_Layer_12
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 33 W
- 3157 1448 M
- 143 149 D
- 154 162 D
- 112 119 D
- 29 32 D
- 118 127 D
- 186 205 D
- 147 166 D
- 196 226 D
- 78 92 D
- 14 16 D
- S
- V
- /PSL_vecheadpen {17 W 0 A [] 0 B} def
- {1 0 0 C} FS
- 4 W
- V 3157 1448 T -133.853 R
- U
- V 2907 1188 T -133.853 R
- PSL_vecheadpen
- 33 W
- 0 0 M
- -360 96 D
- 0 -192 D
- P clip fs P S
- U
- /PSL_vecheadpen {17 W 0 A [] 0 B} def
- 4 W
- V 4334 2742 T 49.9134 R
- U
- V 4566 3018 T 49.9134 R
- PSL_vecheadpen
- 33 W
- 0 0 M
- -360 96 D
- 0 -192 D
- P clip fs P S
- U
- U
- %%EndObject
- 0 A
- FQ
- O0
- 0 0 TM
- % PostScript produced by:
- %@GMT: gmt psxy -R-5/100/-5/55 -JM6i -O -K -Wfaint,red
- %@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
- %%BeginObject PSL_Layer_13
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 0 W
- 1 0 0 C
- 2400 341 M
- 69 68 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 78 76 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 17 18 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 52 51 D
- 8 9 D
- 172 171 D
- 8 9 D
- 35 34 D
- 8 9 D
- 9 8 D
- 8 9 D
- 18 17 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 17 18 D
- 9 8 D
- 42 44 D
- 18 17 D
- 8 9 D
- 9 8 D
- 68 70 D
- 9 8 D
- 94 97 D
- 9 8 D
- 25 27 D
- 18 17 D
- 25 27 D
- 9 8 D
- 34 36 D
- 9 8 D
- 51 53 D
- 223 233 D
- 130 137 D
- 29 32 D
- 30 31 D
- 29 32 D
- 59 63 D
- 39 43 D
- 245 270 D
- 108 122 D
- 39 44 D
- 19 23 D
- 79 90 D
- 19 23 D
- 30 34 D
- 29 35 D
- 118 139 D
- 205 251 D
- 88 111 D
- 30 37 D
- 39 51 D
- 69 88 D
- 137 182 D
- 59 79 D
- 19 27 D
- 59 81 D
- 39 55 D
- 59 83 D
- 147 213 D
- 78 118 D
- 79 120 D
- S
- %%EndObject
- 0 A
- FQ
- O0
- 0 0 TM
- % PostScript produced by:
- %@GMT: gmt psxy -R-5/100/-5/55 -JM6i -O -K -W2p+o1000k/0+ve0.3i+gblue
- %@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
- %%BeginObject PSL_Layer_14
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 33 W
- 2837 776 M
- 94 95 D
- 35 34 D
- 8 9 D
- 9 8 D
- 8 9 D
- 18 17 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 17 18 D
- 9 8 D
- 42 44 D
- 18 17 D
- 8 9 D
- 9 8 D
- 68 70 D
- 9 8 D
- 94 97 D
- 9 8 D
- 25 27 D
- 18 17 D
- 25 27 D
- 9 8 D
- 34 36 D
- 9 8 D
- 51 53 D
- 223 233 D
- 130 137 D
- 29 32 D
- 30 31 D
- 29 32 D
- 59 63 D
- 39 43 D
- 245 270 D
- 108 122 D
- 39 44 D
- 19 23 D
- 79 90 D
- 19 23 D
- 30 34 D
- 29 35 D
- 118 139 D
- 205 251 D
- 88 111 D
- 30 37 D
- 39 51 D
- 69 88 D
- 137 182 D
- 59 79 D
- 19 27 D
- 59 81 D
- 39 55 D
- 59 83 D
- 104 151 D
- S
- V
- /PSL_vecheadpen {17 W 0 A [] 0 B} def
- {0 0 1 C} FS
- 4 W
- V 5629 3992 T 55.6468 R
- U
- V 5833 4289 T 55.6468 R
- PSL_vecheadpen
- 33 W
- 0 0 M
- -360 96 D
- 0 -192 D
- P clip fs P S
- U
- U
- %%EndObject
- 0 A
- FQ
- O0
- 0 0 TM
- % PostScript produced by:
- %@GMT: gmt psxy -R-5/100/-5/55 -JM6i -O -K -Wfaint,red
- %@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
- %%BeginObject PSL_Layer_15
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 0 W
- 1 0 0 C
- 2743 341 M
- 8 9 D
- 78 76 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 78 76 D
- 8 9 D
- 9 8 D
- 34 35 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 35 34 D
- 8 9 D
- 9 8 D
- 8 9 D
- 52 51 D
- 8 9 D
- 52 51 D
- 8 9 D
- 35 34 D
- 8 9 D
- 9 8 D
- 8 9 D
- 18 17 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 17 18 D
- 9 8 D
- 8 9 D
- 9 8 D
- 68 70 D
- 9 8 D
- 17 18 D
- 9 8 D
- 42 44 D
- 18 17 D
- 8 9 D
- 9 8 D
- 25 27 D
- 18 17 D
- 85 88 D
- 9 8 D
- 34 36 D
- 9 8 D
- 34 36 D
- 9 8 D
- 42 45 D
- 18 17 D
- 60 63 D
- 231 242 D
- 17 19 D
- 36 37 D
- 29 32 D
- 167 179 D
- 235 260 D
- 98 110 D
- 19 23 D
- 69 78 D
- 19 23 D
- 40 45 D
- 19 23 D
- 69 80 D
- 39 47 D
- 206 248 D
- 147 183 D
- 39 49 D
- 39 51 D
- 59 75 D
- 58 77 D
- 89 118 D
- 88 119 D
- 29 41 D
- 79 109 D
- 68 98 D
- 108 157 D
- 147 221 D
- 19 31 D
- S
- %%EndObject
- 0 A
- FQ
- O0
- 0 0 TM
- % PostScript produced by:
- %@GMT: gmt psxy -R-5/100/-5/55 -JM6i -O -K -W2p+o0/1000k+ve0.3i+p1.5p,blue+et
- %@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
- %%BeginObject PSL_Layer_16
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 33 W
- 2743 341 M
- 8 9 D
- 78 76 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 78 76 D
- 8 9 D
- 9 8 D
- 34 35 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 35 34 D
- 8 9 D
- 9 8 D
- 8 9 D
- 52 51 D
- 8 9 D
- 52 51 D
- 8 9 D
- 35 34 D
- 8 9 D
- 9 8 D
- 8 9 D
- 18 17 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 17 18 D
- 9 8 D
- 8 9 D
- 9 8 D
- 68 70 D
- 9 8 D
- 17 18 D
- 9 8 D
- 42 44 D
- 18 17 D
- 8 9 D
- 9 8 D
- 25 27 D
- 18 17 D
- 85 88 D
- 9 8 D
- 34 36 D
- 9 8 D
- 34 36 D
- 9 8 D
- 42 45 D
- 18 17 D
- 60 63 D
- 231 242 D
- 17 19 D
- 36 37 D
- 29 32 D
- 167 179 D
- 235 260 D
- 98 110 D
- 19 23 D
- 69 78 D
- 19 23 D
- 40 45 D
- 19 23 D
- 69 80 D
- 39 47 D
- 206 248 D
- 147 183 D
- 39 49 D
- 39 51 D
- 59 75 D
- 58 77 D
- 100 133 D
- 21 28 D
- S
- V
- /PSL_vecheadpen {25 W 0 0 1 C [] 0 B} def
- O1
- 25 W
- V 5665 3559 T 53.2605 R
- N 0 0 M 1 0 D S
- U
- V 5665 3560 T 53.2605 R
- PSL_vecheadpen
- 50 W
- 0 -96 M
- 0 192 D
- S
- U
- U
- %%EndObject
- 0 A
- FQ
- O0
- 0 0 TM
- % PostScript produced by:
- %@GMT: gmt psxy -R-5/100/-5/55 -JM6i -O -K -Wfaint,red
- %@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
- %%BeginObject PSL_Layer_17
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 0 W
- 1 0 0 C
- 3086 341 M
- 8 9 D
- 9 8 D
- 8 9 D
- 78 76 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 78 76 D
- 51 52 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 18 17 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 35 34 D
- 8 9 D
- 9 8 D
- 8 9 D
- 35 34 D
- 8 9 D
- 9 8 D
- 8 9 D
- 18 17 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 17 18 D
- 9 8 D
- 8 9 D
- 9 8 D
- 34 35 D
- 9 8 D
- 42 44 D
- 18 17 D
- 8 9 D
- 9 8 D
- 68 70 D
- 9 8 D
- 17 18 D
- 9 8 D
- 25 27 D
- 9 8 D
- 94 97 D
- 9 8 D
- 51 53 D
- 77 80 D
- 9 8 D
- 68 72 D
- 18 17 D
- 214 225 D
- 25 28 D
- 67 70 D
- 29 32 D
- 157 169 D
- 196 217 D
- 107 121 D
- 89 101 D
- 19 23 D
- 69 79 D
- 29 35 D
- 79 92 D
- 186 225 D
- 147 182 D
- 29 38 D
- 118 150 D
- 58 77 D
- 79 104 D
- 19 27 D
- 20 26 D
- 19 27 D
- 89 121 D
- 166 236 D
- 59 86 D
- 29 44 D
- 79 117 D
- 68 106 D
- S
- %%EndObject
- 0 A
- FQ
- O0
- 0 0 TM
- % PostScript produced by:
- %@GMT: gmt psxy -R-5/100/-5/55 -JM6i -O -K -W2p+o1i/0+v0.3i+p0.25p,blue+gcyan+h1
- %@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
- %%BeginObject PSL_Layer_18
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 33 W
- 4060 1319 M
- 114 118 D
- 9 8 D
- 68 72 D
- 18 17 D
- 214 225 D
- 25 28 D
- 67 70 D
- 29 32 D
- 157 169 D
- 196 217 D
- 107 121 D
- 89 101 D
- 19 23 D
- 69 79 D
- 29 35 D
- 79 92 D
- 186 225 D
- 147 182 D
- 29 38 D
- 118 150 D
- 58 77 D
- 79 104 D
- 19 27 D
- 20 26 D
- 19 27 D
- 89 121 D
- 166 236 D
- 59 86 D
- 29 44 D
- 49 72 D
- S
- V
- /PSL_vecheadpen {4 W 0 0 1 C [] 0 B} def
- {0 1 1 C} FS
- O1
- 4 W
- V 4060 1319 T -134.157 R
- U
- V 3934 1189 T -134.157 R
- PSL_vecheadpen
- 8 W
- 0 0 M
- -360 96 D
- 180 -96 D
- -180 -96 D
- P clip fs P S
- U
- /PSL_vecheadpen {4 W 0 0 1 C [] 0 B} def
- 4 W
- V 6416 4141 T 56.1218 R
- U
- V 6516 4290 T 56.1218 R
- PSL_vecheadpen
- 8 W
- 0 0 M
- -360 96 D
- 180 -96 D
- -180 -96 D
- P clip fs P S
- U
- U
- %%EndObject
- 0 A
- FQ
- O0
- 0 0 TM
- % PostScript produced by:
- %@GMT: gmt psxy -R-5/100/-5/55 -JM6i -O -K -Wfaint,red
- %@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
- %%BeginObject PSL_Layer_19
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 0 W
- 1 0 0 C
- 3429 341 M
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 78 76 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 138 136 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 17 18 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 18 17 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 18 17 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 17 18 D
- 9 8 D
- 8 9 D
- 9 8 D
- 34 35 D
- 9 8 D
- 85 87 D
- 9 8 D
- 17 18 D
- 9 8 D
- 42 44 D
- 18 17 D
- 8 9 D
- 9 8 D
- 51 53 D
- 9 8 D
- 25 27 D
- 18 17 D
- 51 53 D
- 9 8 D
- 51 53 D
- 77 80 D
- 9 8 D
- 68 72 D
- 9 8 D
- 223 234 D
- 25 28 D
- 57 60 D
- 49 52 D
- 29 32 D
- 69 74 D
- 39 43 D
- 196 216 D
- 147 166 D
- 196 227 D
- 88 104 D
- 147 178 D
- 98 121 D
- 156 198 D
- 187 244 D
- 19 27 D
- 118 160 D
- 186 265 D
- 98 144 D
- 49 74 D
- 78 120 D
- S
- %%EndObject
- 0 A
- FQ
- O0
- 0 0 TM
- % PostScript produced by:
- %@GMT: gmt psxy -R-5/100/-5/55 -JM6i -O -K -W2p+o0/1i+vb0.3i+gblack+h0.5
- %@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
- %%BeginObject PSL_Layer_20
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 33 W
- 3620 531 M
- 109 108 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 17 18 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 18 17 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 8 9 D
- 18 17 D
- 8 9 D
- 9 8 D
- 8 9 D
- 9 8 D
- 17 18 D
- 9 8 D
- 8 9 D
- 9 8 D
- 34 35 D
- 9 8 D
- 85 87 D
- 9 8 D
- 17 18 D
- 9 8 D
- 42 44 D
- 18 17 D
- 8 9 D
- 9 8 D
- 51 53 D
- 9 8 D
- 25 27 D
- 18 17 D
- 51 53 D
- 9 8 D
- 51 53 D
- 77 80 D
- 9 8 D
- 68 72 D
- 9 8 D
- 223 234 D
- 25 28 D
- 57 60 D
- 49 52 D
- 29 32 D
- 69 74 D
- 39 43 D
- 196 216 D
- 147 166 D
- 196 227 D
- 88 104 D
- 147 178 D
- 98 121 D
- 157 199 D
- 41 53 D
- S
- V
- /PSL_vecheadpen {17 W 0 A [] 0 B} def
- {0 A} FS
- 4 W
- V 3620 531 T -135.153 R
- U
- V 3429 341 T -135.153 R
- PSL_vecheadpen
- 33 W
- 0 0 M
- -360 96 D
- 90 -96 D
- -90 -96 D
- P clip fs P S
- U
- U
- %%EndObject
- 0 A
- FQ
- O0
- 0 6600 TM
- % PostScript produced by:
- %@GMT: gmt psbasemap -R-5/100/-5/55 -Jx0.0571428571429i -O -K -Baf -Y5.5i
- %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
- %%BeginObject PSL_Layer_21
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 25 W
- 2 setlinecap
- N 0 4114 M 0 -4114 D S
- /PSL_A0_y 83 def
- /PSL_A1_y 0 def
- 8 W
- N 0 343 M -83 0 D S
- N 0 1714 M -83 0 D S
- N 0 3086 M -83 0 D S
- /PSL_AH0 0
- /MM {neg exch M} def
- PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
- 200 F0
- (0) sw mx
- (20) sw mx
- (40) sw mx
- def
- /PSL_A0_y PSL_A0_y 83 add def
- 343 PSL_A0_y MM
- (0) mr Z
- 1714 PSL_A0_y MM
- (20) mr Z
- 3086 PSL_A0_y MM
- (40) mr Z
- /PSL_A0_y PSL_A0_y PSL_AH0 add def
- N 0 1029 M -42 0 D S
- N 0 2400 M -42 0 D S
- N 0 3771 M -42 0 D S
- /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
- 7200 0 T
- 25 W
- N 0 4114 M 0 -4114 D S
- /PSL_A0_y 83 def
- /PSL_A1_y 0 def
- 8 W
- N 0 343 M 83 0 D S
- N 0 1714 M 83 0 D S
- N 0 3086 M 83 0 D S
- /PSL_AH0 0
- /MM {exch M} def
- (0) sw mx
- (20) sw mx
- (40) sw mx
- def
- /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
- 343 PSL_A0_y MM
- (0) mr Z
- 1714 PSL_A0_y MM
- (20) mr Z
- 3086 PSL_A0_y MM
- (40) mr Z
- N 0 1029 M 42 0 D S
- N 0 2400 M 42 0 D S
- N 0 3771 M 42 0 D S
- /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
- -7200 0 T
- 25 W
- N 0 0 M 7200 0 D S
- /PSL_A0_y 83 def
- /PSL_A1_y 0 def
- 8 W
- N 343 0 M 0 -83 D S
- N 1714 0 M 0 -83 D S
- N 3086 0 M 0 -83 D S
- N 4457 0 M 0 -83 D S
- N 5829 0 M 0 -83 D S
- N 7200 0 M 0 -83 D S
- /PSL_AH0 0
- /MM {neg M} def
- (0) sh mx
- (20) sh mx
- (40) sh mx
- (60) sh mx
- (80) sh mx
- (100) sh mx
- def
- /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
- 343 PSL_A0_y MM
- (0) bc Z
- 1714 PSL_A0_y MM
- (20) bc Z
- 3086 PSL_A0_y MM
- (40) bc Z
- 4457 PSL_A0_y MM
- (60) bc Z
- 5829 PSL_A0_y MM
- (80) bc Z
- 7200 PSL_A0_y MM
- (100) bc Z
- N 1029 0 M 0 -42 D S
- N 2400 0 M 0 -42 D S
- N 3771 0 M 0 -42 D S
- N 5143 0 M 0 -42 D S
- N 6514 0 M 0 -42 D S
- /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
- 0 4114 T
- 25 W
- N 0 0 M 7200 0 D S
- /PSL_A0_y 83 def
- /PSL_A1_y 0 def
- 8 W
- N 343 0 M 0 83 D S
- N 1714 0 M 0 83 D S
- N 3086 0 M 0 83 D S
- N 4457 0 M 0 83 D S
- N 5829 0 M 0 83 D S
- N 7200 0 M 0 83 D S
- /PSL_AH0 0
- /MM {M} def
- (0) sh mx
- (20) sh mx
- (40) sh mx
- (60) sh mx
- (80) sh mx
- (100) sh mx
- def
- /PSL_A0_y PSL_A0_y 83 add def
- 343 PSL_A0_y MM
- (0) bc Z
- 1714 PSL_A0_y MM
- (20) bc Z
- 3086 PSL_A0_y MM
- (40) bc Z
- 4457 PSL_A0_y MM
- (60) bc Z
- 5829 PSL_A0_y MM
- (80) bc Z
- 7200 PSL_A0_y MM
- (100) bc Z
- /PSL_A0_y PSL_A0_y PSL_AH0 add def
- N 1029 0 M 0 42 D S
- N 2400 0 M 0 42 D S
- N 3771 0 M 0 42 D S
- N 5143 0 M 0 42 D S
- N 6514 0 M 0 42 D S
- /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
- 0 -4114 T
- 0 setlinecap
- %%EndObject
- 0 A
- FQ
- O0
- 0 0 TM
- % PostScript produced by:
- %@GMT: gmt psxy -R-5/100/-5/55 -Jx0.0571428571429i -O -K -W2p
- %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
- %%BeginObject PSL_Layer_22
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 33 W
- 343 343 M
- 3428 3428 D
- S
- %%EndObject
- 0 A
- FQ
- O0
- 0 0 TM
- % PostScript produced by:
- %@GMT: gmt psxy -R-5/100/-5/55 -Jx0.0571428571429i -O -K -Wfaint,red
- %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
- %%BeginObject PSL_Layer_23
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 0 W
- 1 0 0 C
- 686 343 M
- 205 206 D
- 412 411 D
- 68 69 D
- 412 411 D
- 68 69 D
- 412 411 D
- 68 69 D
- 412 411 D
- 68 69 D
- 412 411 D
- 68 69 D
- 412 411 D
- 68 69 D
- 343 342 D
- S
- %%EndObject
- 0 A
- FQ
- O0
- 0 0 TM
- % PostScript produced by:
- %@GMT: gmt psxy -R-5/100/-5/55 -Jx0.0571428571429i -O -K -W2p+o10+v0.15i+gblack
- %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
- %%BeginObject PSL_Layer_24
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 33 W
- 1298 955 M
- 73 74 D
- 412 411 D
- 68 69 D
- 412 411 D
- 68 69 D
- 412 411 D
- 68 69 D
- 412 411 D
- 68 69 D
- 211 210 D
- S
- V
- /PSL_vecheadpen {17 W 0 A [] 0 B} def
- {0 A} FS
- 4 W
- V 1298 955 T -135 R
- U
- V 1171 828 T -135 R
- PSL_vecheadpen
- 33 W
- 0 0 M
- -180 48 D
- 0 -96 D
- P clip fs P S
- U
- /PSL_vecheadpen {17 W 0 A [] 0 B} def
- 4 W
- V 3502 3159 T 45 R
- U
- V 3629 3287 T 45 R
- PSL_vecheadpen
- 33 W
- 0 0 M
- -180 48 D
- 0 -96 D
- P clip fs P S
- U
- U
- %%EndObject
- 0 A
- FQ
- O0
- 0 0 TM
- % PostScript produced by:
- %@GMT: gmt psxy -R-5/100/-5/55 -Jx0.0571428571429i -O -K -Wfaint,red
- %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
- %%BeginObject PSL_Layer_25
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 0 W
- 1 0 0 C
- 1029 343 M
- 205 206 D
- 69 68 D
- 68 69 D
- 275 274 D
- 68 69 D
- 69 68 D
- 68 69 D
- 275 274 D
- 68 69 D
- 69 68 D
- 68 69 D
- 275 274 D
- 68 69 D
- 69 68 D
- 68 69 D
- 275 274 D
- 68 69 D
- 69 68 D
- 68 69 D
- 275 274 D
- 68 69 D
- 69 68 D
- 68 69 D
- 275 274 D
- 68 69 D
- 69 68 D
- 68 69 D
- 206 205 D
- S
- %%EndObject
- 0 A
- FQ
- O0
- 0 0 TM
- % PostScript produced by:
- %@GMT: gmt psxy -R-5/100/-5/55 -Jx0.0571428571429i -O -K -W2p+o10+v0.4i+p0.25p,blue+h1
- %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
- %%BeginObject PSL_Layer_26
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 33 W
- 1683 997 M
- 31 32 D
- 69 68 D
- 68 69 D
- 275 274 D
- 68 69 D
- 69 68 D
- 68 69 D
- 275 274 D
- 68 69 D
- 69 68 D
- 68 69 D
- 275 274 D
- 68 69 D
- 69 68 D
- 68 69 D
- 275 274 D
- 68 69 D
- 69 68 D
- 68 69 D
- 32 31 D
- S
- V
- /PSL_vecheadpen {4 W 0 0 1 C [] 0 B} def
- O1
- 4 W
- V 1683 997 T -135 R
- U
- V 1513 828 T -135 R
- PSL_vecheadpen
- 8 W
- 0 0 M
- -480 129 D
- 240 -129 D
- -240 -129 D
- P clip fs P S
- U
- /PSL_vecheadpen {4 W 0 0 1 C [] 0 B} def
- 4 W
- V 3803 3117 T 45 R
- U
- V 3972 3287 T 45 R
- PSL_vecheadpen
- 8 W
- 0 0 M
- -480 129 D
- 240 -129 D
- -240 -129 D
- P clip fs P S
- U
- U
- %%EndObject
- 0 A
- FQ
- O0
- 0 0 TM
- % PostScript produced by:
- %@GMT: gmt psxy -R-5/100/-5/55 -Jx0.0571428571429i -O -K -Wfaint,red
- %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
- %%BeginObject PSL_Layer_27
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 0 W
- 1 0 0 C
- 1371 343 M
- 138 137 D
- 68 69 D
- 69 68 D
- 68 69 D
- 69 68 D
- 68 69 D
- 138 137 D
- 68 69 D
- 69 68 D
- 68 69 D
- 69 68 D
- 68 69 D
- 138 137 D
- 68 69 D
- 69 68 D
- 68 69 D
- 69 68 D
- 68 69 D
- 138 137 D
- 68 69 D
- 69 68 D
- 68 69 D
- 69 68 D
- 68 69 D
- 138 137 D
- 68 69 D
- 69 68 D
- 68 69 D
- 69 68 D
- 68 69 D
- 138 137 D
- 68 69 D
- 69 68 D
- 68 69 D
- 69 68 D
- 68 69 D
- 138 137 D
- 68 69 D
- 69 68 D
- 68 69 D
- 69 68 D
- 68 69 D
- 69 68 D
- S
- %%EndObject
- 0 A
- FQ
- O0
- 0 0 TM
- % PostScript produced by:
- %@GMT: gmt psxy -R-5/100/-5/55 -Jx0.0571428571429i -O -K -W2p+o10+v0.4i+p0.25p,blue+h0
- %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
- %%BeginObject PSL_Layer_28
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 33 W
- 2196 1167 M
- 135 136 D
- 138 137 D
- 68 69 D
- 69 68 D
- 68 69 D
- 69 68 D
- 68 69 D
- 138 137 D
- 68 69 D
- 69 68 D
- 68 69 D
- 69 68 D
- 68 69 D
- 138 137 D
- 68 69 D
- 69 68 D
- 68 69 D
- 69 68 D
- 68 69 D
- 205 204 D
- S
- V
- /PSL_vecheadpen {4 W 0 0 1 C [] 0 B} def
- O1
- 4 W
- V 2196 1167 T -135 R
- U
- V 1856 828 T -135 R
- PSL_vecheadpen
- 8 W
- 0 0 M
- -480 129 D
- 0 -258 D
- P clip fs P S
- U
- /PSL_vecheadpen {4 W 0 0 1 C [] 0 B} def
- 4 W
- V 3976 2947 T 45 R
- U
- V 4315 3287 T 45 R
- PSL_vecheadpen
- 8 W
- 0 0 M
- -480 129 D
- 0 -258 D
- P clip fs P S
- U
- U
- %%EndObject
- 0 A
- FQ
- O0
- 0 0 TM
- % PostScript produced by:
- %@GMT: gmt psxy -R-5/100/-5/55 -Jx0.0571428571429i -O -K -Wfaint,red
- %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
- %%BeginObject PSL_Layer_29
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 0 W
- 1 0 0 C
- 1714 343 M
- 69 68 D
- 137 138 D
- 69 68 D
- 68 69 D
- 69 68 D
- 68 69 D
- 69 68 D
- 137 138 D
- 69 68 D
- 68 69 D
- 69 68 D
- 68 69 D
- 69 68 D
- 137 138 D
- 69 68 D
- 68 69 D
- 69 68 D
- 68 69 D
- 69 68 D
- 137 138 D
- 69 68 D
- 68 69 D
- 69 68 D
- 68 69 D
- 69 68 D
- 137 138 D
- 69 68 D
- 68 69 D
- 69 68 D
- 68 69 D
- 69 68 D
- 137 138 D
- 69 68 D
- 68 69 D
- 69 68 D
- 68 69 D
- 69 68 D
- 137 138 D
- 69 68 D
- 68 69 D
- 69 68 D
- 68 69 D
- 69 68 D
- S
- %%EndObject
- 0 A
- FQ
- O0
- 0 0 TM
- % PostScript produced by:
- %@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
- %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
- %%BeginObject PSL_Layer_30
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 33 W
- 2629 1257 M
- 45 46 D
- 69 68 D
- 137 138 D
- 69 68 D
- 68 69 D
- 69 68 D
- 68 69 D
- 69 68 D
- 137 138 D
- 69 68 D
- 68 69 D
- 69 68 D
- 68 69 D
- 69 68 D
- 137 138 D
- 69 68 D
- 68 69 D
- 69 68 D
- 68 69 D
- 69 68 D
- 137 138 D
- 69 68 D
- 68 69 D
- 69 68 D
- 118 119 D
- S
- V
- /PSL_vecheadpen {25 W 0 0 1 C [] 0 B} def
- {0 1 0 C} FS
- O1
- 25 W
- V 2629 1257 T -135 R
- N 0 0 M 93 0 D S
- U
- V 2563 1191 T -135 R
- PSL_vecheadpen
- 50 W
- -93 93 M
- 186 0 D
- 0 -186 D
- -186 0 D
- P clip fs P S U
- /PSL_vecheadpen {25 W 0 0 1 C [] 0 B} def
- {1 0.753 0.796 C} FS
- 25 W
- V 4644 3273 T 45 R
- N 0 0 M 105 0 D S
- U
- V 4719 3347 T 45 R
- PSL_vecheadpen
- 50 W
- N 0 0 105 0 360 arc
- P clip fs P S U
- U
- %%EndObject
- 0 A
- FQ
- O0
- 0 0 TM
- % PostScript produced by:
- %@GMT: gmt psxy -R-5/100/-5/55 -Jx0.0571428571429i -O -K -Wfaint,red
- %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
- %%BeginObject PSL_Layer_31
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 0 W
- 1 0 0 C
- 2057 343 M
- 69 68 D
- 274 275 D
- 69 68 D
- 68 69 D
- 69 68 D
- 274 275 D
- 69 68 D
- 68 69 D
- 69 68 D
- 274 275 D
- 69 68 D
- 68 69 D
- 69 68 D
- 274 275 D
- 69 68 D
- 68 69 D
- 69 68 D
- 274 275 D
- 69 68 D
- 68 69 D
- 69 68 D
- 274 275 D
- 69 68 D
- 68 69 D
- 69 68 D
- 274 275 D
- 69 68 D
- 68 69 D
- 69 68 D
- S
- %%EndObject
- 0 A
- FQ
- O0
- 0 0 TM
- % PostScript produced by:
- %@GMT: gmt psxy -R-5/100/-5/55 -Jx0.0571428571429i -O -K -W2p+o1i/10+v0.3i+gred
- %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
- %%BeginObject PSL_Layer_32
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 33 W
- 3160 1446 M
- 269 268 D
- 68 69 D
- 69 68 D
- 274 275 D
- 69 68 D
- 68 69 D
- 69 68 D
- 274 275 D
- 69 68 D
- 68 69 D
- 69 68 D
- 220 221 D
- S
- V
- /PSL_vecheadpen {17 W 0 A [] 0 B} def
- {1 0 0 C} FS
- 4 W
- V 3160 1446 T -135 R
- U
- V 2906 1191 T -135 R
- PSL_vecheadpen
- 33 W
- 0 0 M
- -360 96 D
- 0 -192 D
- P clip fs P S
- U
- /PSL_vecheadpen {17 W 0 A [] 0 B} def
- 4 W
- V 4746 3032 T 45 R
- U
- V 5001 3287 T 45 R
- PSL_vecheadpen
- 33 W
- 0 0 M
- -360 96 D
- 0 -192 D
- P clip fs P S
- U
- U
- %%EndObject
- 0 A
- FQ
- O0
- 0 0 TM
- % PostScript produced by:
- %@GMT: gmt psxy -R-5/100/-5/55 -Jx0.0571428571429i -O -K -Wfaint,red
- %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
- %%BeginObject PSL_Layer_33
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 0 W
- 1 0 0 C
- 2400 343 M
- 69 68 D
- 411 412 D
- 69 68 D
- 411 412 D
- 69 68 D
- 411 412 D
- 69 68 D
- 411 412 D
- 69 68 D
- 411 412 D
- 69 68 D
- 411 412 D
- 69 68 D
- 411 412 D
- 69 68 D
- S
- %%EndObject
- 0 A
- FQ
- O0
- 0 0 TM
- % PostScript produced by:
- %@GMT: gmt psxy -R-5/100/-5/55 -Jx0.0571428571429i -O -K -W2p+o10/0+ve0.3i+gblue
- %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
- %%BeginObject PSL_Layer_34
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 33 W
- 2885 828 M
- 64 63 D
- 411 412 D
- 69 68 D
- 411 412 D
- 69 68 D
- 411 412 D
- 69 68 D
- 411 412 D
- 69 68 D
- 411 412 D
- 69 68 D
- 225 226 D
- S
- V
- /PSL_vecheadpen {17 W 0 A [] 0 B} def
- {0 0 1 C} FS
- 4 W
- V 5574 3517 T 45 R
- U
- V 5829 3771 T 45 R
- PSL_vecheadpen
- 33 W
- 0 0 M
- -360 96 D
- 0 -192 D
- P clip fs P S
- U
- U
- %%EndObject
- 0 A
- FQ
- O0
- 0 0 TM
- % PostScript produced by:
- %@GMT: gmt psxy -R-5/100/-5/55 -Jx0.0571428571429i -O -K -Wfaint,red
- %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
- %%BeginObject PSL_Layer_35
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 0 W
- 1 0 0 C
- 2743 343 M
- 3428 3428 D
- S
- %%EndObject
- 0 A
- FQ
- O0
- 0 0 TM
- % PostScript produced by:
- %@GMT: gmt psxy -R-5/100/-5/55 -Jx0.0571428571429i -O -K -W2p+o0/10+ve0.3i+p1.5p,blue+et
- %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
- %%BeginObject PSL_Layer_36
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 33 W
- 2743 343 M
- 2944 2944 D
- S
- V
- /PSL_vecheadpen {25 W 0 0 1 C [] 0 B} def
- O1
- 25 W
- V 5687 3287 T 45 R
- N 0 0 M 1 0 D S
- U
- V 5687 3287 T 45 R
- PSL_vecheadpen
- 50 W
- 0 -96 M
- 0 192 D
- S
- U
- U
- %%EndObject
- 0 A
- FQ
- O0
- 0 0 TM
- % PostScript produced by:
- %@GMT: gmt psxy -R-5/100/-5/55 -Jx0.0571428571429i -O -K -Wfaint,red
- %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
- %%BeginObject PSL_Layer_37
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 0 W
- 1 0 0 C
- 3086 343 M
- 205 206 D
- 412 411 D
- 68 69 D
- 412 411 D
- 68 69 D
- 412 411 D
- 68 69 D
- 412 411 D
- 68 69 D
- 412 411 D
- 68 69 D
- 412 411 D
- 68 69 D
- 343 342 D
- S
- %%EndObject
- 0 A
- FQ
- O0
- 0 0 TM
- % PostScript produced by:
- %@GMT: gmt psxy -R-5/100/-5/55 -Jx0.0571428571429i -O -K -W2p+o1i/0+v0.3i+p0.25p,blue+gcyan+h1
- %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
- %%BeginObject PSL_Layer_38
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 33 W
- 4062 1319 M
- 189 190 D
- 412 411 D
- 68 69 D
- 412 411 D
- 68 69 D
- 412 411 D
- 68 69 D
- 412 411 D
- 68 69 D
- 216 215 D
- S
- V
- /PSL_vecheadpen {4 W 0 0 1 C [] 0 B} def
- {0 1 1 C} FS
- O1
- 4 W
- V 4062 1319 T -135 R
- U
- V 3934 1191 T -135 R
- PSL_vecheadpen
- 8 W
- 0 0 M
- -360 96 D
- 180 -96 D
- -180 -96 D
- P clip fs P S
- U
- /PSL_vecheadpen {4 W 0 0 1 C [] 0 B} def
- 4 W
- V 6387 3644 T 45 R
- U
- V 6514 3771 T 45 R
- PSL_vecheadpen
- 8 W
- 0 0 M
- -360 96 D
- 180 -96 D
- -180 -96 D
- P clip fs P S
- U
- U
- %%EndObject
- 0 A
- FQ
- O0
- 0 0 TM
- % PostScript produced by:
- %@GMT: gmt psxy -R-5/100/-5/55 -Jx0.0571428571429i -O -K -Wfaint,red
- %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
- %%BeginObject PSL_Layer_39
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 0 W
- 1 0 0 C
- 3429 343 M
- 205 206 D
- 69 68 D
- 68 69 D
- 275 274 D
- 68 69 D
- 69 68 D
- 68 69 D
- 275 274 D
- 68 69 D
- 69 68 D
- 68 69 D
- 275 274 D
- 68 69 D
- 69 68 D
- 68 69 D
- 275 274 D
- 68 69 D
- 69 68 D
- 68 69 D
- 275 274 D
- 68 69 D
- 69 68 D
- 68 69 D
- 275 274 D
- 68 69 D
- 69 68 D
- 68 69 D
- 206 205 D
- S
- %%EndObject
- 0 A
- FQ
- O0
- 0 0 TM
- % PostScript produced by:
- %@GMT: gmt psxy -R-5/100/-5/55 -Jx0.0571428571429i -O -K -W2p+o0/1i+vb0.3i+gblack+h0.5
- %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
- %%BeginObject PSL_Layer_40
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- 33 W
- 3619 534 M
- 84 83 D
- 68 69 D
- 275 274 D
- 68 69 D
- 69 68 D
- 68 69 D
- 275 274 D
- 68 69 D
- 69 68 D
- 68 69 D
- 275 274 D
- 68 69 D
- 69 68 D
- 68 69 D
- 275 274 D
- 68 69 D
- 69 68 D
- 68 69 D
- 318 317 D
- S
- V
- /PSL_vecheadpen {17 W 0 A [] 0 B} def
- {0 A} FS
- 4 W
- V 3619 534 T -135 R
- U
- V 3429 343 T -135 R
- PSL_vecheadpen
- 33 W
- 0 0 M
- -360 96 D
- 90 -96 D
- -90 -96 D
- P clip fs P S
- U
- U
- %%EndObject
- 0 A
- FQ
- O0
- 0 0 TM
- % PostScript produced by:
- %@GMT: gmt psxy -R-5/100/-5/55 -Jx0.0571428571429i -O -T
- %@PROJ: xy -5.00000000 100.00000000 -5.00000000 55.00000000 -5.000 100.000 -5.000 55.000 +xy
- %%BeginObject PSL_Layer_41
- 0 setlinecap
- 0 setlinejoin
- 3.32551 setmiterlimit
- %%EndObject
- grestore
- PSL_movie_completion /PSL_movie_completion {} def
- %PSL_Begin_Trailer
- %%PageTrailer
- U
- showpage
- %%Trailer
- end
- %%EOF
|