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

trimvector.ps 56 KB

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

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

Comments

Loading...