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
%!PS-Adobe-3.0
%%BoundingBox: 0 0 612 792
%%HiResBoundingBox: 0 0 612 792
%%Title: GMT v5.0.1b_r11215 [64-bit] [C4] Document from grdcontour
%%Creator: GMT5
%%For: pwessel
%%DocumentNeededResources: font Helvetica
%%CreationDate: Thu Mar 28 20:19:53 2013
%%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
/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 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_curved_text_labels
{ /bits exch def
/PSL_clippath bits 1 and 1 eq def
/PSL_placetext bits 2 and 0 eq def
/PSL_strokeline bits 4 and 4 eq def
/PSL_firstcall bits 32 and 32 eq def
/PSL_lastcall bits 64 and 64 eq def
/PSL_fillbox bits 128 and 128 eq def
/PSL_drawbox bits 256 and 256 eq def
/PSL_n1 PSL_n 1 sub def
/PSL_m1 PSL_m 1 sub def
/PSL_usebox PSL_fillbox PSL_drawbox or def
PSL_CT_calcstringwidth
PSL_CT_calclinedist
PSL_CT_addcutpoints
PSL_clippath PSL_firstcall and
{clipsave N clippath} if
PSL_setlinepen
/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
PSL_lastcall
{PSL_clippath
{PSL_clip} if N
} if
} def
/PSL_CT_textline
{PSL_placetext
{PSL_clippath
{PSL_CT_clippath} {PSL_CT_placelabel} ifelse
} if
/n 0 def /k k 1 add def PSL_setlinepen
} def
/PSL_CT_calcstringwidth
{ /PSL_width PSL_m array def
0 1 PSL_m1
{ /i exch def
PSL_width i PSL_str 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_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_usebox
{PSL_CT_clippath
PSL_fillbox
{V PSL_setboxrgb fill U} if
PSL_drawbox
{PSL_setboxpen S} if N
} if
PSL_settxtrgb PSL_CT_placeline PSL_str k get PSL_gap_x PSL_just PSL_height 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 ne dy 0.0 ne and
{ /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 PSL_setlinepen 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_straight_text_labels
{
/bits exch def
/PSL_clippath bits 1 and 0 eq def
/PSL_rounded bits 16 and 16 eq def
/PSL_fillbox bits 128 and 128 eq def
/PSL_drawbox bits 256 and 256 eq def
/PSL_m1 PSL_m 1 sub def
/PSL_justx PSL_just 4 mod 1 sub 2 div neg def
/PSL_justy PSL_just 4 idiv PSL_height mul 2 div neg def
/PSL_usebox PSL_fillbox PSL_drawbox or def
PSL_clippath
{PSL_ST_clippath}
{PSL_usebox {PSL_ST_clippath} if
PSL_ST_placelabel
} ifelse
} def
/PSL_ST_placelabel
{PSL_settxtrgb
0 1 PSL_m1
{ /k exch def
/xp PSL_txt_x k get def
/yp PSL_txt_y k get def
V PSL_txt_x k get PSL_txt_y k get T
PSL_angle k get R
/BoxW PSL_str k get stringwidth pop def
BoxW PSL_justx mul PSL_justy M
PSL_str k get show
U
} for
} def
/PSL_ST_clippath
{N
PSL_usebox not {clipsave clippath} if
PSL_rounded {PSL_ST_clippath_round} {PSL_ST_clippath_rect} ifelse
PSL_usebox
{PSL_fillbox
{V PSL_setboxrgb fill U} if
PSL_drawbox
{PSL_setboxpen S} if N
}
{PSL_clip
} ifelse
N
} def
/PSL_ST_clippath_rect
{
/BoxH PSL_height PSL_gap_y 2 mul add def
/DelY BoxH BoxH 0 3 array astore def
0 1 PSL_m1
{ /k exch def
/xp PSL_txt_x k get def
/yp PSL_txt_y k get def
/MAT PSL_angle k get matrix R def
/BoxW PSL_str k get stringwidth pop PSL_gap_x 2 mul add def
/x0 0 BoxW PSL_justx mul add def
/y0 0 PSL_justy add PSL_gap_y sub def
/DelX 0 BoxW BoxW 3 array astore def
x0 y0 MAT transform
/dy exch def /dx exch def
xp dx add yp dy add M
0 1 2
{
/ii exch def
x0 DelX ii get add y0 DelY ii get add MAT transform
/dy exch def /dx exch def
xp dx add yp dy add L
} for P
} for
} def
/PSL_ST_clippath_round
{
/PSL_justy2 PSL_just 4 idiv 2 div neg def
/BoxR PSL_gap_x PSL_gap_y lt {PSL_gap_x} {PSL_gap_y} ifelse def
/BoxH PSL_height PSL_gap_y 2 mul add def
/y0 PSL_height PSL_gap_y 2 mul add PSL_justy2 mul def
0 1 PSL_m1
{ /k exch def
/xp PSL_txt_x k get def
/yp PSL_txt_y k get def
/BoxW PSL_str k get stringwidth pop PSL_gap_x 2 mul add def
/x0 BoxW PSL_justx mul def
xp yp T PSL_angle k get R x0 y0 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 P
x0 neg y0 neg T PSL_angle k get neg R xp neg yp neg T
} for
} 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
0 A
FQ
O0
1200 2400 TM
% PostScript produced by:
%%GMT: grdcontour -R0/7.2/-0.2/7 raws5.grd -Jx0.9i -P -K -C25 -A50+jCB -Ba2f1WSne -Y2i -GlLB/CT
%%PROJ: xy 0.00000000 7.20000000 -0.20000000 7.00000000 0.000 7.200 -0.200 7.000 +xy +a=6378137.000 +b=6356752.314245
%%BeginObject PSL_Layer_1
0 setlinecap
0 setlinejoin
3.32551 setmiterlimit
clipsave
0 0 M
7776 0 D
0 7776 D
-7776 0 D
PSL_eoclip N
/PSL_setlinepen {12 W 0 A [] 0 B} def
/PSL_setboxpen {12 W 0 A [] 0 B} def
/PSL_setboxrgb {1 A} def
/PSL_settxtrgb {0 A} def
PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
150 F0
/PSL_m 4 def
/PSL_txt_x
2813.07
2146.00
1458.09
698.56
4 array astore def
/PSL_txt_y
5626.14
4292.01
2916.19
1397.12
4 array astore def
/PSL_angle
290.43
304.03
309.54
339.11
4 array astore def
/PSL_str
(750)
(800)
(850)
(900)
4 array astore def
/PSL_just 2 def
/PSL_gap_x 22 def
/PSL_gap_y 22 def
(750) sH /PSL_height edef
0 PSL_straight_text_labels
12 W
3888 7033 M
54 -26 D
31 -41 D
14 -54 D
-18 -54 D
-27 -35 D
-54 -32 D
-54 13 D
-51 54 D
-16 54 D
15 54 D
52 54 D
P S
4 W
4804 7776 M
-81 -108 D
-79 -114 D
-54 -86 D
-40 -70 D
-27 -54 D
-41 -92 D
-27 -70 D
-53 -162 D
-35 -108 D
-41 -108 D
-24 -54 D
-36 -69 D
-22 -39 D
-34 -54 D
-52 -73 D
-73 -89 D
-47 -54 D
-50 -54 D
-54 -54 D
-46 -42 D
-54 -43 D
-54 -36 D
-54 -29 D
-44 -12 D
-10 -4 D
-55 4 D
-53 19 D
-54 37 D
-54 53 D
-37 53 D
-28 54 D
-22 54 D
-21 70 D
-48 200 D
-71 324 D
-27 108 D
-33 108 D
-19 54 D
-22 54 D
-24 54 D
-27 54 D
-29 54 D
-31 54 D
-69 108 D
-115 162 D
S
12 W
5623 7776 M
-169 -201 D
-108 -134 D
-75 -97 D
-41 -54 D
-116 -162 D
-38 -55 D
-72 -107 D
-36 -55 D
-69 -107 D
-131 -216 D
-94 -162 D
-123 -216 D
-69 -113 D
-67 -103 D
-41 -59 D
-54 -72 D
-54 -67 D
-54 -60 D
-68 -66 D
-40 -34 D
-54 -41 D
-54 -35 D
-90 -52 D
-208 -108 D
-89 -54 D
-45 -33 D
-25 -21 D
-29 -28 D
-23 -26 D
-31 -43 D
-35 -65 D
-19 -30 D
-11 -24 D
-49 -54 D
-48 -30 D
-54 -14 D
-54 13 D
-49 31 D
-45 54 D
-14 33 D
-11 21 D
-19 54 D
-24 59 D
-25 49 D
-33 54 D
-35 54 D
-15 21 D
-21 33 D
-33 58 D
-25 50 D
-24 64 D
-13 44 D
-12 54 D
-9 54 D
-7 54 D
-22 270 D
-16 162 D
-29 270 D
-13 216 D
-7 54 D
-19 54 D
-20 38 D
-54 83 D
-29 41 D
-103 162 D
-163 270 D
-137 219 D
-68 105 D
S
4 W
7776 7651 M
-216 7 D
-162 -2 D
-162 -8 D
-162 -16 D
-130 -18 D
-140 -26 D
-162 -38 D
-54 -15 D
-162 -52 D
-108 -41 D
-108 -47 D
-54 -26 D
-54 -30 D
-54 -32 D
-54 -37 D
-54 -42 D
-54 -47 D
-54 -54 D
-48 -53 D
-44 -54 D
-41 -54 D
-155 -216 D
-40 -54 D
-50 -64 D
-54 -65 D
-54 -58 D
-29 -29 D
-62 -54 D
-71 -54 D
-51 -54 D
-29 -54 D
-10 -54 D
-11 -108 D
-19 -108 D
-13 -54 D
-31 -108 D
-17 -54 D
-57 -162 D
-41 -108 D
-45 -109 D
-48 -107 D
-28 -54 D
-32 -55 D
-35 -53 D
-45 -54 D
-58 -54 D
-24 -18 D
-58 -36 D
-50 -25 D
-54 -19 D
-54 -15 D
-108 -23 D
-162 -31 D
-54 -11 D
-108 -27 D
-54 -17 D
-108 -39 D
-162 -65 D
-108 -39 D
-54 -17 D
-54 -15 D
-54 -12 D
-54 -10 D
-96 -13 D
-66 -6 D
-108 -3 D
-54 0 D
-108 5 D
-54 7 D
-54 16 D
-54 36 D
-54 60 D
-54 73 D
-128 190 D
-88 138 D
-54 97 D
-17 35 D
-23 54 D
-19 54 D
-14 54 D
-11 54 D
-14 108 D
-21 216 D
-14 108 D
-29 162 D
-37 162 D
-27 108 D
-44 159 D
-54 177 D
-32 96 D
-61 162 D
-47 108 D
-26 54 D
-57 108 D
-61 108 D
-148 240 D
-156 246 D
S
2592 4389 M
29 -15 D
14 -54 D
-43 -21 D
-26 21 D
17 54 D
P S
12 W
7776 6685 M
-216 17 D
-270 23 D
-162 11 D
-162 5 D
-108 0 D
-162 -7 D
-108 -8 D
-108 -12 D
-54 -8 D
-54 -11 D
-54 -20 D
-54 -42 D
-54 -64 D
-24 -35 D
-30 -40 D
-122 -176 D
-40 -61 D
-64 -101 D
-64 -108 D
-122 -216 D
-20 -32 D
-54 -94 D
-17 -36 D
-17 -54 D
-5 -54 D
2 -162 D
-1 -54 D
-6 -108 D
-17 -162 D
-7 -54 D
-18 -108 D
-11 -54 D
-14 -54 D
-17 -54 D
-24 -54 D
-33 -54 D
-31 -40 D
-13 -14 D
-41 -38 D
-54 -37 D
-54 -28 D
-54 -21 D
-54 -17 D
-86 -21 D
-76 -17 D
-378 -72 D
-216 -38 D
-232 -35 D
-146 -22 D
-54 -10 D
-93 -22 D
-69 -19 D
-286 -89 D
-200 -55 D
-108 -27 D
-216 -47 D
-54 -10 D
-108 -15 D
-54 -6 D
-54 -2 D
-55 0 D
-53 4 D
-54 7 D
-54 13 D
-54 19 D
-54 25 D
-54 32 D
-54 41 D
-24 21 D
-30 29 D
-23 25 D
-44 54 D
-41 58 D
-108 173 D
-61 93 D
-151 216 D
-58 92 D
-41 70 D
-28 54 D
-26 54 D
-22 54 D
-20 54 D
-17 54 D
-14 54 D
-11 54 D
-9 54 D
-5 54 D
-3 54 D
0 54 D
4 54 D
8 54 D
13 54 D
21 54 D
42 61 D
54 47 D
-54 19 D
-54 35 D
-54 57 D
-33 51 D
-27 54 D
-23 54 D
-25 72 D
-26 90 D
-28 114 D
-33 156 D
-21 108 D
-24 108 D
-15 54 D
-19 54 D
-23 54 D
-27 55 D
-57 107 D
-62 108 D
-43 69 D
-60 93 D
-48 69 D
-68 93 D
-94 120 D
-124 150 D
S
6156 6912 M
P S
4 W
7776 5152 M
-162 40 D
-54 17 D
-54 21 D
-54 28 D
-43 34 D
-11 11 D
-31 43 D
-23 45 D
-22 63 D
-50 162 D
-19 54 D
-22 54 D
-24 54 D
-25 43 D
-5 11 D
-35 54 D
-42 54 D
-52 54 D
-71 54 D
-65 36 D
-54 21 D
-54 13 D
-54 6 D
-54 -2 D
-54 -12 D
-54 -21 D
-54 -34 D
-9 -7 D
-45 -43 D
-9 -11 D
-37 -54 D
-24 -54 D
-15 -54 D
-6 -54 D
1 -54 D
8 -54 D
15 -54 D
22 -54 D
29 -54 D
16 -26 D
21 -28 D
33 -40 D
54 -53 D
54 -41 D
54 -33 D
54 -28 D
108 -43 D
87 -32 D
75 -39 D
23 -15 D
31 -34 D
16 -20 D
18 -54 D
1 -54 D
-8 -54 D
-18 -54 D
-9 -16 D
-17 -38 D
-37 -54 D
-46 -54 D
-62 -55 D
-73 -53 D
-89 -61 D
-64 -47 D
-65 -54 D
-33 -30 D
-54 -53 D
-71 -79 D
-45 -54 D
-46 -61 D
-34 -47 D
-36 -54 D
-67 -108 D
-92 -162 D
-41 -72 D
-22 -36 D
-37 -54 D
-49 -56 D
-60 -52 D
-48 -33 D
-33 -21 D
-75 -37 D
-54 -19 D
-54 -13 D
-54 -7 D
-54 -1 D
-54 6 D
-54 10 D
-54 16 D
-54 19 D
-61 26 D
-106 54 D
-49 28 D
-54 34 D
-54 37 D
-54 42 D
-23 21 D
-31 19 D
-54 22 D
-54 -9 D
-108 -33 D
-54 -13 D
-54 -10 D
-108 -13 D
-324 -29 D
-108 -15 D
-108 -19 D
-162 -37 D
-162 -41 D
-378 -101 D
-177 -45 D
-363 -82 D
-54 -12 D
-108 -28 D
-54 -18 D
-54 -23 D
-54 -29 D
-31 -24 D
-84 -54 D
-47 -18 D
-54 -6 D
-47 24 D
-7 5 D
-40 49 D
-14 54 D
-17 108 D
-15 54 D
-24 54 D
-30 54 D
-35 54 D
-41 58 D
-78 104 D
-85 108 D
-88 108 D
-73 84 D
-54 58 D
-54 53 D
-54 49 D
-54 45 D
-54 42 D
-66 47 D
-42 28 D
-54 34 D
-216 123 D
-54 34 D
-71 51 D
-62 54 D
-52 54 D
-44 54 D
-41 58 D
-33 50 D
-63 108 D
-86 162 D
-34 73 D
-16 35 D
-21 54 D
-15 54 D
-10 54 D
-4 54 D
2 54 D
8 54 D
14 54 D
18 54 D
24 55 D
24 53 D
84 157 D
54 98 D
64 123 D
44 93 D
29 69 D
25 68 D
29 94 D
13 54 D
12 69 D
5 39 D
4 54 D
0 54 D
-4 54 D
-8 54 D
-12 54 D
-17 54 D
-23 54 D
-29 54 D
-36 54 D
-44 54 D
-54 54 D
-52 43 D
-54 38 D
-54 31 D
-54 28 D
-55 22 D
-53 19 D
-54 16 D
-54 12 D
-54 9 D
-54 7 D
S
12 W
7776 3305 M
-108 6 D
-162 3 D
-162 -5 D
-108 -10 D
-108 -15 D
-108 -23 D
-73 -21 D
-89 -29 D
-108 -45 D
-108 -53 D
-62 -35 D
-100 -60 D
-108 -71 D
-216 -149 D
-108 -71 D
-54 -32 D
-54 -30 D
-54 -25 D
-54 -21 D
-54 -15 D
-54 -10 D
-54 -6 D
-54 -2 D
-54 0 D
-54 2 D
-108 8 D
-108 13 D
-54 8 D
-54 10 D
-81 19 D
-27 7 D
-54 17 D
-54 20 D
-108 49 D
-270 138 D
-83 39 D
-79 32 D
-61 22 D
-47 14 D
-54 13 D
-54 10 D
-54 5 D
-54 0 D
-54 -3 D
-54 -9 D
-54 -12 D
-59 -18 D
-49 -17 D
-108 -45 D
-648 -302 D
-54 -26 D
-108 -56 D
-74 -40 D
-90 -54 D
-52 -34 D
-54 -41 D
-54 -48 D
-37 -39 D
-17 -20 D
-54 -71 D
-11 -17 D
-47 -54 D
-50 -40 D
-27 -14 D
-27 -12 D
-54 -8 D
-54 13 D
-54 33 D
-31 28 D
-38 54 D
-27 54 D
-25 54 D
-41 74 D
-23 34 D
-44 54 D
-50 54 D
-55 54 D
-152 144 D
-72 72 D
-50 54 D
-48 54 D
-46 54 D
-54 68 D
-70 94 D
-73 108 D
-34 54 D
-39 67 D
-22 41 D
-26 54 D
-21 54 D
-16 54 D
-23 109 D
-15 53 D
-43 54 D
-50 30 D
-54 7 D
-108 -7 D
-54 -2 D
-54 1 D
-54 4 D
-54 6 D
-162 28 D
-108 21 D
-162 26 D
-108 13 D
-54 5 D
S
0 6834 M
26 24 D
28 13 D
59 41 D
49 24 D
54 19 D
54 8 D
54 -5 D
54 -24 D
26 -22 D
28 -33 D
13 -21 D
16 -54 D
-6 -54 D
-25 -54 D
-52 -56 D
-54 -29 D
-54 -11 D
-54 1 D
-54 12 D
-80 29 D
-28 17 D
-54 27 D
S
6696 5871 M
47 -39 D
-47 -48 D
-40 48 D
P S
4 W
7776 2021 M
-108 13 D
-270 44 D
-162 28 D
-54 8 D
-54 6 D
-54 4 D
-54 1 D
-54 -4 D
-54 -10 D
-54 -16 D
-54 -22 D
-40 -21 D
-14 -6 D
-54 -29 D
-30 -19 D
-24 -13 D
-108 -70 D
-113 -79 D
-103 -74 D
-54 -37 D
-54 -35 D
-54 -31 D
-54 -26 D
-54 -20 D
-54 -13 D
-54 -7 D
-54 0 D
-54 4 D
-54 8 D
-63 15 D
-45 12 D
-121 42 D
-203 77 D
-108 37 D
-108 31 D
-162 38 D
-54 12 D
-54 14 D
-54 17 D
-54 20 D
-55 24 D
-53 26 D
-54 28 D
-54 31 D
-108 58 D
-108 51 D
-57 22 D
-51 18 D
-54 14 D
-54 9 D
-54 3 D
-54 -2 D
-54 -7 D
-54 -10 D
-108 -29 D
-54 -16 D
-108 -36 D
-137 -52 D
-79 -32 D
-108 -51 D
-54 -28 D
-54 -31 D
-54 -34 D
-58 -40 D
-69 -54 D
-61 -54 D
-54 -54 D
-49 -54 D
-45 -54 D
-42 -54 D
-115 -162 D
-47 -62 D
-54 -57 D
-58 -43 D
-50 -25 D
-54 -12 D
-54 -2 D
-54 9 D
-54 18 D
-54 27 D
-55 39 D
-59 54 D
-51 54 D
-105 118 D
-54 54 D
-54 51 D
-54 48 D
-108 89 D
-54 42 D
-54 40 D
-108 75 D
-108 65 D
-108 57 D
-54 25 D
-54 23 D
-54 20 D
-54 17 D
-54 11 D
-54 4 D
-54 -10 D
-43 -27 D
-65 -29 D
-54 -9 D
-44 38 D
2 54 D
42 104 D
3 4 D
18 54 D
5 54 D
-2 54 D
-5 54 D
-19 137 D
-23 133 D
-14 54 D
-20 54 D
-25 54 D
-36 54 D
-44 47 D
-54 41 D
-54 28 D
-54 18 D
-54 10 D
-54 5 D
-108 1 D
-108 -1 D
S
6804 2592 M
P S
2484 656 M
54 -21 D
30 -41 D
9 -54 D
-39 -54 D
-54 -19 D
-41 19 D
-13 11 D
-29 43 D
9 54 D
20 32 D
P S
6426 499 M
54 11 D
54 -10 D
54 -31 D
35 -37 D
27 -54 D
7 -54 D
-13 -54 D
-34 -54 D
-22 -21 D
-54 -30 D
-54 -9 D
-54 14 D
-54 38 D
-8 8 D
-35 54 D
-13 54 D
5 54 D
24 54 D
27 32 D
32 22 D
P S
12 W
1892 0 M
-56 26 D
-67 28 D
-203 71 D
-54 25 D
-54 39 D
-24 27 D
-30 46 D
-4 8 D
-15 54 D
6 54 D
22 54 D
45 57 D
54 43 D
54 36 D
34 26 D
20 19 D
29 35 D
31 54 D
18 54 D
7 54 D
-4 54 D
-17 54 D
-31 54 D
-33 38 D
-54 43 D
-54 29 D
-54 21 D
-54 16 D
-56 15 D
-52 15 D
-112 39 D
-50 20 D
-319 142 D
-113 46 D
-176 62 D
-148 46 D
-108 29 D
-108 24 D
-108 17 D
-54 6 D
S
3556 0 M
25 54 D
20 54 D
17 65 D
8 43 D
3 54 D
-2 54 D
-9 63 D
-9 45 D
-14 54 D
-33 108 D
-35 108 D
-79 270 D
-18 54 D
-23 54 D
-30 54 D
-29 37 D
-11 17 D
-43 58 D
-25 50 D
-17 54 D
0 54 D
30 54 D
12 12 D
54 32 D
54 3 D
54 -9 D
108 -29 D
54 -7 D
54 1 D
54 8 D
54 14 D
54 16 D
108 36 D
108 31 D
54 13 D
54 10 D
54 7 D
54 4 D
54 1 D
54 -2 D
54 -6 D
54 -9 D
72 -18 D
36 -11 D
54 -19 D
55 -24 D
53 -26 D
54 -31 D
78 -51 D
70 -54 D
68 -60 D
49 -48 D
51 -54 D
47 -54 D
44 -54 D
79 -106 D
54 -79 D
54 -85 D
63 -108 D
99 -179 D
85 -145 D
100 -162 D
85 -132 D
56 -84 D
S
7485 0 M
75 22 D
54 11 D
54 8 D
54 4 D
54 1 D
S
6696 1406 M
54 -10 D
54 -41 D
5 -5 D
24 -54 D
-8 -54 D
-21 -33 D
-20 -21 D
-34 -22 D
-54 -9 D
-54 22 D
-11 9 D
-40 54 D
-9 54 D
23 54 D
37 35 D
P S
4 W
967 0 M
-65 108 D
-30 54 D
-27 54 D
-35 77 D
-33 85 D
-21 64 D
-27 98 D
-27 106 D
-17 56 D
-22 54 D
-31 54 D
-38 45 D
-9 9 D
-45 36 D
-54 29 D
-54 16 D
-54 6 D
-54 -2 D
-54 -6 D
-148 -25 D
-68 -9 D
-54 -3 D
S
4321 0 M
53 31 D
54 23 D
54 17 D
54 9 D
54 -1 D
54 -8 D
57 -17 D
51 -18 D
54 -25 D
20 -11 D
S
4428 1296 M
54 -8 D
54 -20 D
41 -26 D
13 -10 D
44 -44 D
36 -54 D
21 -54 D
10 -54 D
3 -54 D
-6 -54 D
-13 -54 D
-22 -54 D
-19 -37 D
-12 -17 D
-42 -50 D
-54 -42 D
-54 -18 D
-54 -3 D
-54 12 D
-54 27 D
-54 43 D
-28 31 D
-26 32 D
-14 22 D
-29 54 D
-19 54 D
-11 54 D
-2 54 D
8 54 D
20 54 D
33 54 D
57 54 D
11 8 D
54 28 D
54 15 D
P S
12 W
4428 1136 M
54 -43 D
8 -13 D
-8 -22 D
-22 -32 D
-32 -19 D
-34 19 D
-20 27 D
-10 27 D
10 16 D
P S
PSL_cliprestore
9 PSL_straight_text_labels
PSL_cliprestore
2 setlinecap
/MM {neg exch M} def
/PSL_A0_y 83 def
/PSL_A1_y 0 def
25 W
0 7776 M 0 -7776 D S
8 W
0 216 M -83 0 D S
0 2376 M -83 0 D S
0 4536 M -83 0 D S
0 6696 M -83 0 D S
/PSL_AH0 0
200 F0
(0) sw mx
(2) sw mx
(4) sw mx
(6) sw mx
def
/PSL_A0_y PSL_A0_y 83 add def
216 PSL_A0_y MM
(0) mr Z
2376 PSL_A0_y MM
(2) mr Z
4536 PSL_A0_y MM
(4) mr Z
6696 PSL_A0_y MM
(6) mr Z
/PSL_A0_y PSL_A0_y PSL_AH0 add def
0 1296 M -42 0 D S
0 3456 M -42 0 D S
0 5616 M -42 0 D S
0 7776 M -42 0 D S
/PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
7776 0 T
/MM {exch M} def
/PSL_A0_y 83 def
/PSL_A1_y 0 def
25 W
0 7776 M 0 -7776 D S
8 W
0 216 M 83 0 D S
0 2376 M 83 0 D S
0 4536 M 83 0 D S
0 6696 M 83 0 D S
0 1296 M 42 0 D S
0 3456 M 42 0 D S
0 5616 M 42 0 D S
0 7776 M 42 0 D S
/PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
-7776 0 T
/MM {neg M} def
/PSL_A0_y 83 def
/PSL_A1_y 0 def
25 W
0 0 M 7776 0 D S
8 W
0 0 M 0 -83 D S
2160 0 M 0 -83 D S
4320 0 M 0 -83 D S
6480 0 M 0 -83 D S
/PSL_AH0 0
(0) sh mx
(2) sh mx
(4) sh mx
(6) sh mx
def
/PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
0 PSL_A0_y MM
(0) bc Z
2160 PSL_A0_y MM
(2) bc Z
4320 PSL_A0_y MM
(4) bc Z
6480 PSL_A0_y MM
(6) bc Z
1080 0 M 0 -42 D S
3240 0 M 0 -42 D S
5400 0 M 0 -42 D S
7560 0 M 0 -42 D S
/PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
0 7776 T
/MM {M} def
/PSL_A0_y 83 def
/PSL_A1_y 0 def
25 W
0 0 M 7776 0 D S
8 W
0 0 M 0 83 D S
2160 0 M 0 83 D S
4320 0 M 0 83 D S
6480 0 M 0 83 D S
1080 0 M 0 42 D S
3240 0 M 0 42 D S
5400 0 M 0 42 D S
7560 0 M 0 42 D S
/PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
0 -7776 T
0 setlinecap
%%EndObject
0 A
FQ
O0
0 0 TM
% PostScript produced by:
%%GMT: grdcontour -R0/7.2/-0.2/7 WB1998.grd -Jx0.9i -O -K -C25 -A50+jCB -Wa0.75p,- -Wc0.25p,- -GlCT/RB
%%PROJ: xy 0.00000000 7.20000000 -0.20000000 7.00000000 0.000 7.200 -0.200 7.000 +xy +a=6378137.000 +b=6356752.314245
%%BeginObject PSL_Layer_2
0 setlinecap
0 setlinejoin
3.32551 setmiterlimit
clipsave
0 0 M
7776 0 D
0 7776 D
-7776 0 D
PSL_eoclip N
/PSL_setlinepen {12 W 0 A [100 50] 0 B} def
/PSL_setboxpen {12 W 0 A [100 50] 0 B} def
/PSL_setboxrgb {1 A} def
/PSL_settxtrgb {0 A} def
PSL_font_encode 0 get 0 eq {Standard+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
150 F0
/PSL_m 6 def
/PSL_txt_x
4668.50
5561.92
6336.09
7696.88
7234.81
6978.78
6 array astore def
/PSL_txt_y
6215.00
4428.16
2879.83
158.24
1082.38
1594.45
6 array astore def
/PSL_angle
67.39
50.15
53.16
74.14
2.55
0.45
6 array astore def
/PSL_str
(750)
(800)
(850)
(900)
(900)
(900)
6 array astore def
/PSL_just 2 def
/PSL_gap_x 22 def
/PSL_gap_y 22 def
(750) sH /PSL_height edef
0 PSL_straight_text_labels
12 W
[100 50] 0 B
3726 7130 M
54 36 D
54 16 D
54 -1 D
54 -17 D
54 -39 D
36 -51 D
22 -54 D
6 -54 D
-7 -54 D
-23 -54 D
-34 -40 D
-18 -14 D
-36 -20 D
-54 -15 D
-54 -6 D
-54 3 D
-54 21 D
-21 17 D
-33 44 D
-6 10 D
-16 54 D
-2 54 D
10 54 D
14 34 D
10 20 D
P S
4 W
[33 17] 0 B
4464 7776 M
19 -54 D
16 -54 D
14 -54 D
12 -54 D
11 -63 D
6 -45 D
9 -108 D
1 -108 D
-7 -108 D
-9 -65 D
-18 -97 D
-13 -54 D
-23 -76 D
-31 -86 D
-23 -54 D
-26 -54 D
-28 -55 D
-54 -90 D
-54 -80 D
-54 -70 D
-54 -63 D
-54 -55 D
-54 -48 D
-54 -41 D
-60 -38 D
-48 -25 D
-54 -23 D
-54 -17 D
-54 -13 D
-54 -10 D
-108 -24 D
-54 -10 D
-54 -3 D
-54 5 D
-54 18 D
-54 42 D
-42 60 D
-12 20 D
-37 88 D
-18 54 D
-14 54 D
-12 54 D
-19 108 D
-13 108 D
-13 162 D
-5 108 D
-2 162 D
1 54 D
7 108 D
5 54 D
15 108 D
23 108 D
28 101 D
21 61 D
33 82 D
39 80 D
S
12 W
[100 50] 0 B
5248 7776 M
-77 -270 D
-67 -216 D
-75 -216 D
-61 -157 D
-70 -167 D
-146 -334 D
-131 -314 D
-47 -108 D
-38 -81 D
-54 -103 D
-54 -88 D
-54 -75 D
-54 -60 D
-54 -47 D
-54 -36 D
-54 -28 D
-54 -22 D
-54 -19 D
-162 -50 D
-54 -19 D
-54 -23 D
-54 -27 D
-54 -34 D
-56 -44 D
-54 -54 D
-52 -63 D
-54 -67 D
-29 -32 D
-25 -24 D
-38 -30 D
-16 -11 D
-54 -25 D
-54 -11 D
-54 2 D
-54 16 D
-54 32 D
-54 53 D
-36 52 D
-32 54 D
-62 108 D
-102 162 D
-38 68 D
-20 40 D
-22 54 D
-18 54 D
-15 54 D
-21 108 D
-14 108 D
-11 162 D
-3 108 D
0 108 D
7 162 D
9 101 D
26 223 D
1 54 D
-6 54 D
-25 108 D
-27 108 D
-34 162 D
-9 54 D
-20 162 D
-9 108 D
-7 162 D
-1 54 D
S
4 W
[33 17] 0 B
6042 7776 M
-112 -162 D
-106 -162 D
-102 -162 D
-164 -270 D
-163 -270 D
-135 -216 D
-76 -117 D
-54 -92 D
-23 -61 D
-11 -54 D
-8 -54 D
-32 -324 D
-27 -216 D
-19 -108 D
-11 -54 D
-13 -54 D
-18 -63 D
-15 -45 D
-21 -54 D
-26 -54 D
-32 -54 D
-39 -54 D
-29 -32 D
-22 -22 D
-32 -28 D
-34 -26 D
-74 -45 D
-54 -26 D
-54 -21 D
-54 -17 D
-54 -13 D
-54 -11 D
-108 -17 D
-162 -20 D
-54 -9 D
-54 -12 D
-54 -16 D
-54 -21 D
-54 -26 D
-54 -30 D
-162 -97 D
-108 -59 D
-94 -46 D
-68 -30 D
-108 -41 D
-113 -37 D
-103 -29 D
-108 -26 D
-108 -23 D
-108 -17 D
-54 -3 D
-54 7 D
-41 37 D
-19 54 D
-32 162 D
-49 216 D
-31 108 D
-17 54 D
-27 67 D
-41 95 D
-25 54 D
-42 103 D
-20 59 D
-16 54 D
-23 108 D
-8 54 D
-16 162 D
-21 270 D
-11 108 D
-27 216 D
-41 270 D
-33 171 D
-69 315 D
-20 108 D
-19 125 D
-70 523 D
S
12 W
[100 50] 0 B
7207 7776 M
-79 -47 D
-162 -104 D
-108 -75 D
-108 -79 D
-108 -85 D
-113 -96 D
-61 -54 D
-96 -91 D
-70 -71 D
-51 -54 D
-149 -169 D
-54 -64 D
-71 -91 D
-40 -54 D
-73 -108 D
-65 -108 D
-29 -54 D
-27 -54 D
-24 -54 D
-21 -54 D
-19 -54 D
-15 -54 D
-12 -54 D
-10 -54 D
-7 -54 D
-5 -54 D
-5 -108 D
1 -108 D
9 -162 D
21 -216 D
19 -162 D
10 -108 D
5 -108 D
0 -54 D
-3 -54 D
-5 -54 D
-12 -68 D
-9 -40 D
-17 -54 D
-28 -70 D
-20 -38 D
-34 -54 D
-54 -61 D
-54 -40 D
-54 -25 D
-54 -15 D
-54 -7 D
-54 -3 D
-162 5 D
-162 8 D
-108 3 D
-162 -2 D
-108 -4 D
-162 -11 D
-162 -17 D
-108 -17 D
-54 -11 D
-70 -19 D
-38 -11 D
-54 -20 D
-56 -23 D
-113 -54 D
-263 -134 D
-108 -52 D
-108 -48 D
-108 -43 D
-108 -37 D
-54 -15 D
-54 -13 D
-54 -11 D
-54 -8 D
-54 -4 D
-54 -1 D
-54 3 D
-54 8 D
-54 13 D
-54 19 D
-54 26 D
-54 35 D
-56 46 D
-52 54 D
-54 70 D
-25 38 D
-31 54 D
-27 54 D
-47 108 D
-32 76 D
-14 32 D
-40 79 D
-54 88 D
-54 79 D
-95 132 D
-13 21 D
-23 33 D
-32 54 D
-30 54 D
-24 54 D
-20 54 D
-16 54 D
-10 54 D
-7 66 D
-2 42 D
0 54 D
3 54 D
13 108 D
21 108 D
19 80 D
36 136 D
18 54 D
-24 54 D
-37 108 D
-34 108 D
-46 162 D
-29 108 D
-46 157 D
-87 275 D
-15 54 D
-10 54 D
-6 54 D
-14 216 D
-10 108 D
-20 138 D
-25 132 D
-12 54 D
-43 162 D
S
4 W
[33 17] 0 B
7776 7014 M
-162 -37 D
-108 -27 D
-137 -38 D
-79 -23 D
-162 -55 D
-108 -41 D
-97 -43 D
-110 -54 D
-95 -54 D
-22 -13 D
-62 -41 D
-46 -33 D
-54 -42 D
-54 -47 D
-54 -52 D
-54 -60 D
-29 -36 D
-25 -34 D
-47 -74 D
-28 -54 D
-23 -54 D
-20 -54 D
-14 -54 D
-11 -54 D
-6 -54 D
-3 -54 D
1 -54 D
5 -54 D
9 -54 D
13 -54 D
17 -54 D
21 -54 D
32 -66 D
25 -42 D
29 -44 D
54 -67 D
54 -55 D
59 -50 D
49 -35 D
54 -33 D
79 -40 D
83 -39 D
54 -29 D
54 -40 D
42 -54 D
20 -54 D
4 -54 D
-8 -54 D
-19 -54 D
-27 -54 D
-35 -54 D
-38 -54 D
-47 -61 D
-123 -155 D
-93 -125 D
-63 -91 D
-208 -324 D
-75 -108 D
-86 -111 D
-86 -105 D
-22 -26 D
-54 -55 D
-54 -47 D
-54 -38 D
-54 -31 D
-54 -23 D
-54 -17 D
-54 -10 D
-54 -3 D
-54 3 D
-54 9 D
-54 17 D
-54 23 D
-63 36 D
-45 31 D
-54 45 D
-54 52 D
-54 59 D
-54 65 D
-57 72 D
-45 54 D
-6 5 D
-54 35 D
-54 8 D
-108 3 D
-270 -4 D
-108 -5 D
-54 -4 D
-108 -13 D
-54 -10 D
-63 -15 D
-45 -12 D
-54 -18 D
-108 -41 D
-87 -37 D
-129 -58 D
-216 -105 D
-432 -219 D
-218 -104 D
-106 -45 D
-54 -21 D
-54 -18 D
-54 -16 D
-54 -12 D
-54 -7 D
-54 -2 D
-54 4 D
-54 11 D
-54 19 D
-58 33 D
-50 43 D
-10 11 D
-44 57 D
-32 51 D
-31 54 D
-55 108 D
-179 378 D
-81 157 D
-54 89 D
-16 24 D
-42 54 D
-50 56 D
-57 52 D
-70 54 D
-35 24 D
-54 34 D
-54 31 D
-54 29 D
-192 98 D
-94 54 D
-38 25 D
-54 40 D
-54 45 D
-54 52 D
-54 62 D
-35 46 D
-34 54 D
-24 54 D
-12 54 D
1 54 D
10 54 D
17 54 D
23 55 D
26 53 D
29 54 D
63 108 D
131 216 D
60 108 D
27 54 D
42 93 D
27 69 D
19 54 D
16 54 D
14 54 D
12 54 D
20 132 D
8 84 D
3 54 D
1 108 D
-3 108 D
-3 54 D
-16 162 D
-7 54 D
-28 162 D
-25 108 D
-14 54 D
-33 108 D
-45 119 D
-42 97 D
-66 129 D
-54 93 D
-30 48 D
S
12 W
[100 50] 0 B
7776 4467 M
-22 -39 D
-69 -108 D
-38 -54 D
-41 -54 D
-46 -57 D
-54 -62 D
-54 -59 D
-91 -92 D
-116 -108 D
-120 -108 D
-59 -54 D
-111 -108 D
-151 -155 D
-162 -170 D
-108 -117 D
-84 -98 D
-45 -54 D
-69 -90 D
-52 -72 D
-74 -113 D
-61 -103 D
-30 -54 D
-28 -54 D
-26 -54 D
-47 -108 D
-39 -108 D
-18 -54 D
-13 -54 D
-8 -54 D
-54 27 D
-87 27 D
-75 27 D
-162 50 D
-162 44 D
-108 26 D
-72 15 D
-90 22 D
-54 15 D
-54 21 D
-54 43 D
-54 80 D
-76 143 D
-32 55 D
-32 53 D
-36 54 D
-40 55 D
-54 64 D
-41 43 D
-67 58 D
-54 38 D
-19 12 D
-35 19 D
-54 25 D
-54 19 D
-54 14 D
-54 10 D
-54 4 D
-54 1 D
-54 -3 D
-54 -7 D
-54 -11 D
-63 -17 D
-45 -14 D
-99 -40 D
-110 -54 D
-96 -54 D
-127 -80 D
-119 -82 D
-97 -72 D
-114 -90 D
-102 -87 D
-83 -75 D
-110 -108 D
-203 -216 D
-36 -35 D
-54 -46 D
-54 -36 D
-54 -25 D
-54 -13 D
-54 0 D
-54 11 D
-54 25 D
-54 39 D
-28 26 D
-26 28 D
-62 80 D
-74 108 D
-39 54 D
-43 54 D
-52 62 D
-142 154 D
-47 54 D
-44 54 D
-40 54 D
-51 78 D
-54 94 D
-54 111 D
-63 149 D
-123 324 D
-22 54 D
-25 54 D
-29 54 D
-40 54 D
-22 23 D
-54 41 D
-54 31 D
-54 27 D
-216 101 D
-162 82 D
-54 30 D
-108 65 D
-54 35 D
-72 51 D
-36 27 D
-54 44 D
-54 49 D
-54 53 D
S
0 7586 M
108 -71 D
86 -63 D
76 -61 D
54 -47 D
55 -54 D
53 -58 D
54 -69 D
23 -35 D
33 -54 D
26 -54 D
22 -54 D
16 -54 D
12 -54 D
6 -54 D
3 -54 D
-3 -54 D
-7 -54 D
-10 -54 D
-15 -54 D
-19 -54 D
-33 -76 D
-54 -98 D
-54 -82 D
-54 -73 D
-54 -67 D
-108 -124 D
-112 -128 D
-50 -60 D
-54 -69 D
S
6696 5957 M
54 20 D
54 5 D
54 -7 D
54 -19 D
29 -16 D
25 -25 D
26 -29 D
14 -54 D
-17 -54 D
-23 -23 D
-37 -31 D
-17 -8 D
-54 -17 D
-54 -7 D
-54 4 D
-54 18 D
-14 10 D
-40 35 D
-12 19 D
-15 54 D
13 54 D
14 24 D
32 30 D
P S
4 W
[33 17] 0 B
6339 0 M
-21 11 D
-56 43 D
-47 54 D
-30 54 D
-19 54 D
-11 54 D
-2 54 D
6 54 D
15 54 D
25 54 D
11 17 D
29 37 D
25 23 D
54 34 D
54 18 D
54 7 D
54 -3 D
54 -10 D
54 -18 D
54 -28 D
35 -23 D
19 -15 D
40 -39 D
39 -54 D
25 -54 D
14 -54 D
4 -54 D
-6 -54 D
-17 -54 D
-28 -54 D
-17 -22 D
-29 -32 D
-25 -22 D
-50 -32 D
S
7776 3032 M
-324 -149 D
-540 -241 D
-54 -27 D
-54 -23 D
-19 -54 D
-50 -108 D
-27 -54 D
-29 -54 D
-63 -108 D
-34 -54 D
-48 -71 D
-65 -91 D
-43 -56 D
-54 -68 D
-79 -92 D
-83 -89 D
-54 -52 D
-54 -45 D
-54 -35 D
-54 -25 D
-54 -14 D
-54 -4 D
-54 2 D
-54 9 D
-54 13 D
-54 17 D
-108 43 D
-108 50 D
-157 76 D
-119 54 D
-156 64 D
-110 44 D
-52 22 D
-65 32 D
-43 24 D
-54 35 D
-65 49 D
-61 54 D
-36 36 D
-20 18 D
-103 108 D
-150 162 D
-52 54 D
-53 51 D
-54 39 D
-54 7 D
-54 -15 D
-66 -28 D
-42 -19 D
-108 -55 D
-62 -34 D
-100 -59 D
-76 -49 D
-86 -59 D
-66 -49 D
-96 -77 D
-94 -85 D
-68 -67 D
-54 -58 D
-33 -37 D
-75 -94 D
-54 -76 D
-54 -85 D
-40 -69 D
-55 -108 D
-77 -162 D
-44 -85 D
-54 -82 D
-54 -50 D
-54 -19 D
-54 8 D
-30 12 D
-24 6 D
-124 48 D
-38 16 D
-54 30 D
-54 37 D
-54 47 D
-33 32 D
-129 139 D
-54 59 D
-123 126 D
-93 89 D
-54 49 D
-30 24 D
-24 21 D
-54 40 D
-54 34 D
-54 29 D
-54 24 D
-54 20 D
-54 17 D
-54 14 D
-54 11 D
-108 15 D
-54 3 D
-54 1 D
-54 -1 D
-54 -3 D
-54 -1 D
-54 9 D
-36 37 D
-4 54 D
9 54 D
31 116 D
14 46 D
14 54 D
11 54 D
9 54 D
6 57 D
4 51 D
-1 108 D
-5 54 D
-8 54 D
-12 54 D
-15 54 D
-20 54 D
-24 54 D
-30 54 D
-35 54 D
-43 54 D
-27 31 D
-54 52 D
-28 25 D
-80 62 D
-66 46 D
-96 62 D
-162 101 D
S
2484 794 M
54 13 D
54 -15 D
54 -43 D
54 -68 D
19 -33 D
26 -54 D
18 -54 D
10 -54 D
-1 -54 D
-18 -56 D
-48 -52 D
-6 -4 D
-54 -23 D
-54 -9 D
-54 2 D
-54 13 D
-54 26 D
-57 49 D
-33 54 D
-17 54 D
-3 54 D
9 54 D
21 54 D
26 45 D
54 61 D
P S
12 W
[100 50] 0 B
1474 0 M
-16 21 D
-22 33 D
-32 54 D
-24 54 D
-16 54 D
-7 54 D
3 54 D
14 54 D
30 57 D
54 60 D
56 45 D
71 54 D
35 31 D
22 23 D
41 54 D
26 54 D
15 54 D
3 54 D
-7 54 D
-18 54 D
-29 54 D
-43 54 D
-10 11 D
-54 48 D
-54 39 D
-54 33 D
-57 31 D
-51 25 D
-108 47 D
-108 43 D
-162 59 D
-162 58 D
-108 41 D
-120 51 D
-42 20 D
-65 34 D
-43 25 D
-54 36 D
-63 47 D
-62 54 D
-53 54 D
-46 54 D
-46 62 D
-31 46 D
-32 54 D
-30 54 D
-15 31 D
S
3736 0 M
-2 54 D
-8 62 D
-8 46 D
-14 54 D
-17 54 D
-21 54 D
-24 54 D
-28 54 D
-30 54 D
-74 119 D
-62 97 D
-65 108 D
-57 108 D
-25 54 D
-22 54 D
-19 54 D
-20 66 D
-10 42 D
-9 54 D
-5 54 D
1 54 D
8 54 D
19 54 D
30 54 D
20 27 D
24 27 D
30 31 D
54 48 D
54 43 D
58 40 D
50 32 D
54 31 D
54 28 D
54 24 D
54 21 D
54 16 D
54 13 D
54 8 D
54 4 D
54 0 D
54 -4 D
68 -11 D
40 -8 D
54 -15 D
54 -17 D
108 -41 D
62 -27 D
116 -54 D
106 -54 D
40 -21 D
108 -63 D
54 -34 D
64 -44 D
72 -54 D
64 -54 D
70 -67 D
40 -41 D
47 -54 D
43 -54 D
39 -54 D
34 -54 D
31 -54 D
26 -54 D
23 -54 D
18 -54 D
15 -54 D
11 -54 D
9 -54 D
5 -54 D
2 -54 D
0 -54 D
-7 -162 D
-5 -108 D
-2 -108 D
5 -108 D
6 -54 D
S
7637 0 M
31 75 D
13 33 D
17 54 D
15 54 D
12 54 D
9 54 D
7 54 D
5 54 D
1 54 D
-1 54 D
-4 54 D
-7 54 D
-13 66 D
-11 42 D
-18 54 D
-25 57 D
-29 51 D
-25 37 D
-15 17 D
-39 40 D
-54 36 D
-54 22 D
-54 11 D
-54 5 D
-54 0 D
-55 -4 D
-269 -24 D
-54 -2 D
-54 1 D
-54 5 D
-54 10 D
-54 17 D
-54 27 D
-23 18 D
-31 31 D
-17 23 D
-24 54 D
-6 54 D
8 54 D
23 54 D
16 24 D
26 30 D
28 28 D
54 37 D
54 26 D
54 19 D
54 13 D
54 9 D
67 4 D
41 1 D
54 -3 D
54 -6 D
54 -8 D
56 -12 D
186 -54 D
28 -10 D
54 -15 D
54 -12 D
54 -7 D
54 -2 D
54 3 D
54 6 D
S
4 W
[33 17] 0 B
879 0 M
-15 87 D
-9 75 D
-4 54 D
-1 108 D
5 216 D
-1 54 D
-5 54 D
-10 54 D
-17 54 D
-25 54 D
-34 54 D
-46 54 D
-69 62 D
-66 46 D
-42 25 D
-54 29 D
-54 26 D
-162 68 D
-108 44 D
-108 48 D
-54 26 D
S
4104 1476 M
54 15 D
54 8 D
54 4 D
54 -1 D
54 -6 D
54 -10 D
54 -15 D
54 -19 D
54 -25 D
54 -31 D
64 -46 D
60 -54 D
47 -54 D
39 -54 D
31 -54 D
24 -54 D
19 -54 D
13 -54 D
9 -54 D
4 -54 D
-1 -54 D
-6 -54 D
-10 -54 D
-15 -54 D
-21 -54 D
-27 -54 D
-14 -24 D
-20 -30 D
-34 -44 D
-54 -53 D
-54 -39 D
-54 -26 D
-54 -18 D
-54 -9 D
-54 0 D
-54 7 D
-54 15 D
-54 21 D
-54 29 D
-54 36 D
-54 43 D
-54 50 D
-54 57 D
-54 67 D
-55 80 D
-32 54 D
-28 54 D
-24 54 D
-23 67 D
-12 41 D
-11 54 D
-5 54 D
0 54 D
8 54 D
20 61 D
24 47 D
30 40 D
12 14 D
42 39 D
19 15 D
35 23 D
59 31 D
P S
12 W
[100 50] 0 B
39 0 M
-39 83 D
S
4374 1189 M
54 3 D
54 -18 D
46 -40 D
26 -54 D
4 -54 D
-16 -54 D
-6 -9 D
-45 -45 D
-9 -7 D
-54 -15 D
-54 7 D
-30 15 D
-24 16 D
-32 38 D
-21 54 D
1 54 D
25 54 D
27 27 D
P S
PSL_cliprestore
9 PSL_straight_text_labels
PSL_cliprestore
%%EndObject
[] 0 B
0 A
FQ
O0
0 0 TM
% PostScript produced by:
%%GMT: psxy -R0/7.2/-0.2/7 -Jx0.9i -O ../../doc/examples/ex12/table_5.11 -Sc0.1 -G0
%%PROJ: xy 0.00000000 7.20000000 -0.20000000 7.00000000 0.000 7.200 -0.200 7.000 +xy +a=6378137.000 +b=6356752.314245
%%BeginObject PSL_Layer_3
0 setlinecap
0 setlinejoin
3.32551 setmiterlimit
clipsave
0 0 M
7776 0 D
0 7776 D
-7776 0 D
PSL_eoclip N
4 W
{0 A} FS
60 324 6804 Sc
60 1512 6912 Sc
60 2592 6804 Sc
60 3888 6912 Sc
60 6156 6912 Sc
60 1728 5832 Sc
60 3132 5724 Sc
60 3672 5940 Sc
60 3672 6372 Sc
60 5184 6264 Sc
60 5724 5616 Sc
60 6696 5832 Sc
60 216 4860 Sc
60 972 4752 Sc
60 2484 5400 Sc
60 2700 5076 Sc
60 3240 5076 Sc
60 3780 5076 Sc
60 4428 5184 Sc
60 5292 4752 Sc
60 6804 4860 Sc
60 972 3672 Sc
60 1836 4320 Sc
60 2592 4320 Sc
60 3996 3996 Sc
60 4860 3672 Sc
60 5616 3672 Sc
60 6804 3888 Sc
60 324 2808 Sc
60 2160 3132 Sc
60 4104 2700 Sc
60 6804 2592 Sc
60 648 2052 Sc
60 1620 2160 Sc
60 2268 2160 Sc
60 2268 1404 Sc
60 3348 1404 Sc
60 4860 2160 Sc
60 5940 2052 Sc
60 6156 1296 Sc
60 6696 1296 Sc
60 432 756 Sc
60 1512 864 Sc
60 1512 324 Sc
60 2268 972 Sc
60 2484 540 Sc
60 3348 216 Sc
60 4428 1080 Sc
60 5832 648 Sc
60 6480 324 Sc
60 6156 3456 Sc
60 3888 6696 Sc
PSL_cliprestore
%%EndObject
%%PageTrailer
U
showpage
%%Trailer
end
%%EOF
Tip!
Press p or to see the previous file or,
n or to see the next file