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

latextitle.ps 101 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
  1. %!PS-Adobe-3.0
  2. %%BoundingBox: 0 0 612 792
  3. %%HiResBoundingBox: 0 0 612.0000 792.0000
  4. %%Title: GMT v6.2.0_2cae18f_2020.12.12 [64-bit] Document from psbasemap
  5. %%Creator: GMT6
  6. %%For: unknown
  7. %%DocumentNeededResources: font Helvetica Times-Roman
  8. %%CreationDate: Sat Dec 12 13:05:24 2020
  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. /PSL_BM_arg edef /PSL_S_arg edef /PSL_F_arg edef
  115. /.setfillconstantalpha where
  116. { pop PSL_BM_arg .setblendmode PSL_S_arg .setstrokeconstantalpha PSL_F_arg .setfillconstantalpha }
  117. { /pdfmark where {pop [ /BM PSL_BM_arg /CA PSL_S_arg /ca PSL_F_arg /SetTransparency pdfmark} if }
  118. ifelse
  119. }!
  120. /ISOLatin1+_Encoding [
  121. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  122. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  123. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  124. /.notdef /bullet /ellipsis /trademark /emdash /endash /fi /zcaron
  125. /space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright
  126. /parenleft /parenright /asterisk /plus /comma /minus /period /slash
  127. /zero /one /two /three /four /five /six /seven
  128. /eight /nine /colon /semicolon /less /equal /greater /question
  129. /at /A /B /C /D /E /F /G
  130. /H /I /J /K /L /M /N /O
  131. /P /Q /R /S /T /U /V /W
  132. /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore
  133. /quoteleft /a /b /c /d /e /f /g
  134. /h /i /j /k /l /m /n /o
  135. /p /q /r /s /t /u /v /w
  136. /x /y /z /braceleft /bar /braceright /asciitilde /scaron
  137. /OE /dagger /daggerdbl /Lslash /fraction /guilsinglleft /Scaron /guilsinglright
  138. /oe /Ydieresis /Zcaron /lslash /perthousand /quotedblbase /quotedblleft /quotedblright
  139. /dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent
  140. /dieresis /quotesinglbase /ring /cedilla /quotesingle /hungarumlaut /ogonek /caron
  141. /space /exclamdown /cent /sterling /currency /yen /brokenbar /section
  142. /dieresis /copyright /ordfeminine /guillemotleft /logicalnot /hyphen /registered /macron
  143. /degree /plusminus /twosuperior /threesuperior /acute /mu /paragraph /periodcentered
  144. /cedilla /onesuperior /ordmasculine /guillemotright /onequarter /onehalf /threequarters /questiondown
  145. /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla
  146. /Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis
  147. /Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply
  148. /Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls
  149. /agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla
  150. /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis
  151. /eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide
  152. /oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis
  153. ] def
  154. /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
  155. /F0 {/Helvetica Y}!
  156. /F1 {/Helvetica-Bold Y}!
  157. /F2 {/Helvetica-Oblique Y}!
  158. /F3 {/Helvetica-BoldOblique Y}!
  159. /F4 {/Times-Roman Y}!
  160. /F5 {/Times-Bold Y}!
  161. /F6 {/Times-Italic Y}!
  162. /F7 {/Times-BoldItalic Y}!
  163. /F8 {/Courier Y}!
  164. /F9 {/Courier-Bold Y}!
  165. /F10 {/Courier-Oblique Y}!
  166. /F11 {/Courier-BoldOblique Y}!
  167. /F12 {/Symbol Y}!
  168. /F13 {/AvantGarde-Book Y}!
  169. /F14 {/AvantGarde-BookOblique Y}!
  170. /F15 {/AvantGarde-Demi Y}!
  171. /F16 {/AvantGarde-DemiOblique Y}!
  172. /F17 {/Bookman-Demi Y}!
  173. /F18 {/Bookman-DemiItalic Y}!
  174. /F19 {/Bookman-Light Y}!
  175. /F20 {/Bookman-LightItalic Y}!
  176. /F21 {/Helvetica-Narrow Y}!
  177. /F22 {/Helvetica-Narrow-Bold Y}!
  178. /F23 {/Helvetica-Narrow-Oblique Y}!
  179. /F24 {/Helvetica-Narrow-BoldOblique Y}!
  180. /F25 {/NewCenturySchlbk-Roman Y}!
  181. /F26 {/NewCenturySchlbk-Italic Y}!
  182. /F27 {/NewCenturySchlbk-Bold Y}!
  183. /F28 {/NewCenturySchlbk-BoldItalic Y}!
  184. /F29 {/Palatino-Roman Y}!
  185. /F30 {/Palatino-Italic Y}!
  186. /F31 {/Palatino-Bold Y}!
  187. /F32 {/Palatino-BoldItalic Y}!
  188. /F33 {/ZapfChancery-MediumItalic Y}!
  189. /F34 {/ZapfDingbats Y}!
  190. /F35 {/Ryumin-Light-EUC-H Y}!
  191. /F36 {/Ryumin-Light-EUC-V Y}!
  192. /F37 {/GothicBBB-Medium-EUC-H Y}!
  193. /F38 {/GothicBBB-Medium-EUC-V Y}!
  194. /PSL_pathtextdict 26 dict def
  195. /PSL_pathtext
  196. {PSL_pathtextdict begin
  197. /ydepth exch def
  198. /textheight exch def
  199. /just exch def
  200. /offset exch def
  201. /str exch def
  202. /pathdist 0 def
  203. /setdist offset def
  204. /charcount 0 def
  205. /justy just 4 idiv textheight mul 2 div neg ydepth sub def
  206. V flattenpath
  207. {movetoproc} {linetoproc}
  208. {curvetoproc} {closepathproc}
  209. pathforall
  210. U N
  211. end
  212. } def
  213. PSL_pathtextdict begin
  214. /movetoproc
  215. { /newy exch def /newx exch def
  216. /firstx newx def /firsty newy def
  217. /ovr 0 def
  218. newx newy transform
  219. /cpy exch def /cpx exch def
  220. } def
  221. /linetoproc
  222. { /oldx newx def /oldy newy def
  223. /newy exch def /newx exch def
  224. /dx newx oldx sub def
  225. /dy newy oldy sub def
  226. /dist dx dup mul dy dup mul add sqrt def
  227. dist 0 ne
  228. { /dsx dx dist div ovr mul def
  229. /dsy dy dist div ovr mul def
  230. oldx dsx add oldy dsy add transform
  231. /cpy exch def /cpx exch def
  232. /pathdist pathdist dist add def
  233. {setdist pathdist le
  234. {charcount str length lt
  235. {setchar} {exit} ifelse}
  236. { /ovr setdist pathdist sub def
  237. exit}
  238. ifelse
  239. } loop
  240. } if
  241. } def
  242. /curvetoproc
  243. { (ERROR: No curveto's after flattenpath!)
  244. print
  245. } def
  246. /closepathproc
  247. {firstx firsty linetoproc
  248. firstx firsty movetoproc
  249. } def
  250. /setchar
  251. { /char str charcount 1 getinterval def
  252. /charcount charcount 1 add def
  253. /charwidth char stringwidth pop def
  254. V cpx cpy itransform T
  255. dy dx atan R
  256. 0 justy M
  257. char show
  258. 0 justy neg G
  259. currentpoint transform
  260. /cpy exch def /cpx exch def
  261. U /setdist setdist charwidth add def
  262. } def
  263. end
  264. /PSL_set_label_heights
  265. {
  266. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  267. /PSL_heights PSL_n_labels array def
  268. 0 1 PSL_n_labels_minus_1
  269. { /psl_k exch def
  270. /psl_label PSL_label_str psl_k get def
  271. PSL_label_font psl_k get cvx exec
  272. psl_label sH /PSL_height edef
  273. PSL_heights psl_k PSL_height put
  274. } for
  275. } def
  276. /PSL_curved_path_labels
  277. { /psl_bits exch def
  278. /PSL_placetext psl_bits 2 and 2 eq def
  279. /PSL_clippath psl_bits 4 and 4 eq def
  280. /PSL_strokeline false def
  281. /PSL_fillbox psl_bits 128 and 128 eq def
  282. /PSL_drawbox psl_bits 256 and 256 eq def
  283. /PSL_n_paths1 PSL_n_paths 1 sub def
  284. /PSL_usebox PSL_fillbox PSL_drawbox or def
  285. PSL_clippath {clipsave N clippath} if
  286. /psl_k 0 def
  287. /psl_p 0 def
  288. 0 1 PSL_n_paths1
  289. { /psl_kk exch def
  290. /PSL_n PSL_path_n psl_kk get def
  291. /PSL_m PSL_label_n psl_kk get def
  292. /PSL_x PSL_path_x psl_k PSL_n getinterval def
  293. /PSL_y PSL_path_y psl_k PSL_n getinterval def
  294. /PSL_node_tmp PSL_label_node psl_p PSL_m getinterval def
  295. /PSL_angle_tmp PSL_label_angle psl_p PSL_m getinterval def
  296. /PSL_str_tmp PSL_label_str psl_p PSL_m getinterval def
  297. /PSL_fnt_tmp PSL_label_font psl_p PSL_m getinterval def
  298. PSL_curved_path_label
  299. /psl_k psl_k PSL_n add def
  300. /psl_p psl_p PSL_m add def
  301. } for
  302. PSL_clippath {PSL_eoclip} if N
  303. } def
  304. /PSL_curved_path_label
  305. {
  306. /PSL_n1 PSL_n 1 sub def
  307. /PSL_m1 PSL_m 1 sub def
  308. PSL_CT_calcstringwidth
  309. PSL_CT_calclinedist
  310. PSL_CT_excludelabels
  311. PSL_CT_addcutpoints
  312. /PSL_nn1 PSL_nn 1 sub def
  313. /n 0 def
  314. /k 0 def
  315. /j 0 def
  316. /PSL_seg 0 def
  317. /PSL_xp PSL_nn array def
  318. /PSL_yp PSL_nn array def
  319. PSL_xp 0 PSL_xx 0 get put
  320. PSL_yp 0 PSL_yy 0 get put
  321. 1 1 PSL_nn1
  322. { /i exch def
  323. /node_type PSL_kind i get def
  324. /j j 1 add def
  325. PSL_xp j PSL_xx i get put
  326. PSL_yp j PSL_yy i get put
  327. node_type 1 eq
  328. {n 0 eq
  329. {PSL_CT_drawline}
  330. { PSL_CT_reversepath
  331. PSL_CT_textline} ifelse
  332. /j 0 def
  333. PSL_xp j PSL_xx i get put
  334. PSL_yp j PSL_yy i get put
  335. } if
  336. } for
  337. n 0 eq {PSL_CT_drawline} if
  338. } def
  339. /PSL_CT_textline
  340. { PSL_fnt k get cvx exec
  341. /PSL_height PSL_heights k get def
  342. PSL_placetext {PSL_CT_placelabel} if
  343. PSL_clippath {PSL_CT_clippath} if
  344. /n 0 def /k k 1 add def
  345. } def
  346. /PSL_CT_calcstringwidth
  347. { /PSL_width_tmp PSL_m array def
  348. 0 1 PSL_m1
  349. { /i exch def
  350. PSL_fnt_tmp i get cvx exec
  351. PSL_width_tmp i PSL_str_tmp i get stringwidth pop put
  352. } for
  353. } def
  354. /PSL_CT_calclinedist
  355. { /PSL_newx PSL_x 0 get def
  356. /PSL_newy PSL_y 0 get def
  357. /dist 0.0 def
  358. /PSL_dist PSL_n array def
  359. PSL_dist 0 0.0 put
  360. 1 1 PSL_n1
  361. { /i exch def
  362. /PSL_oldx PSL_newx def
  363. /PSL_oldy PSL_newy def
  364. /PSL_newx PSL_x i get def
  365. /PSL_newy PSL_y i get def
  366. /dx PSL_newx PSL_oldx sub def
  367. /dy PSL_newy PSL_oldy sub def
  368. /dist dist dx dx mul dy dy mul add sqrt add def
  369. PSL_dist i dist put
  370. } for
  371. } def
  372. /PSL_CT_excludelabels
  373. { /k 0 def
  374. /PSL_width PSL_m array def
  375. /PSL_angle PSL_m array def
  376. /PSL_node PSL_m array def
  377. /PSL_str PSL_m array def
  378. /PSL_fnt PSL_m array def
  379. /lastdist PSL_dist PSL_n1 get def
  380. 0 1 PSL_m1
  381. { /i exch def
  382. /dist PSL_dist PSL_node_tmp i get get def
  383. /halfwidth PSL_width_tmp i get 2 div PSL_gap_x add def
  384. /L_dist dist halfwidth sub def
  385. /R_dist dist halfwidth add def
  386. L_dist 0 gt R_dist lastdist lt and
  387. {
  388. PSL_width k PSL_width_tmp i get put
  389. PSL_node k PSL_node_tmp i get put
  390. PSL_angle k PSL_angle_tmp i get put
  391. PSL_str k PSL_str_tmp i get put
  392. PSL_fnt k PSL_fnt_tmp i get put
  393. /k k 1 add def
  394. } if
  395. } for
  396. /PSL_m k def
  397. /PSL_m1 PSL_m 1 sub def
  398. } def
  399. /PSL_CT_addcutpoints
  400. { /k 0 def
  401. /PSL_nc PSL_m 2 mul 1 add def
  402. /PSL_cuts PSL_nc array def
  403. /PSL_nc1 PSL_nc 1 sub def
  404. 0 1 PSL_m1
  405. { /i exch def
  406. /dist PSL_dist PSL_node i get get def
  407. /halfwidth PSL_width i get 2 div PSL_gap_x add def
  408. PSL_cuts k dist halfwidth sub put
  409. /k k 1 add def
  410. PSL_cuts k dist halfwidth add put
  411. /k k 1 add def
  412. } for
  413. PSL_cuts k 100000.0 put
  414. /PSL_nn PSL_n PSL_m 2 mul add def
  415. /PSL_xx PSL_nn array def
  416. /PSL_yy PSL_nn array def
  417. /PSL_kind PSL_nn array def
  418. /j 0 def
  419. /k 0 def
  420. /dist 0.0 def
  421. 0 1 PSL_n1
  422. { /i exch def
  423. /last_dist dist def
  424. /dist PSL_dist i get def
  425. k 1 PSL_nc1
  426. { /kk exch def
  427. /this_cut PSL_cuts kk get def
  428. dist this_cut gt
  429. { /ds dist last_dist sub def
  430. /f ds 0.0 eq {0.0} {dist this_cut sub ds div} ifelse def
  431. /i1 i 0 eq {0} {i 1 sub} ifelse def
  432. PSL_xx j PSL_x i get dup PSL_x i1 get sub f mul sub put
  433. PSL_yy j PSL_y i get dup PSL_y i1 get sub f mul sub put
  434. PSL_kind j 1 put
  435. /j j 1 add def
  436. /k k 1 add def
  437. } if
  438. } for
  439. dist PSL_cuts k get le
  440. {PSL_xx j PSL_x i get put PSL_yy j PSL_y i get put
  441. PSL_kind j 0 put
  442. /j j 1 add def
  443. } if
  444. } for
  445. } def
  446. /PSL_CT_reversepath
  447. {PSL_xp j get PSL_xp 0 get lt
  448. {0 1 j 2 idiv
  449. { /left exch def
  450. /right j left sub def
  451. /tmp PSL_xp left get def
  452. PSL_xp left PSL_xp right get put
  453. PSL_xp right tmp put
  454. /tmp PSL_yp left get def
  455. PSL_yp left PSL_yp right get put
  456. PSL_yp right tmp put
  457. } for
  458. } if
  459. } def
  460. /PSL_CT_placelabel
  461. {
  462. /PSL_just PSL_label_justify k get def
  463. /PSL_height PSL_heights k get def
  464. /psl_label PSL_str k get def
  465. /psl_depth psl_label sd def
  466. PSL_usebox
  467. {PSL_CT_clippath
  468. PSL_fillbox
  469. {V PSL_setboxrgb fill U} if
  470. PSL_drawbox
  471. {V PSL_setboxpen S U} if N
  472. } if
  473. PSL_CT_placeline psl_label PSL_gap_x PSL_just PSL_height psl_depth PSL_pathtext
  474. } def
  475. /PSL_CT_clippath
  476. {
  477. /H PSL_height 2 div PSL_gap_y add def
  478. /xoff j 1 add array def
  479. /yoff j 1 add array def
  480. /angle 0 def
  481. 0 1 j {
  482. /ii exch def
  483. /x PSL_xp ii get def
  484. /y PSL_yp ii get def
  485. ii 0 eq {
  486. /x1 PSL_xp 1 get def
  487. /y1 PSL_yp 1 get def
  488. /dx x1 x sub def
  489. /dy y1 y sub def
  490. }
  491. { /i1 ii 1 sub def
  492. /x1 PSL_xp i1 get def
  493. /y1 PSL_yp i1 get def
  494. /dx x x1 sub def
  495. /dy y y1 sub def
  496. } ifelse
  497. dx 0.0 eq dy 0.0 eq and not
  498. { /angle dy dx atan 90 add def} if
  499. /sina angle sin def
  500. /cosa angle cos def
  501. xoff ii H cosa mul put
  502. yoff ii H sina mul put
  503. } for
  504. PSL_xp 0 get xoff 0 get add PSL_yp 0 get yoff 0 get add M
  505. 1 1 j {
  506. /ii exch def
  507. PSL_xp ii get xoff ii get add PSL_yp ii get yoff ii get add L
  508. } for
  509. j -1 0 {
  510. /ii exch def
  511. PSL_xp ii get xoff ii get sub PSL_yp ii get yoff ii get sub L
  512. } for P
  513. } def
  514. /PSL_CT_drawline
  515. {
  516. /str 20 string def
  517. PSL_strokeline
  518. {PSL_CT_placeline S} if
  519. /PSL_seg PSL_seg 1 add def
  520. /n 1 def
  521. } def
  522. /PSL_CT_placeline
  523. {PSL_xp 0 get PSL_yp 0 get M
  524. 1 1 j { /ii exch def PSL_xp ii get PSL_yp ii get L} for
  525. } def
  526. /PSL_draw_path_lines
  527. {
  528. /PSL_n_paths1 PSL_n_paths 1 sub def
  529. V
  530. /psl_start 0 def
  531. 0 1 PSL_n_paths1
  532. { /psl_k exch def
  533. /PSL_n PSL_path_n psl_k get def
  534. /PSL_n1 PSL_n 1 sub def
  535. PSL_path_pen psl_k get cvx exec
  536. N
  537. PSL_path_x psl_start get PSL_path_y psl_start get M
  538. 1 1 PSL_n1
  539. { /psl_i exch def
  540. /psl_kk psl_i psl_start add def
  541. PSL_path_x psl_kk get PSL_path_y psl_kk get L
  542. } for
  543. /psl_xclose PSL_path_x psl_kk get PSL_path_x psl_start get sub def
  544. /psl_yclose PSL_path_y psl_kk get PSL_path_y psl_start get sub def
  545. psl_xclose 0 eq psl_yclose 0 eq and { P } if
  546. S
  547. /psl_start psl_start PSL_n add def
  548. } for
  549. U
  550. } def
  551. /PSL_straight_path_labels
  552. {
  553. /psl_bits exch def
  554. /PSL_placetext psl_bits 2 and 2 eq def
  555. /PSL_rounded psl_bits 32 and 32 eq def
  556. /PSL_fillbox psl_bits 128 and 128 eq def
  557. /PSL_drawbox psl_bits 256 and 256 eq def
  558. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  559. /PSL_usebox PSL_fillbox PSL_drawbox or def
  560. 0 1 PSL_n_labels_minus_1
  561. { /psl_k exch def
  562. PSL_ST_prepare_text
  563. PSL_usebox
  564. { PSL_rounded
  565. {PSL_ST_textbox_round}
  566. {PSL_ST_textbox_rect}
  567. ifelse
  568. PSL_fillbox {V PSL_setboxrgb fill U} if
  569. PSL_drawbox {V PSL_setboxpen S U} if
  570. N
  571. } if
  572. PSL_placetext {PSL_ST_place_label} if
  573. } for
  574. } def
  575. /PSL_straight_path_clip
  576. {
  577. /psl_bits exch def
  578. /PSL_rounded psl_bits 32 and 32 eq def
  579. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  580. N clipsave clippath
  581. 0 1 PSL_n_labels_minus_1
  582. { /psl_k exch def
  583. PSL_ST_prepare_text
  584. PSL_rounded
  585. {PSL_ST_textbox_round}
  586. {PSL_ST_textbox_rect}
  587. ifelse
  588. } for
  589. PSL_eoclip N
  590. } def
  591. /PSL_ST_prepare_text
  592. {
  593. /psl_xp PSL_txt_x psl_k get def
  594. /psl_yp PSL_txt_y psl_k get def
  595. /psl_label PSL_label_str psl_k get def
  596. PSL_label_font psl_k get cvx exec
  597. /PSL_height PSL_heights psl_k get def
  598. /psl_boxH PSL_height PSL_gap_y 2 mul add def
  599. /PSL_just PSL_label_justify psl_k get def
  600. /PSL_justx PSL_just 4 mod 1 sub 2 div neg def
  601. /PSL_justy PSL_just 4 idiv 2 div neg def
  602. /psl_SW psl_label stringwidth pop def
  603. /psl_boxW psl_SW PSL_gap_x 2 mul add def
  604. /psl_x0 psl_SW PSL_justx mul def
  605. /psl_y0 PSL_justy PSL_height mul def
  606. /psl_angle PSL_label_angle psl_k get def
  607. } def
  608. /PSL_ST_textbox_rect
  609. {
  610. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  611. PSL_gap_x neg PSL_gap_y neg M
  612. 0 psl_boxH D psl_boxW 0 D 0 psl_boxH neg D P
  613. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  614. } def
  615. /PSL_ST_textbox_round
  616. {
  617. /psl_BoxR PSL_gap_x PSL_gap_y lt {PSL_gap_x} {PSL_gap_y} ifelse def
  618. /psl_xd PSL_gap_x psl_BoxR sub def
  619. /psl_yd PSL_gap_y psl_BoxR sub def
  620. /psl_xL PSL_gap_x neg def
  621. /psl_yB PSL_gap_y neg def
  622. /psl_yT psl_boxH psl_yB add def
  623. /psl_H2 PSL_height psl_yd 2 mul add def
  624. /psl_W2 psl_SW psl_xd 2 mul add def
  625. /psl_xR psl_xL psl_boxW add def
  626. /psl_x0 psl_SW PSL_justx mul def
  627. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  628. psl_xL psl_yd M
  629. psl_xL psl_yT psl_xR psl_yT psl_BoxR arct psl_W2 0 D
  630. psl_xR psl_yT psl_xR psl_yB psl_BoxR arct 0 psl_H2 neg D
  631. psl_xR psl_yB psl_xL psl_yB psl_BoxR arct psl_W2 neg 0 D
  632. psl_xL psl_yB psl_xL psl_yd psl_BoxR arct P
  633. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  634. } def
  635. /PSL_ST_place_label
  636. {
  637. V psl_xp psl_yp T psl_angle R
  638. psl_SW PSL_justx mul psl_y0 M
  639. psl_label dup sd neg 0 exch G show
  640. U
  641. } def
  642. /PSL_nclip 0 def
  643. /PSL_clip {clip /PSL_nclip PSL_nclip 1 add def} def
  644. /PSL_eoclip {eoclip /PSL_nclip PSL_nclip 1 add def} def
  645. /PSL_cliprestore {cliprestore /PSL_nclip PSL_nclip 1 sub def} def
  646. %%EndProlog
  647. %%BeginSetup
  648. /PSLevel /languagelevel where {pop languagelevel} {1} ifelse def
  649. PSLevel 1 gt { << /WhiteIsOpaque true >> setpagedevice } if
  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. /PSL_plot_completion {} def
  659. /PSL_movie_label_completion {} def
  660. /PSL_movie_prog_indicator_completion {} def
  661. %PSL_End_Header
  662. gsave
  663. 0 A
  664. FQ
  665. O0
  666. -3600 PSL_xorig sub PSL_page_xsize 2 div add 1500 TM
  667. % PostScript produced by:
  668. %@GMT: gmt psbasemap -R-30/30/-20/20 -JX6i/2.5i -Byaf '-B+tEvaluating the Solution to @$\nabla^4 \Psi = \frac{\delta w}{\delta t} = f(x(t))@$' -P -K -Xc -Y1.25i
  669. %@PROJ: xy -30.00000000 30.00000000 -20.00000000 20.00000000 -30.000 30.000 -20.000 20.000 +xy
  670. %GMTBoundingBox: -216 90 432 180
  671. %%BeginObject PSL_Layer_1
  672. 0 setlinecap
  673. 0 setlinejoin
  674. 3.32550952342 setmiterlimit
  675. 25 W
  676. 0 A
  677. /PSL_slant_y 0 def
  678. 2 setlinecap
  679. N 0 3000 M 0 -3000 D S
  680. /PSL_A0_y 83 def
  681. /PSL_A1_y 0 def
  682. 8 W
  683. N 0 0 M -83 0 D S
  684. N 0 750 M -83 0 D S
  685. N 0 1500 M -83 0 D S
  686. N 0 2250 M -83 0 D S
  687. N 0 3000 M -83 0 D S
  688. /MM {neg exch M} def
  689. /PSL_AH0 0
  690. PSL_font_encode 0 get 0 eq {ISOLatin1+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  691. 200 F0
  692. (-20) sw mx
  693. (-10) sw mx
  694. (0) sw mx
  695. (10) sw mx
  696. (20) sw mx
  697. def
  698. /PSL_A0_y PSL_A0_y 83 add def
  699. 0 PSL_A0_y MM
  700. (-20) mr Z
  701. 750 PSL_A0_y MM
  702. (-10) mr Z
  703. 1500 PSL_A0_y MM
  704. (0) mr Z
  705. 2250 PSL_A0_y MM
  706. (10) mr Z
  707. 3000 PSL_A0_y MM
  708. (20) mr Z
  709. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  710. N 0 150 M -42 0 D S
  711. N 0 300 M -42 0 D S
  712. N 0 450 M -42 0 D S
  713. N 0 600 M -42 0 D S
  714. N 0 900 M -42 0 D S
  715. N 0 1050 M -42 0 D S
  716. N 0 1200 M -42 0 D S
  717. N 0 1350 M -42 0 D S
  718. N 0 1650 M -42 0 D S
  719. N 0 1800 M -42 0 D S
  720. N 0 1950 M -42 0 D S
  721. N 0 2100 M -42 0 D S
  722. N 0 2400 M -42 0 D S
  723. N 0 2550 M -42 0 D S
  724. N 0 2700 M -42 0 D S
  725. N 0 2850 M -42 0 D S
  726. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  727. 7200 0 T
  728. 25 W
  729. N 0 3000 M 0 -3000 D S
  730. /PSL_A0_y 83 def
  731. /PSL_A1_y 0 def
  732. 8 W
  733. N 0 0 M 83 0 D S
  734. N 0 750 M 83 0 D S
  735. N 0 1500 M 83 0 D S
  736. N 0 2250 M 83 0 D S
  737. N 0 3000 M 83 0 D S
  738. /MM {exch M} def
  739. /PSL_AH0 0
  740. (-20) sw mx
  741. (-10) sw mx
  742. (0) sw mx
  743. (10) sw mx
  744. (20) sw mx
  745. def
  746. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  747. 0 PSL_A0_y MM
  748. (-20) mr Z
  749. 750 PSL_A0_y MM
  750. (-10) mr Z
  751. 1500 PSL_A0_y MM
  752. (0) mr Z
  753. 2250 PSL_A0_y MM
  754. (10) mr Z
  755. 3000 PSL_A0_y MM
  756. (20) mr Z
  757. N 0 150 M 42 0 D S
  758. N 0 300 M 42 0 D S
  759. N 0 450 M 42 0 D S
  760. N 0 600 M 42 0 D S
  761. N 0 900 M 42 0 D S
  762. N 0 1050 M 42 0 D S
  763. N 0 1200 M 42 0 D S
  764. N 0 1350 M 42 0 D S
  765. N 0 1650 M 42 0 D S
  766. N 0 1800 M 42 0 D S
  767. N 0 1950 M 42 0 D S
  768. N 0 2100 M 42 0 D S
  769. N 0 2400 M 42 0 D S
  770. N 0 2550 M 42 0 D S
  771. N 0 2700 M 42 0 D S
  772. N 0 2850 M 42 0 D S
  773. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  774. -7200 0 T
  775. 25 W
  776. N 0 0 M 7200 0 D S
  777. /PSL_A0_y 0 def
  778. /PSL_A1_y 0 def
  779. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  780. 0 3000 T
  781. N 0 0 M 7200 0 D S
  782. /PSL_A0_y 0 def
  783. /PSL_A1_y 0 def
  784. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  785. 0 -3000 T
  786. 0 setlinecap
  787. /PSL_H_y PSL_L_y PSL_LH add 233 add def
  788. 3600 3000 PSL_H_y add PSL_slant_y add M
  789. V
  790. currentpoint T
  791. PSL_eps_begin
  792. -3860 0 T 40 40 scale
  793. -148 -653 T
  794. N 148 653 M 341 653 L 341 668 L 148 668 L P clip N
  795. %%BeginDocument: psimage.eps
  796. %!PS-Adobe-2.0 EPSF-2.0
  797. %%Creator: dvips(k) 2020.1 Copyright 2020 Radical Eye Software
  798. %%Title: gmt_eq.dvi
  799. %%CreationDate: Sat Dec 12 23:05:25 2020
  800. %%BoundingBox: 148 653 341 668
  801. %%DocumentFonts: NimbusRomNo9L-Regu CMSY10 StandardSymL CMR10
  802. %%+ NimbusRomNo9L-ReguItal
  803. %%EndComments
  804. %DVIPSWebPage: (www.radicaleye.com)
  805. %DVIPSCommandLine: dvips -q -E gmt_eq.dvi -o equation.eps
  806. %DVIPSParameters: dpi=600
  807. %DVIPSSource: TeX output 2020.12.12:1305
  808. %%BeginProcSet: tex.pro 0 0
  809. %!
  810. /TeXDict 300 dict def TeXDict begin/N{def}def/B{bind def}N/S{exch}N/X{S
  811. N}B/A{dup}B/TR{translate}N/isls false N/vsize 11 72 mul N/hsize 8.5 72
  812. mul N/landplus90{false}def/@rigin{isls{[0 landplus90{1 -1}{-1 1}ifelse 0
  813. 0 0]concat}if 72 Resolution div 72 VResolution div neg scale isls{
  814. landplus90{VResolution 72 div vsize mul 0 exch}{Resolution -72 div hsize
  815. mul 0}ifelse TR}if Resolution VResolution vsize -72 div 1 add mul TR[
  816. matrix currentmatrix{A A round sub abs 0.00001 lt{round}if}forall round
  817. exch round exch]setmatrix}N/@landscape{/isls true N}B/@manualfeed{
  818. statusdict/manualfeed true put}B/@copies{/#copies X}B/FMat[1 0 0 -1 0 0]
  819. N/FBB[0 0 0 0]N/nn 0 N/IEn 0 N/ctr 0 N/df-tail{/nn 8 dict N nn begin
  820. /FontType 3 N/FontMatrix fntrx N/FontBBox FBB N string/base X array
  821. /BitMaps X/BuildChar{CharBuilder}N/Encoding IEn N end A{/foo setfont}2
  822. array copy cvx N load 0 nn put/ctr 0 N[}B/sf 0 N/df{/sf 1 N/fntrx FMat N
  823. df-tail}B/dfs{div/sf X/fntrx[sf 0 0 sf neg 0 0]N df-tail}B/E{pop nn A
  824. definefont setfont}B/Cw{Cd A length 5 sub get}B/Ch{Cd A length 4 sub get
  825. }B/Cx{128 Cd A length 3 sub get sub}B/Cy{Cd A length 2 sub get 127 sub}
  826. B/Cdx{Cd A length 1 sub get}B/Ci{Cd A type/stringtype ne{ctr get/ctr ctr
  827. 1 add N}if}B/CharBuilder{save 3 1 roll S A/base get 2 index get S
  828. /BitMaps get S get/Cd X pop/ctr 0 N Cdx 0 Cx Cy Ch sub Cx Cw add Cy
  829. setcachedevice Cw Ch true[1 0 0 -1 -.1 Cx sub Cy .1 sub]{Ci}imagemask
  830. restore}B/D{/cc X A type/stringtype ne{]}if nn/base get cc ctr put nn
  831. /BitMaps get S ctr S sf 1 ne{A A length 1 sub A 2 index S get sf div put
  832. }if put/ctr ctr 1 add N}B/I{cc 1 add D}B/bop{userdict/bop-hook known{
  833. bop-hook}if/SI save N @rigin 0 0 moveto/V matrix currentmatrix A 1 get A
  834. mul exch 0 get A mul add .99 lt{/QV}{/RV}ifelse load def pop pop}N/eop{
  835. SI restore userdict/eop-hook known{eop-hook}if showpage}N/@start{
  836. userdict/start-hook known{start-hook}if pop/VResolution X/Resolution X
  837. 1000 div/DVImag X/IEn 256 array N 2 string 0 1 255{IEn S A 360 add 36 4
  838. index cvrs cvn put}for pop 65781.76 div/vsize X 65781.76 div/hsize X}N
  839. /dir 0 def/dyy{/dir 0 def}B/dyt{/dir 1 def}B/dty{/dir 2 def}B/dtt{/dir 3
  840. def}B/p{dir 2 eq{-90 rotate show 90 rotate}{dir 3 eq{-90 rotate show 90
  841. rotate}{show}ifelse}ifelse}N/RMat[1 0 0 -1 0 0]N/BDot 260 string N/Rx 0
  842. N/Ry 0 N/V{}B/RV/v{/Ry X/Rx X V}B statusdict begin/product where{pop
  843. false[(Display)(NeXT)(LaserWriter 16/600)]{A length product length le{A
  844. length product exch 0 exch getinterval eq{pop true exit}if}{pop}ifelse}
  845. forall}{false}ifelse end{{gsave TR -.1 .1 TR 1 1 scale Rx Ry false RMat{
  846. BDot}imagemask grestore}}{{gsave TR -.1 .1 TR Rx Ry scale 1 1 false RMat
  847. {BDot}imagemask grestore}}ifelse B/QV{gsave newpath transform round exch
  848. round exch itransform moveto Rx 0 rlineto 0 Ry neg rlineto Rx neg 0
  849. rlineto fill grestore}B/a{moveto}B/delta 0 N/tail{A/delta X 0 rmoveto}B
  850. /M{S p delta add tail}B/b{S p tail}B/c{-4 M}B/d{-3 M}B/e{-2 M}B/f{-1 M}
  851. B/g{0 M}B/h{1 M}B/i{2 M}B/j{3 M}B/k{4 M}B/w{0 rmoveto}B/l{p -4 w}B/m{p
  852. -3 w}B/n{p -2 w}B/o{p -1 w}B/q{p 1 w}B/r{p 2 w}B/s{p 3 w}B/t{p 4 w}B/x{
  853. 0 S rmoveto}B/y{3 2 roll p a}B/bos{/SS save N}B/eos{SS restore}B end
  854. %%EndProcSet
  855. %%BeginProcSet: l3backend-dvips.pro 0 0
  856. %%
  857. %% This is file `l3backend-dvips.pro',
  858. %% generated with the docstrip utility.
  859. %%
  860. %% The original source files were:
  861. %%
  862. %% l3backend-header.dtx (with options: `header,dvips')
  863. %%
  864. %% Copyright (C) 1990-2020 The LaTeX3 Project
  865. %%
  866. %% It may be distributed and/or modified under the conditions of
  867. %% the LaTeX Project Public License (LPPL), either version 1.3c of
  868. %% this license or (at your option) any later version. The latest
  869. %% version of this license is in the file:
  870. %%
  871. %% https://www.latex-project.org/lppl.txt
  872. %%
  873. %% This file is part of the "l3backend bundle" (The Work in LPPL)
  874. %% and all files in that bundle must be distributed together.
  875. %%
  876. %% File: l3backend-header.dtx
  877. true setglobal
  878. /pdf.globaldict 4 dict def
  879. false setglobal
  880. /pdf.cvs { 65534 string cvs } def
  881. /pdf.dvi.pt { 72.27 mul Resolution div } def
  882. /pdf.pt.dvi { 72.27 div Resolution mul } def
  883. /pdf.rect.ht { dup 1 get neg exch 3 get add } def
  884. /pdf.linkmargin { 1 pdf.pt.dvi } def
  885. /pdf.linkdp.pad { 0 } def
  886. /pdf.linkht.pad { 0 } def
  887. /pdf.rect
  888. { /Rect [ pdf.llx pdf.lly pdf.urx pdf.ury ] } def
  889. /pdf.save.ll
  890. {
  891. currentpoint
  892. /pdf.lly exch def
  893. /pdf.llx exch def
  894. }
  895. def
  896. /pdf.save.ur
  897. {
  898. currentpoint
  899. /pdf.ury exch def
  900. /pdf.urx exch def
  901. }
  902. def
  903. /pdf.save.linkll
  904. {
  905. currentpoint
  906. pdf.linkmargin add
  907. pdf.linkdp.pad add
  908. /pdf.lly exch def
  909. pdf.linkmargin sub
  910. /pdf.llx exch def
  911. }
  912. def
  913. /pdf.save.linkur
  914. {
  915. currentpoint
  916. pdf.linkmargin sub
  917. pdf.linkht.pad sub
  918. /pdf.ury exch def
  919. pdf.linkmargin add
  920. /pdf.urx exch def
  921. }
  922. def
  923. /pdf.dest.anchor
  924. {
  925. currentpoint exch
  926. pdf.dvi.pt 72 add
  927. /pdf.dest.x exch def
  928. pdf.dvi.pt
  929. vsize 72 sub exch sub
  930. /pdf.dest.y exch def
  931. }
  932. def
  933. /pdf.dest.point
  934. { pdf.dest.x pdf.dest.y } def
  935. /pdf.dest2device
  936. {
  937. /pdf.dest.y exch def
  938. /pdf.dest.x exch def
  939. matrix currentmatrix
  940. matrix defaultmatrix
  941. matrix invertmatrix
  942. matrix concatmatrix
  943. cvx exec
  944. /pdf.dev.y exch def
  945. /pdf.dev.x exch def
  946. /pdf.tmpd exch def
  947. /pdf.tmpc exch def
  948. /pdf.tmpb exch def
  949. /pdf.tmpa exch def
  950. pdf.dest.x pdf.tmpa mul
  951. pdf.dest.y pdf.tmpc mul add
  952. pdf.dev.x add
  953. pdf.dest.x pdf.tmpb mul
  954. pdf.dest.y pdf.tmpd mul add
  955. pdf.dev.y add
  956. }
  957. def
  958. /pdf.bordertracking false def
  959. /pdf.bordertracking.begin
  960. {
  961. SDict /pdf.bordertracking true put
  962. SDict /pdf.leftboundary undef
  963. SDict /pdf.rightboundary undef
  964. /a where
  965. {
  966. /a
  967. {
  968. currentpoint pop
  969. SDict /pdf.rightboundary known dup
  970. {
  971. SDict /pdf.rightboundary get 2 index lt
  972. { not }
  973. if
  974. }
  975. if
  976. { pop }
  977. { SDict exch /pdf.rightboundary exch put }
  978. ifelse
  979. moveto
  980. currentpoint pop
  981. SDict /pdf.leftboundary known dup
  982. {
  983. SDict /pdf.leftboundary get 2 index gt
  984. { not }
  985. if
  986. }
  987. if
  988. { pop }
  989. { SDict exch /pdf.leftboundary exch put }
  990. ifelse
  991. }
  992. put
  993. }
  994. if
  995. }
  996. def
  997. /pdf.bordertracking.end
  998. {
  999. /a where { /a { moveto } put } if
  1000. /x where { /x { 0 exch rmoveto } put } if
  1001. SDict /pdf.leftboundary known
  1002. { pdf.outerbox 0 pdf.leftboundary put }
  1003. if
  1004. SDict /pdf.rightboundary known
  1005. { pdf.outerbox 2 pdf.rightboundary put }
  1006. if
  1007. SDict /pdf.bordertracking false put
  1008. }
  1009. def
  1010. /pdf.bordertracking.endpage
  1011. {
  1012. pdf.bordertracking
  1013. {
  1014. pdf.bordertracking.end
  1015. true setglobal
  1016. pdf.globaldict
  1017. /pdf.brokenlink.rect [ pdf.outerbox aload pop ] put
  1018. pdf.globaldict
  1019. /pdf.brokenlink.skip pdf.baselineskip put
  1020. pdf.globaldict
  1021. /pdf.brokenlink.dict
  1022. pdf.link.dict pdf.cvs put
  1023. false setglobal
  1024. mark pdf.link.dict cvx exec /Rect
  1025. [
  1026. pdf.llx
  1027. pdf.lly
  1028. pdf.outerbox 2 get pdf.linkmargin add
  1029. currentpoint exch pop
  1030. pdf.outerbox pdf.rect.ht sub pdf.linkmargin sub
  1031. ]
  1032. /ANN pdf.pdfmark
  1033. }
  1034. if
  1035. }
  1036. def
  1037. /pdf.bordertracking.continue
  1038. {
  1039. /pdf.link.dict pdf.globaldict
  1040. /pdf.brokenlink.dict get def
  1041. /pdf.outerbox pdf.globaldict
  1042. /pdf.brokenlink.rect get def
  1043. /pdf.baselineskip pdf.globaldict
  1044. /pdf.brokenlink.skip get def
  1045. pdf.globaldict dup dup
  1046. /pdf.brokenlink.dict undef
  1047. /pdf.brokenlink.skip undef
  1048. /pdf.brokenlink.rect undef
  1049. currentpoint
  1050. /pdf.originy exch def
  1051. /pdf.originx exch def
  1052. /a where
  1053. {
  1054. /a
  1055. {
  1056. moveto
  1057. SDict
  1058. begin
  1059. currentpoint pdf.originy ne exch
  1060. pdf.originx ne or
  1061. {
  1062. pdf.save.linkll
  1063. /pdf.lly
  1064. pdf.lly pdf.outerbox 1 get sub def
  1065. pdf.bordertracking.begin
  1066. }
  1067. if
  1068. end
  1069. }
  1070. put
  1071. }
  1072. if
  1073. /x where
  1074. {
  1075. /x
  1076. {
  1077. 0 exch rmoveto
  1078. SDict~
  1079. begin
  1080. currentpoint
  1081. pdf.originy ne exch pdf.originx ne or
  1082. {
  1083. pdf.save.linkll
  1084. /pdf.lly
  1085. pdf.lly pdf.outerbox 1 get sub def
  1086. pdf.bordertracking.begin
  1087. }
  1088. if
  1089. end
  1090. }
  1091. put
  1092. }
  1093. if
  1094. }
  1095. def
  1096. /pdf.breaklink
  1097. {
  1098. pop
  1099. counttomark 2 mod 0 eq
  1100. {
  1101. counttomark /pdf.count exch def
  1102. {
  1103. pdf.count 0 eq { exit } if
  1104. counttomark 2 roll
  1105. 1 index /Rect eq
  1106. {
  1107. dup 4 array copy
  1108. dup dup
  1109. 1 get
  1110. pdf.outerbox pdf.rect.ht
  1111. pdf.linkmargin 2 mul add sub
  1112. 3 exch put
  1113. dup
  1114. pdf.outerbox 2 get
  1115. pdf.linkmargin add
  1116. 2 exch put
  1117. dup dup
  1118. 3 get
  1119. pdf.outerbox pdf.rect.ht
  1120. pdf.linkmargin 2 mul add add
  1121. 1 exch put
  1122. /pdf.currentrect exch def
  1123. pdf.breaklink.write
  1124. {
  1125. pdf.currentrect
  1126. dup
  1127. pdf.outerbox 0 get
  1128. pdf.linkmargin sub
  1129. 0 exch put
  1130. dup
  1131. pdf.outerbox 2 get
  1132. pdf.linkmargin add
  1133. 2 exch put
  1134. dup dup
  1135. 1 get
  1136. pdf.baselineskip add
  1137. 1 exch put
  1138. dup dup
  1139. 3 get
  1140. pdf.baselineskip add
  1141. 3 exch put
  1142. /pdf.currentrect exch def
  1143. pdf.breaklink.write
  1144. }
  1145. 1 index 3 get
  1146. pdf.linkmargin 2 mul add
  1147. pdf.outerbox pdf.rect.ht add
  1148. 2 index 1 get sub
  1149. pdf.baselineskip div round cvi 1 sub
  1150. exch
  1151. repeat
  1152. pdf.currentrect
  1153. dup
  1154. pdf.outerbox 0 get
  1155. pdf.linkmargin sub
  1156. 0 exch put
  1157. dup dup
  1158. 1 get
  1159. pdf.baselineskip add
  1160. 1 exch put
  1161. dup dup
  1162. 3 get
  1163. pdf.baselineskip add
  1164. 3 exch put
  1165. dup 2 index 2 get 2 exch put
  1166. /pdf.currentrect exch def
  1167. pdf.breaklink.write
  1168. SDict /pdf.pdfmark.good false put
  1169. exit
  1170. }
  1171. { pdf.count 2 sub /pdf.count exch def }
  1172. ifelse
  1173. }
  1174. loop
  1175. }
  1176. if
  1177. /ANN
  1178. }
  1179. def
  1180. /pdf.breaklink.write
  1181. {
  1182. counttomark 1 sub
  1183. index /_objdef eq
  1184. {
  1185. counttomark -2 roll
  1186. dup wcheck
  1187. {
  1188. readonly
  1189. counttomark 2 roll
  1190. }
  1191. { pop pop }
  1192. ifelse
  1193. }
  1194. if
  1195. counttomark 1 add copy
  1196. pop pdf.currentrect
  1197. /ANN pdfmark
  1198. }
  1199. def
  1200. /pdf.pdfmark
  1201. {
  1202. SDict /pdf.pdfmark.good true put
  1203. dup /ANN eq
  1204. {
  1205. pdf.pdfmark.store
  1206. pdf.pdfmark.dict
  1207. begin
  1208. Subtype /Link eq
  1209. currentdict /Rect known and
  1210. SDict /pdf.outerbox known and
  1211. SDict /pdf.baselineskip known and
  1212. {
  1213. Rect 3 get
  1214. pdf.linkmargin 2 mul add
  1215. pdf.outerbox pdf.rect.ht add
  1216. Rect 1 get sub
  1217. pdf.baselineskip div round cvi 0 gt
  1218. { pdf.breaklink }
  1219. if
  1220. }
  1221. if
  1222. end
  1223. SDict /pdf.outerbox undef
  1224. SDict /pdf.baselineskip undef
  1225. currentdict /pdf.pdfmark.dict undef
  1226. }
  1227. if
  1228. pdf.pdfmark.good
  1229. { pdfmark }
  1230. { cleartomark }
  1231. ifelse
  1232. }
  1233. def
  1234. /pdf.pdfmark.store
  1235. {
  1236. /pdf.pdfmark.dict 65534 dict def
  1237. counttomark 1 add copy
  1238. pop
  1239. {
  1240. dup mark eq
  1241. {
  1242. pop
  1243. exit
  1244. }
  1245. {
  1246. pdf.pdfmark.dict
  1247. begin def end
  1248. }
  1249. ifelse
  1250. }
  1251. loop
  1252. }
  1253. def
  1254. %%
  1255. %%
  1256. %% End of file `l3backend-dvips.pro'.
  1257. %%EndProcSet
  1258. %%BeginProcSet: 8r.enc 0 0
  1259. % File 8r.enc TeX Base 1 Encoding Revision 2.0 2002-10-30
  1260. %
  1261. % @@psencodingfile@{
  1262. % author = "S. Rahtz, P. MacKay, Alan Jeffrey, B. Horn, K. Berry,
  1263. % W. Schmidt, P. Lehman",
  1264. % version = "2.0",
  1265. % date = "27nov06",
  1266. % filename = "8r.enc",
  1267. % email = "tex-fonts@@tug.org",
  1268. % docstring = "This is the encoding vector for Type1 and TrueType
  1269. % fonts to be used with TeX. This file is part of the
  1270. % PSNFSS bundle, version 9"
  1271. % @}
  1272. %
  1273. % The idea is to have all the characters normally included in Type 1 fonts
  1274. % available for typesetting. This is effectively the characters in Adobe
  1275. % Standard encoding, ISO Latin 1, Windows ANSI including the euro symbol,
  1276. % MacRoman, and some extra characters from Lucida.
  1277. %
  1278. % Character code assignments were made as follows:
  1279. %
  1280. % (1) the Windows ANSI characters are almost all in their Windows ANSI
  1281. % positions, because some Windows users cannot easily reencode the
  1282. % fonts, and it makes no difference on other systems. The only Windows
  1283. % ANSI characters not available are those that make no sense for
  1284. % typesetting -- rubout (127 decimal), nobreakspace (160), softhyphen
  1285. % (173). quotesingle and grave are moved just because it's such an
  1286. % irritation not having them in TeX positions.
  1287. %
  1288. % (2) Remaining characters are assigned arbitrarily to the lower part
  1289. % of the range, avoiding 0, 10 and 13 in case we meet dumb software.
  1290. %
  1291. % (3) Y&Y Lucida Bright includes some extra text characters; in the
  1292. % hopes that other PostScript fonts, perhaps created for public
  1293. % consumption, will include them, they are included starting at 0x12.
  1294. % These are /dotlessj /ff /ffi /ffl.
  1295. %
  1296. % (4) hyphen appears twice for compatibility with both ASCII and Windows.
  1297. %
  1298. % (5) /Euro was assigned to 128, as in Windows ANSI
  1299. %
  1300. % (6) Missing characters from MacRoman encoding incorporated as follows:
  1301. %
  1302. % PostScript MacRoman TeXBase1
  1303. % -------------- -------------- --------------
  1304. % /notequal 173 0x16
  1305. % /infinity 176 0x17
  1306. % /lessequal 178 0x18
  1307. % /greaterequal 179 0x19
  1308. % /partialdiff 182 0x1A
  1309. % /summation 183 0x1B
  1310. % /product 184 0x1C
  1311. % /pi 185 0x1D
  1312. % /integral 186 0x81
  1313. % /Omega 189 0x8D
  1314. % /radical 195 0x8E
  1315. % /approxequal 197 0x8F
  1316. % /Delta 198 0x9D
  1317. % /lozenge 215 0x9E
  1318. %
  1319. /TeXBase1Encoding [
  1320. % 0x00
  1321. /.notdef /dotaccent /fi /fl
  1322. /fraction /hungarumlaut /Lslash /lslash
  1323. /ogonek /ring /.notdef /breve
  1324. /minus /.notdef /Zcaron /zcaron
  1325. % 0x10
  1326. /caron /dotlessi /dotlessj /ff
  1327. /ffi /ffl /notequal /infinity
  1328. /lessequal /greaterequal /partialdiff /summation
  1329. /product /pi /grave /quotesingle
  1330. % 0x20
  1331. /space /exclam /quotedbl /numbersign
  1332. /dollar /percent /ampersand /quoteright
  1333. /parenleft /parenright /asterisk /plus
  1334. /comma /hyphen /period /slash
  1335. % 0x30
  1336. /zero /one /two /three
  1337. /four /five /six /seven
  1338. /eight /nine /colon /semicolon
  1339. /less /equal /greater /question
  1340. % 0x40
  1341. /at /A /B /C
  1342. /D /E /F /G
  1343. /H /I /J /K
  1344. /L /M /N /O
  1345. % 0x50
  1346. /P /Q /R /S
  1347. /T /U /V /W
  1348. /X /Y /Z /bracketleft
  1349. /backslash /bracketright /asciicircum /underscore
  1350. % 0x60
  1351. /quoteleft /a /b /c
  1352. /d /e /f /g
  1353. /h /i /j /k
  1354. /l /m /n /o
  1355. % 0x70
  1356. /p /q /r /s
  1357. /t /u /v /w
  1358. /x /y /z /braceleft
  1359. /bar /braceright /asciitilde /.notdef
  1360. % 0x80
  1361. /Euro /integral /quotesinglbase /florin
  1362. /quotedblbase /ellipsis /dagger /daggerdbl
  1363. /circumflex /perthousand /Scaron /guilsinglleft
  1364. /OE /Omega /radical /approxequal
  1365. % 0x90
  1366. /.notdef /.notdef /.notdef /quotedblleft
  1367. /quotedblright /bullet /endash /emdash
  1368. /tilde /trademark /scaron /guilsinglright
  1369. /oe /Delta /lozenge /Ydieresis
  1370. % 0xA0
  1371. /.notdef /exclamdown /cent /sterling
  1372. /currency /yen /brokenbar /section
  1373. /dieresis /copyright /ordfeminine /guillemotleft
  1374. /logicalnot /hyphen /registered /macron
  1375. % 0xB0
  1376. /degree /plusminus /twosuperior /threesuperior
  1377. /acute /mu /paragraph /periodcentered
  1378. /cedilla /onesuperior /ordmasculine /guillemotright
  1379. /onequarter /onehalf /threequarters /questiondown
  1380. % 0xC0
  1381. /Agrave /Aacute /Acircumflex /Atilde
  1382. /Adieresis /Aring /AE /Ccedilla
  1383. /Egrave /Eacute /Ecircumflex /Edieresis
  1384. /Igrave /Iacute /Icircumflex /Idieresis
  1385. % 0xD0
  1386. /Eth /Ntilde /Ograve /Oacute
  1387. /Ocircumflex /Otilde /Odieresis /multiply
  1388. /Oslash /Ugrave /Uacute /Ucircumflex
  1389. /Udieresis /Yacute /Thorn /germandbls
  1390. % 0xE0
  1391. /agrave /aacute /acircumflex /atilde
  1392. /adieresis /aring /ae /ccedilla
  1393. /egrave /eacute /ecircumflex /edieresis
  1394. /igrave /iacute /icircumflex /idieresis
  1395. % 0xF0
  1396. /eth /ntilde /ograve /oacute
  1397. /ocircumflex /otilde /odieresis /divide
  1398. /oslash /ugrave /uacute /ucircumflex
  1399. /udieresis /yacute /thorn /ydieresis
  1400. ] def
  1401. %%EndProcSet
  1402. %%BeginProcSet: texps.pro 0 0
  1403. %!
  1404. TeXDict begin/rf{findfont dup length 1 add dict begin{1 index/FID ne 2
  1405. index/UniqueID ne and{def}{pop pop}ifelse}forall[1 index 0 6 -1 roll
  1406. exec 0 exch 5 -1 roll VResolution Resolution div mul neg 0 0]FontType 0
  1407. ne{/Metrics exch def dict begin Encoding{exch dup type/integertype ne{
  1408. pop pop 1 sub dup 0 le{pop}{[}ifelse}{FontMatrix 0 get div Metrics 0 get
  1409. div def}ifelse}forall Metrics/Metrics currentdict end def}{{1 index type
  1410. /nametype eq{exit}if exch pop}loop}ifelse[2 index currentdict end
  1411. definefont 3 -1 roll makefont/setfont cvx]cvx def}def/ObliqueSlant{dup
  1412. sin S cos div neg}B/SlantFont{4 index mul add}def/ExtendFont{3 -1 roll
  1413. mul exch}def/ReEncodeFont{CharStrings rcheck{/Encoding false def dup[
  1414. exch{dup CharStrings exch known not{pop/.notdef/Encoding true def}if}
  1415. forall Encoding{]exch pop}{cleartomark}ifelse}if/Encoding exch def}def
  1416. end
  1417. %%EndProcSet
  1418. %%BeginProcSet: special.pro 0 0
  1419. %!
  1420. TeXDict begin/SDict 200 dict N SDict begin/@SpecialDefaults{/hs 612 N
  1421. /vs 792 N/ho 0 N/vo 0 N/hsc 1 N/vsc 1 N/ang 0 N/CLIP 0 N/rwiSeen false N
  1422. /rhiSeen false N/letter{}N/note{}N/a4{}N/legal{}N}B/@scaleunit 100 N
  1423. /@hscale{@scaleunit div/hsc X}B/@vscale{@scaleunit div/vsc X}B/@hsize{
  1424. /hs X/CLIP 1 N}B/@vsize{/vs X/CLIP 1 N}B/@clip{/CLIP 2 N}B/@hoffset{/ho
  1425. X}B/@voffset{/vo X}B/@angle{/ang X}B/@rwi{10 div/rwi X/rwiSeen true N}B
  1426. /@rhi{10 div/rhi X/rhiSeen true N}B/@llx{/llx X}B/@lly{/lly X}B/@urx{
  1427. /urx X}B/@ury{/ury X}B/magscale true def end/@MacSetUp{userdict/md known
  1428. {userdict/md get type/dicttype eq{userdict begin md length 10 add md
  1429. maxlength ge{/md md dup length 20 add dict copy def}if end md begin
  1430. /letter{}N/note{}N/legal{}N/od{txpose 1 0 mtx defaultmatrix dtransform S
  1431. atan/pa X newpath clippath mark{transform{itransform moveto}}{transform{
  1432. itransform lineto}}{6 -2 roll transform 6 -2 roll transform 6 -2 roll
  1433. transform{itransform 6 2 roll itransform 6 2 roll itransform 6 2 roll
  1434. curveto}}{{closepath}}pathforall newpath counttomark array astore/gc xdf
  1435. pop ct 39 0 put 10 fz 0 fs 2 F/|______Courier fnt invertflag{PaintBlack}
  1436. if}N/txpose{pxs pys scale ppr aload pop por{noflips{pop S neg S TR pop 1
  1437. -1 scale}if xflip yflip and{pop S neg S TR 180 rotate 1 -1 scale ppr 3
  1438. get ppr 1 get neg sub neg ppr 2 get ppr 0 get neg sub neg TR}if xflip
  1439. yflip not and{pop S neg S TR pop 180 rotate ppr 3 get ppr 1 get neg sub
  1440. neg 0 TR}if yflip xflip not and{ppr 1 get neg ppr 0 get neg TR}if}{
  1441. noflips{TR pop pop 270 rotate 1 -1 scale}if xflip yflip and{TR pop pop
  1442. 90 rotate 1 -1 scale ppr 3 get ppr 1 get neg sub neg ppr 2 get ppr 0 get
  1443. neg sub neg TR}if xflip yflip not and{TR pop pop 90 rotate ppr 3 get ppr
  1444. 1 get neg sub neg 0 TR}if yflip xflip not and{TR pop pop 270 rotate ppr
  1445. 2 get ppr 0 get neg sub neg 0 S TR}if}ifelse scaleby96{ppr aload pop 4
  1446. -1 roll add 2 div 3 1 roll add 2 div 2 copy TR .96 dup scale neg S neg S
  1447. TR}if}N/cp{pop pop showpage pm restore}N end}if}if}N/normalscale{
  1448. Resolution 72 div VResolution 72 div neg scale magscale{DVImag dup scale
  1449. }if 0 setgray}N/@beginspecial{SDict begin/SpecialSave save N gsave
  1450. normalscale currentpoint TR @SpecialDefaults count/ocount X/dcount
  1451. countdictstack N}N/@setspecial{CLIP 1 eq{newpath 0 0 moveto hs 0 rlineto
  1452. 0 vs rlineto hs neg 0 rlineto closepath clip}if ho vo TR hsc vsc scale
  1453. ang rotate rwiSeen{rwi urx llx sub div rhiSeen{rhi ury lly sub div}{dup}
  1454. ifelse scale llx neg lly neg TR}{rhiSeen{rhi ury lly sub div dup scale
  1455. llx neg lly neg TR}if}ifelse CLIP 2 eq{newpath llx lly moveto urx lly
  1456. lineto urx ury lineto llx ury lineto closepath clip}if/showpage{}N
  1457. /erasepage{}N/setpagedevice{pop}N/copypage{}N newpath}N/@endspecial{
  1458. count ocount sub{pop}repeat countdictstack dcount sub{end}repeat
  1459. grestore SpecialSave restore end}N/@defspecial{SDict begin}N
  1460. /@fedspecial{end}B/li{lineto}B/rl{rlineto}B/rc{rcurveto}B/np{/SaveX
  1461. currentpoint/SaveY X N 1 setlinecap newpath}N/st{stroke SaveX SaveY
  1462. moveto}N/fil{fill SaveX SaveY moveto}N/ellipse{/endangle X/startangle X
  1463. /yrad X/xrad X/savematrix matrix currentmatrix N TR xrad yrad scale 0 0
  1464. 1 startangle endangle arc savematrix setmatrix}N end
  1465. %%EndProcSet
  1466. %%BeginFont: NimbusRomNo9L-ReguItal
  1467. %!PS-AdobeFont-1.0: NimbusRomNo9L-ReguItal 1.05
  1468. %%CreationDate: Wed Dec 22 1999
  1469. % Copyright (URW)++,Copyright 1999 by (URW)++ Design & Development
  1470. % (URW)++,Copyright 1999 by (URW)++ Design & Development
  1471. % See the file COPYING (GNU General Public License) for license conditions.
  1472. % As a special exception, permission is granted to include this font
  1473. % program in a Postscript or PDF file that consists of a document that
  1474. % contains text to be displayed or printed using this font, regardless
  1475. % of the conditions or license applying to the document itself.
  1476. 12 dict begin
  1477. /FontInfo 10 dict dup begin
  1478. /version (1.05) readonly def
  1479. /Notice ((URW)++,Copyright 1999 by (URW)++ Design & Development. See the file COPYING (GNU General Public License) for license conditions. As a special exception, permission is granted to include this font program in a Postscript or PDF file that consists of a document that contains text to be displayed or printed using this font, regardless of the conditions or license applying to the document itself.) readonly def
  1480. /Copyright (Copyright (URW)++,Copyright 1999 by (URW)++ Design & Development) readonly def
  1481. /FullName (Nimbus Roman No9 L Regular Italic) readonly def
  1482. /FamilyName (Nimbus Roman No9 L) readonly def
  1483. /Weight (Regular) readonly def
  1484. /ItalicAngle -15.5 def
  1485. /isFixedPitch false def
  1486. /UnderlinePosition -100 def
  1487. /UnderlineThickness 50 def
  1488. end readonly def
  1489. /FontName /NimbusRomNo9L-ReguItal def
  1490. /PaintType 0 def
  1491. /WMode 0 def
  1492. /FontBBox {-169 -270 1010 924} readonly def
  1493. /FontType 1 def
  1494. /FontMatrix [0.001 0.0 0.0 0.001 0.0 0.0] readonly def
  1495. /Encoding StandardEncoding def
  1496. currentdict end
  1497. currentfile eexec
  1498. D9D66F633B846A989B9974B0179FC6CC445BC2C03103C68570A7B354A4A280AE
  1499. 6FBF7F9888E039AB60FCAF852EB4CE3AFEB979D5EA70FDE44A2AE5C8C0166C27
  1500. BF9665EEA11C7D2329C1A211DD26BB372BE5822F5EA70D99EB578C7BEFD44CDF
  1501. 045A363056E5E1CC51525EA6FC061DCEBB337208EFF729802376A2801424F670
  1502. 0E7E6397B28F15BC10B40012B0A3EAEB2693E8F7F627C4C9C7C6C5BFF105C1E4
  1503. 1B2B9E8F09253B76040D268B80719E1B3F5A55AB7B8E134D4CB5ABCED39AC635
  1504. DA001E9934C198A7F9B9ED0028A85E9AE00421DFD8EAA3BB3B4B4CE45D209303
  1505. 237BD51809FE4D880900B1EEB236ACA87B9FF6EBE6B994A60AF5D67CCC42BD56
  1506. 77295C346EB4C62BDC1EF22EE07DAAD928DFB73455F091F32408ED6430B97417
  1507. 683AF27A03718A156E3F6E7B6E4F2E8177503CD82DDBF4557A3CCFF4C858AE7A
  1508. F7EFED6CC521A28342436B953E4650B5792BE85EA2F989EB6D986905A61FA38B
  1509. 96E1BBC830B74469150FB0B598A794FD80D10870084A877273A9502C3456E5EF
  1510. 74350E6E3BE5863E8BA185EB59FB87B36566AF71200B6ED389D1287D4E925E33
  1511. B2383ED05D87D48586E698FBC5D562ED9D8A09EC3EAA1B1F300224AF20C23F26
  1512. A2EADC74562571DA84B3914D1D80B127C6FF4706C7046BBB372A0013E0AB94F0
  1513. C27946583871D272BF4F20FA84E89D745DE7BBA885CC09BA72E0F530ED4EF7D1
  1514. 864B3C67007ED98800284235372F0A70C912E21E851AFBF812165B8DF912CD1A
  1515. 013E271F0B347967876C68AE4C4107EF8AD1F170916210034C66394A9D971B68
  1516. FBFC1131E37FC178EB97C1B2A0F573ADD9D7C0BF944E6529734DF8A7EF54485B
  1517. A3375CC30E9E328943733CBD352BC15B06C85BFB4A96994291C72A0EAE84FB01
  1518. 0F1B24D0125FB8C16D60561DF8BB7AA7DDFE9549AFB70C1E89424214609FDE41
  1519. 9A142892E30F02754FD234CEB3C59A2A04C06BAB7AE40E8FDEC50559B8347684
  1520. 391C750987802D5452C47C1E0B5F222DE9A0EEAFEE19D796FF375A1E1EF0AEED
  1521. 1BCAC4F485FCAEE18AEC585D1A9D80F41871DDA45FEF1EAE82C5893118987BEB
  1522. 4D9E345C27C7419FE65E4853B40537D822E34FF1E0BD2819D21EF607981259E8
  1523. 9F1040A2D708D7463858AA5381759AC49DF4DDDEB209A278FE60BD2508ACA0F4
  1524. 6A249A05B652E4C7BF1B676943CDC463B1A9D89AD6CDCC3AF0AC533EB8FE602E
  1525. 0ED9A6A38BB39CA02AB042CB4A5ED28E14F40BB90EE90FA42E15294545410062
  1526. 3F8A7C29ADFB6E56C72C1511EEEA10313761812BF840E5A3CFDDA5A71F0DE135
  1527. 2BECD0541AC711EC68B531947CB303C5E516F18F71F3E1BF0B7E35DEF1B2320F
  1528. 6AD8E6CFB0D2666679C13A65E1D6872B193118ACB750D98062B2D28844E50E7E
  1529. 44723EB4243C082BC703ED67F8956F3C757799D61A801701C6C457B2B4B6AD53
  1530. D22C67800381C5E71D4CA126D7D8F56E7F4C814DF759C9620BB20BE364F99869
  1531. 839FD8E30152DD5AF9200F8AC8B8FA39413858E8AAD34935A0CD72D2269D74A4
  1532. ABCBDDE3DD98EAB24D3706DBFCD5E9907E38EB02257D7F32DDC1190AF61B74EF
  1533. 3D7FF335AD00BDF147756C177D2FFFAA8396C2033EF6795B119EC6803BD53A88
  1534. 82D82929177263931EBFC92F57789B62A14E6495133A1B3B110F97D9D1784A32
  1535. 3AA0A83115E8AED878484FAD3448F4BBFCD659C4DC4F14DEA17736D0535B8B84
  1536. 820471CAA34AD33367FC9C322336A2B09FF81FCFFF0C08B845AB92F0C60111F8
  1537. 6B65BB10B62593DEA56DBFF08DF61B80CF1C294C865573C3D6A9EF2F67818486
  1538. 5BC49CDF6F54B543754690AD1AC793BD28FCA5B8642474DCDFC2D7048445073E
  1539. 79C2A7927C468EAA3947DD453FE88C13A7180D80EC88EBC3CBB32CD8BF51D6E3
  1540. 8CB457C3AC88012C30026AB518D1BE399DB38FCEF12C4E988752ACC51E817B83
  1541. 9CC44AADE6DFC1BC7CD3BC95E755B0C177D8E14AED4F06B3F1FB4AB16280601D
  1542. 4308FB33E7A35FFE7179D2096AE48F387E2523C39EDAF5CD7F087557E99C50B7
  1543. 8FAC6A62D7CE3CED36060BBA2543B88005F4C0C7A0C8632D335E169B0EF7A62D
  1544. E9A66C3265E647DC066E3BCDEFE3928BAA8452E64FE2DAD4DAAF0301E4D98723
  1545. B5A14A5EE325D1C4CA5023439ECE5E33FAEB94966600A8B720DC21DE0755EEE6
  1546. F50ABBF988C8AF7468EB28FD5E0CBDF9E23D1FF320EBF1997A946D805BC78580
  1547. A7EF7997467C254D74D5092242226DE34650381E96D9477ED1CB332A3DB42F31
  1548. 7831E6F2E7D41FAA5D19294AD7623E060977AB9233338862CD236543FD33F885
  1549. D1054A54F70EDB1BC66DBC4A59C7EB9F062ABB34EB073598F17484D20A23816F
  1550. 69D9CC4B007EC9B5F8E0E2CDDCEE93246DC5D6C0E5FC68C7109103FBDF1B4DA7
  1551. CE2B7194624D33B42527A0E775A78A90EA9F52ABFD70788A26EBE7BA4D5421A4
  1552. D1CC07D307DDBF52E27B75787AE81EA98B34D8DAE91C23F4584FBF0D451CACC5
  1553. 142CD5AAC12ECEA34350CEDB8813888A023B8731F38AC5186F78CE942D14E785
  1554. B04DC1C56AED7E3E83B767E4E968204B3BAAD1937589D55B7579A895A905D0DC
  1555. E8A41DF8804A6F855B047F80FC9B4384EE6F9A1528F7E58A9CB23E3EDE46DBEB
  1556. 4B4B37C5C1538E75C144D7ADBA18820FFFF178C6ECC16CEAA06FED505EC60F74
  1557. 60026CB41957431ECD4BA4DC0AA1B54D55FA959DBDB3A3D59D187984C96F2DB4
  1558. 498C0EDAA9F293E7264A221A21C15AE0743ADAAECB1F2868B1AD53080831000B
  1559. 7B82E2B244770978C5C6E2C88FA9336082C86E84310DF2E15C2A8EF5DB32EA80
  1560. 8C4DD41C0FEA3951EB2C8D17C29BA946818BF16B05AD9E0E1972EBF20BA99B97
  1561. 3D833C013530FA4EFED6873046F14E850D30BCFD2B6A49A29126C836ED6982D9
  1562. 18C794D4BD78C6F05212E127632723E22D5FDAAEFC70EA6D36AE941E3291793B
  1563. 66598F771B58C0102346A982AE10A214A618C01C1D84DEE5743EC98A01B89454
  1564. D9CFA08690CDF7574095F57BB3750CFF18390F67BF16F9B4CB43B26AB9B8ECF4
  1565. 2FA5581C53E25305A846700E91F93C1653145AEC22331C2DE834B61AB96148B8
  1566. 7232D14B426649F338383587CB165A5178FBC21A3BFC4E230375D47F4691E0E9
  1567. E3543471930A53702E62937C18838A430C60992C0D5CC50D59B14294EA45E98F
  1568. 210DEE90F6F195A3051CAFF0CF23762975AEC0D0D84A962DD0A04F4B6B420E0A
  1569. 98138A13EFFC7DCD6BDD329EC69AF33E7FAFCC19B3590EBDAFCF64BD2BB65C13
  1570. 7CA2821EC9838CE39156532CA84F19126C17DD16A3913F27F12C896BDE5C6BFF
  1571. BFDBA797AEB6B3D26C3BE81355AF112486CDF5154ECA5CFBA6DEDC6565AD6A37
  1572. 25DA591572F4AAD6612EB12890BF5407FBDD9646E0166601B3481A982BEE3ECF
  1573. EC15F229C7D109D80B8B72A6365A4A9445A71FC40ADD5274485AEC7B63B1A633
  1574. 07494907D3050FC9D55767C711128C794F77BD223CF144C0FDBF1576BC1C20D9
  1575. D07C9A198489AA1D0FA3717BF3CD52E7FC86C8FAF9662752F76649AA8A88517E
  1576. 73083A5C8E612E3342CB6C8D1379D5E50809FC7E1269F6B0B975FC09D8A3A18B
  1577. B827F30EABDF8E4AF75FC848456161BC77B24B4445F0C29BF1E997B92063EB4E
  1578. A7A857781F5EE018959B12F44E4113E500453BF785898CDE9DB4412872327EBC
  1579. D51C597C1AF6102197A1C8714E87DEE3F0D955E62AA9BB968DC08B75C0AD9C60
  1580. 730CDB6C87A6DCDA33C3CB3F5BB87F30B80F15A0082D1D59D9E92F4D14CCDE33
  1581. AA193D61A35EBA7F7E101843E35DFDF3EA68990F7BF552E25EFA7274938E55FB
  1582. BF174FAAC6A8F2B4B911C17FB2929D3E12A8967364952081AC22A90C4F8F3F48
  1583. E9396DED9CB15717755F0C024A35E011A437A8D78C8996A34FE405AD6C94D34A
  1584. 2D6E714570B7DA41EEA1A668FF1B7B51421F5E65A2A7FC13B784E8018EA7C3F0
  1585. 81F5A258A6C41B6250DD77B4484499EFB0EDE9BC6DFFF567025D6E00A898F0FA
  1586. 2804E0B02FCE46FEB009049940F99D24D7050BB8B6CE2AC297BC50AE7B9B6AFD
  1587. 4DBB809681B3178E8147C5843513CACB2F55A12A0B8BBADA91A7C1C1A1878975
  1588. 82877FE14960F79D54863F75475E92B0411D53BC4FDD03A8F82976EFAF538116
  1589. 1659ACC94C2739E423290FF87487E54DCF5364857EA20DB515C86F99D9F39C0C
  1590. 4E3E114C891292AFECF8A055EAE81C7D2B8D845D3F92FED23F56853E002ABC50
  1591. 9706C00E045DC552B2E5EA058D34CB185B38F5EFF96C763F5107940EA9375967
  1592. 10EBCAC8B76B280866A0E6E912344837868A257173ED0D30E8D89CAC3F10003F
  1593. 7FDF6FA87C5C26C06BC86EA3DE3D093A57B2D3841A0B5BE40198A48B0D8111B2
  1594. 390B732BE683EC8F80846530A88228B1F44C73E8CF8FF1E99D5CDF7BE2DF2371
  1595. C091446F1DB0DE5F6D45CA8B4F0E073865FBB4C5843C9C56FF9F371C82FE3E86
  1596. 66A274B783740162F691BB4E32ECF1455DBC3E902F2AC3ED51A3B369367FA161
  1597. 4FBD54B3D4EFBFC63A3364659A91DDBF843D654ADFB9F37CC6B6E6B39564D383
  1598. 8D43577688FF0EEF8AB71B1D62DA31D6CD94A54CC5CE59292C6E526F59005661
  1599. EA84DED97E6C129E8DEA5117B3C82C11A247582DF0AF17D06D2F587530D12214
  1600. A3CA55B5C2F665746752937B5B9E8C0E01A1B8EE9BB2CDA455133F8E7F06D46E
  1601. 1670239DE905753D58A74E6059199C4E3EFC3101D7CDED417EC388FDC131444C
  1602. CE5F7F1A98BB3A8572F20EF1C3CFAE6384AEA13283716F280C3478C8EE4EA638
  1603. 76BB37A6AED0E01C25CA3751047547D99EED11AEFDF7FE421D3F7B19C47027AD
  1604. 5C2E9F9907D29F2441885D465424003B068CB234A10836AB34663A141DA69B46
  1605. D41A04EDBA43897FBF8D3AC972C91E47BB642A01E0C4E0DE1F5F5770E2F0A8AE
  1606. BA211A64CA8EBEAE5684A6656D809B993ABB27574D6EC463637218A766F1C0C0
  1607. 29FA9FA04739144889677B31D3CFAA885737D25BF099E2D5173413B3A9D56873
  1608. C70AB72542E9BF4233547A002BEFAE6877A743AF89B0A40D95A4752AEA331F95
  1609. 31BCF077546A02412777CE20988131537C178C860DBE300386D47CB37014A2C0
  1610. E3BCAC006B71620EFE776BB11FA5E2493327AB8E21FB4A2DF3BADABF6CE2455B
  1611. 0FCBFD48D53C0528D90FCA28BF71184401A975D2C77A9E4B76689F6FC544FDD4
  1612. A65861C1498EAE1D118AA458EAD2F07C2FC32BD8C69DB194030EDA77B7667C5E
  1613. CA2740832377757AFE7029A450898925DB513D3429BDC7838A9410E7B2D42EC2
  1614. BBBD4E1BA25E5A4FDE33CF3B99FB57A66912291DAA0915E7D640105F3AF8CFA2
  1615. E355DAA659FF0ADB3E256D563F1029C4A51B6AC259D6809FA22A0DC3112E7888
  1616. A499450162B7373CCF79CACB2A1C8F43DCC32331D34FE30953745E24926C9AE8
  1617. 9C0FF6E45FE00933038F1BE45766247545BB7EBD0851B5DCC87392A9FDB4F0A4
  1618. 07E67926A4C335B9EBDD11888427328A6C3A12420D73235157B42582FB3C27E5
  1619. 6A452513AA146D643432F79AADFDE20FEED119AF2AB848123723576A523D336C
  1620. 8523AACC8882547AC619B7153ACCE9772EE21929A553000FFC3B3F8666517DF9
  1621. D31A1E53EECB83385CDDA42BC4773F93E7A53AE89EF389AAAED0CB3CD3573A88
  1622. 4EDEAF39394589F3372502D683BD000CB0B2A800B0FD20B684C57458BD252780
  1623. 8DCC5C70B12FC63D616143FFB85D78805A95B8CB191C775A2DDEB0E0111F1B77
  1624. DCD2B7DC83E662C19DDE6A5207ACEA1E0F87D074E1FDBBD22BAC44ED6AA63FE9
  1625. FCAB710D6DC08AD517527BB2894802F6E0E5B3B0B42C4E29643EC14B45B28C9D
  1626. 5D4EFFD8613B50B2DF38EEF34AD0B05A9F13DAC16711E38EC99F57AD5A1601A6
  1627. C2E44D2B6799B72E8BF6715A1FEC0452DB032189B0081F505C6BAE09E9DE0C74
  1628. 3401FF403643F1D606FEE10691D19ED84FE52EA967B534AA7F80FED4EFD79B47
  1629. D31ACAB7921E974E0F0253210A41CB0C6AD90F780EFC2FEA24988396DF3B2EF0
  1630. 1192B649BAF383477600CD129C1030E90050D3C11DD57805D2C5125B84723A0D
  1631. 6B999882E90A2E0399AD13671A4F2055F67F0ACD4DE0398859EFA4F454633B52
  1632. B4450DA22075ACF9F7285B289C9A8F7AD8985959953FBD7EB3A07CC43DB248FD
  1633. 86242D3B75FB40B69FE3F7F354C059AB7881850ED5123B3979726B4D6703493D
  1634. 3AC7E24AEB3F123578998DC22A404650755A18B3F5B0AD875D6BA02D48BC7B08
  1635. 6064C22F9C45436CE8D7942ADA6E591E6DDE069916B812BD443D8E4026553F67
  1636. F36EC4A75F8BB62022DA5ED5838D647AED90FF2CDD367D1F72E6BA67CD7C3A1F
  1637. 897063AD59F99807589C9C75833D2E07EC89ED87716ACB28F727B631FBFFCA99
  1638. 03705EC586A1B1664D61C55F67D835BF82DC292A013A077CFD509A8B384FCF9D
  1639. 88F4BB2EE882388F03CD4A719DE7A7064294C49C97838F4ED68B6607B9D3E436
  1640. DE3232F33DA4A6F5461594BD3BDE3321BEE5213E4E8BA45240B11FAF719EFC01
  1641. B3DC03F427935862365881B489D18562C62D1FB263D84A24D1D8C3172F7A2016
  1642. 746E7CB7F6C5436B0787A7C3B28C2D0C2F6A40C4E174DADEB2D6529F67255EE5
  1643. 02FB1EF8C936F23DEBF368FE4380C1D5C288774A12CDE3B9F497380C8BA275F7
  1644. DE0A287E4EDB93F060D39C41E3A06E8C6FCBE7A51F92E16D6FEAD4DF7700B730
  1645. F17CD5694B686F2023B78850A8E482F4FA402C62006AD4184028B13277C142BC
  1646. 9FC5923010F887891F23BE3241CF1D074B3C8DBCCCD9684A17422617E6D71D72
  1647. 539C043948B0C0651FA074AC23EB79B3C36D71647B8F6DE3CA51CE1748F3FD35
  1648. 82FB94A30540A008C3C3B25D5F536049734868657FED262F73990E76B5F705C9
  1649. 8CA9BF61C40A618A651DD5CBB789F7109C3299E3F5E1456B73B423B4D290F884
  1650. F62DBAFBF83FACE12384B4D8A8F9A6B8EC7E62CBB8E2196F1B3382FA8720A8B7
  1651. CED03E0ED541C6C03C84266325DF21506CF6C3482F68C3634E3E4AD0FC93EFBD
  1652. 5E276BFA6DC0D78365A1DB847EA4D10E21AB786B376D5FAAAD4F45125963AFA2
  1653. F24AE4AA4A8BF859279F39A90BE4F336384CA77E60C7B3F21D5FE9E32BBBC9C7
  1654. 0F23EC970A401B98A797407F3BA66601AA0C8052945AC49F0BBB06F35E43069B
  1655. 6E90D2B3EA0D2768B20FC89A1E7B261702A30AA76F26DAE2D9B28DDBDAADB918
  1656. 51BE1AA727959E440F267E0C764C77F6A7467C07F101AEDA864CFEB32260220C
  1657. B8665283502179727E75D29A752185D469DEB29A4689BDAC43E3A6BD50997D25
  1658. 2389
  1659. 0000000000000000000000000000000000000000000000000000000000000000
  1660. 0000000000000000000000000000000000000000000000000000000000000000
  1661. 0000000000000000000000000000000000000000000000000000000000000000
  1662. 0000000000000000000000000000000000000000000000000000000000000000
  1663. 0000000000000000000000000000000000000000000000000000000000000000
  1664. 0000000000000000000000000000000000000000000000000000000000000000
  1665. 0000000000000000000000000000000000000000000000000000000000000000
  1666. 0000000000000000000000000000000000000000000000000000000000000000
  1667. cleartomark
  1668. %%EndFont
  1669. %%BeginFont: StandardSymL
  1670. %!PS-AdobeFont-1.0: StandardSymL 001.005
  1671. %%CreationDate: Thu Oct 21 1999
  1672. % Copyright URW Software, Copyright 1997 by URW
  1673. % URW Software, Copyright 1997 by URW
  1674. % See the file COPYING (GNU General Public License) for license conditions.
  1675. % As a special exception, permission is granted to include this font
  1676. % program in a Postscript or PDF file that consists of a document that
  1677. % contains text to be displayed or printed using this font, regardless
  1678. % of the conditions or license applying to the document itself.
  1679. 12 dict begin
  1680. /FontInfo 10 dict dup begin
  1681. /version (001.005) readonly def
  1682. /Notice (URW Software, Copyright 1997 by URW. See the file COPYING (GNU General Public License) for license conditions. As a special exception, permission is granted to include this font program in a Postscript or PDF file that consists of a document that contains text to be displayed or printed using this font, regardless of the conditions or license applying to the document itself.) readonly def
  1683. /Copyright (Copyright URW Software, Copyright 1997 by URW) readonly def
  1684. /FullName (Standard Symbols L) readonly def
  1685. /FamilyName (Standard Symbols L) readonly def
  1686. /Weight (Regular) readonly def
  1687. /ItalicAngle 0.0 def
  1688. /isFixedPitch false def
  1689. /UnderlinePosition -229 def
  1690. /UnderlineThickness 46 def
  1691. end readonly def
  1692. /FontName /StandardSymL def
  1693. /PaintType 0 def
  1694. /WMode 0 def
  1695. /FontBBox {-180 -293 1090 1010} readonly def
  1696. /FontType 1 def
  1697. /FontMatrix [0.001 0.0 0.0 0.001 0.0 0.0] readonly def
  1698. /Encoding 256 array
  1699. 0 1 255 {1 index exch /.notdef put} for
  1700. dup 89 /Psi put
  1701. dup 100 /delta put
  1702. dup 209 /gradient put
  1703. readonly def
  1704. currentdict end
  1705. currentfile eexec
  1706. D9D66F633B846A989B9974B0179FC6CC445BC2C03103C68570A7B354A4A280AE
  1707. 6FBF7F9888E039AB60FCAF852EB4CE3AFEB979D5EA70FDE44A2AE5C8C0166C27
  1708. BF9665EEA11C7D2329C1A211DD26BB372BE5822F5EA70D99EB578C7BEFD44CDF
  1709. 045A363056E5E1CC51525EA6FC061DCEBB337208EFF729802376A2801424F670
  1710. 0E7E6397B28F15BC10B40012B0A3EAEB2693E8F7F627C4C9C7C6C5BFF105C1E4
  1711. 1B2B9E8F09253B76040D268B80719E1B3F5A55AA4706D91AF999C9244BA4C770
  1712. FE5B3485F083B758947E4EDACBB478E55F1EDA6FD43755F3819F9292072ADAED
  1713. FDA1ABB92842199CF874FD0D8A6429D69D5F1E8BB56FA51E0B0A12874786CC3B
  1714. 1C24C9C608F40C7774946DE7D3EC6F234B793C9170E9678D19994D61A213FE29
  1715. 925028E208DEBAE41C0BBCBFE69FF9920D5473AF395F9D07E27F7871953BCF83
  1716. 0D8E781B183FAC31DAA08488CC639C348BCCB2FDEA9BF11CFC9CF589E0E5D912
  1717. 9471AF733E09424A60685F4516C1BFC2912883835D495AFD44781CE0FCE03FD1
  1718. AEFD4190D530C243E82BACF9BBB7135AA21AC329BD25AFEB5284D0FEA70F0757
  1719. 7047772298ABD77E1BC00DAA5CDC0B8C239EFAD8A783A1260C2C8114B1CEF1FB
  1720. FEEAE79B4EC33824BA74E4BEA34BA26730DC2B90DDA59868D0D53327118E0A9C
  1721. CF307F710DEBD7CE9A7888FE9B339E1561B4B83F838F8D9C615054192F4B8452
  1722. 5908F8BAA5220EE28F4222C1FA5A97DB983BCF9F584866482CA7EC79A4AC1199
  1723. 8E071F5260F6478E070D0EB84A342890283F5B5640CF3C44AA2A1724F5F09186
  1724. 1086C71F7953533AC56D6265200EAB54BBF0FEF8154EC13229A8B2AF4E6F4449
  1725. 04A576D348562D512556AF95293C7D115FCAD4853FE458F7E8E987A2EE8CAE97
  1726. BD8238DB5814624FAA4BF2B5FCA3C1681365F380C43A66F0888447EFA5B5D6BC
  1727. CE81C48684059A8E65520853B56C51DDB70841BBB0011D8D61E6E57C27B1DAB7
  1728. F691D25A71D4E5AE5249B3D5CAE21B3148EEF22BEEE604EF95894D5B341D7433
  1729. EDF3980E078225BC8614D6C29F336C5E9F60656D2F789918E9E614F8FE024A7C
  1730. 59EC9ED04BD079834D21EFA8AF51BF06EA53C4CA7EA1C1D0DF8B24B993224BA1
  1731. E5446B31CE005A995647F750508B0076DF1E71D8D7F49E99A0F145F0655236CE
  1732. 00D9AAFCBD590C6F70C1B6E7AF8E11BA4798C1DD2EB7D4F9620BC4A49BBEB1B9
  1733. 13570A51B2F96D302EF8913C6BB60B5C6BFD1F3E8D1F7B13351D44FB1513CBB2
  1734. 2AC8F2281FFFA0E0A37F242A86EABF81AA379231DB5D3C332A2CCBE464DE04A5
  1735. F35FF4360739DCFA181DD539CB02B11235E05FB023A6E44AEC660E02AD5C0E43
  1736. 8F964716033EC03304518C35E55502546E62683AA3563667358910D6CACAEC65
  1737. AFA2F6BF9C9FDEA1FAE0D25E6BEA3FFA08384521CC92ECD90D53471FEA922D00
  1738. 27D864811726E41351E349B6167CA5058EE84D1258EFC6009074F56DBFC2992C
  1739. BBF2D3BE43FC7E8CE14C9FF7CC137D86BC31AAD89CC7F08DBFC1D5A6F0EDD618
  1740. 9B5B3315DF7C66D0B692FE7C9CEED9A54EE6607CA15794D0483802318C52B7C2
  1741. 4CC9AF78713A5D180673DE4C1C354D26C28195A1F4C4CC623B30B076D4861E83
  1742. F6BC30765D6775BB68C69704D0BA5D6DE6BC5E10374E407A25FCEA468F8E5B97
  1743. 80310AE4D7EBA4461B4C8E32F8672E0E0600DEB38A0C2618A58148687C5C972F
  1744. 5294EBE1BDF98378FC18DFE2E7D56C84071892EAFDFAD85D58F4F20D8814C3C4
  1745. F34403C404C616BA3C9DF5265392E03264AE22D81E75A04AE68344A9F1552E73
  1746. 43E8E3BA1E4E2F9D8EEDBA09F0462AA8FA3A02CCBC40FC0F4228F77FFCCA2F2F
  1747. 7CAFD93CA182B25B1076F29E7CF1C96C9B9A5A894D7135DA75FA8917601EA0CA
  1748. 8E192532476CD8EA1F5AF507CB853A32E8C35D5DB595D29361F8253C26C37E09
  1749. B4F87056EDD8C90876FF9A8FA7D88916E879A247BE2B4780A338F7065B17778B
  1750. B745C354BF8C7532201FBF70952C8281B538DCAAE19E2A73F8FF90B93BD413E5
  1751. 2DA296FA2429F5181A2C305D02C52EC056C5D4075C20D3C673E47E1F37EE270E
  1752. 070F81FB7EBB62ACBCD641A976B33A24002BF747B2BDAA8679300F6237721F78
  1753. 9CBBE76902FFB27F086A1D1A398BC67465D029F6F7513C26B615959800DC4201
  1754. B6CC7EE3829BFE43838E45B21EF9C47651625AB1C69BE3D1630AEE9C1216CC6A
  1755. FA2A488D726E319689882882AD24C62013342E8C29C265EBF43B668F439071D1
  1756. 76B1DCD82BE03B83E37684EA39525C6916F75696F0DD7E33939FABC68235BEBC
  1757. E70E95C93B2AAB8F5A3FDE316590A101A089F8F63DF2C5EEAEB8F3857BABFA67
  1758. 20B16582952EC22F5987722D613518C24D164BC4CFD63D87C3B0AFF9592E5186
  1759. 17B7C879E3403CA812D206CD872EADAA457FD34CC4820A30CA1669A1DC9183E1
  1760. 5FA59936F0BC970A2B6E84D9CE8602ECA0B14D18B9B5113AA4F0F536C2B48F2F
  1761. 5289F0FB3C0E9CCE2DB40ACF74CEB4140797FC7F47961D93AE3D55CDABCE8C7B
  1762. 406F0B1ED377770DF32600B8371DBB61601CD5B03C29A02A57C1F0FF4F509F80
  1763. 43DBC5499D4E5441504686E61CC8DF2C7774EFD172E39742B28F29597A0BA0F1
  1764. 16A19F5912F469E4FF1709A05F0F8F5CABF98E78FB54B56F3A270A9001894D0A
  1765. 5781C7969F84D800FF2403F3A9C6042422277BE92BFB4F67D1630B86B15A0F09
  1766. 6E60A57B5976F4484747A8D6F5BFBD8CDDB411BCFA5E806D6FB524E0F5FFB4CD
  1767. FA955A5BD1C582060673605C54B80AC1EFFBEC2466A594A512AD940B2DF1EDF1
  1768. 19602E5609B2333A1003BF498A768586186404B927682F16E87635189DD53122
  1769. 8972330D5B9B804C7270995647E07B4EEA8C063B32A87A6B2928AE0E8502762A
  1770. D16D0122B731A40DB927ADB7510BBEFF1B7F3B86C6666FCA
  1771. 0000000000000000000000000000000000000000000000000000000000000000
  1772. 0000000000000000000000000000000000000000000000000000000000000000
  1773. 0000000000000000000000000000000000000000000000000000000000000000
  1774. 0000000000000000000000000000000000000000000000000000000000000000
  1775. 0000000000000000000000000000000000000000000000000000000000000000
  1776. 0000000000000000000000000000000000000000000000000000000000000000
  1777. 0000000000000000000000000000000000000000000000000000000000000000
  1778. 0000000000000000000000000000000000000000000000000000000000000000
  1779. cleartomark
  1780. %%EndFont
  1781. %%BeginFont: CMR10
  1782. %!PS-AdobeFont-1.0: CMR10 003.002
  1783. %%Title: CMR10
  1784. %Version: 003.002
  1785. %%CreationDate: Mon Jul 13 16:17:00 2009
  1786. %%Creator: David M. Jones
  1787. %Copyright: Copyright (c) 1997, 2009 American Mathematical Society
  1788. %Copyright: (<http://www.ams.org>), with Reserved Font Name CMR10.
  1789. % This Font Software is licensed under the SIL Open Font License, Version 1.1.
  1790. % This license is in the accompanying file OFL.txt, and is also
  1791. % available with a FAQ at: http://scripts.sil.org/OFL.
  1792. %%EndComments
  1793. FontDirectory/CMR10 known{/CMR10 findfont dup/UniqueID known{dup
  1794. /UniqueID get 5000793 eq exch/FontType get 1 eq and}{pop false}ifelse
  1795. {save true}{false}ifelse}{false}ifelse
  1796. 11 dict begin
  1797. /FontType 1 def
  1798. /FontMatrix [0.001 0 0 0.001 0 0 ]readonly def
  1799. /FontName /CMR10 def
  1800. /FontBBox {-40 -250 1009 750 }readonly def
  1801. /PaintType 0 def
  1802. /FontInfo 9 dict dup begin
  1803. /version (003.002) readonly def
  1804. /Notice (Copyright \050c\051 1997, 2009 American Mathematical Society \050<http://www.ams.org>\051, with Reserved Font Name CMR10.) readonly def
  1805. /FullName (CMR10) readonly def
  1806. /FamilyName (Computer Modern) readonly def
  1807. /Weight (Medium) readonly def
  1808. /ItalicAngle 0 def
  1809. /isFixedPitch false def
  1810. /UnderlinePosition -100 def
  1811. /UnderlineThickness 50 def
  1812. end readonly def
  1813. /Encoding 256 array
  1814. 0 1 255 {1 index exch /.notdef put} for
  1815. dup 40 /parenleft put
  1816. dup 41 /parenright put
  1817. dup 61 /equal put
  1818. readonly def
  1819. currentdict end
  1820. currentfile eexec
  1821. D9D66F633B846AB284BCF8B0411B772DE5CE3DD325E55798292D7BD972BD75FA
  1822. 0E079529AF9C82DF72F64195C9C210DCE34528F540DA1FFD7BEBB9B40787BA93
  1823. 51BBFB7CFC5F9152D1E5BB0AD8D016C6CFA4EB41B3C51D091C2D5440E67CFD71
  1824. 7C56816B03B901BF4A25A07175380E50A213F877C44778B3C5AADBCC86D6E551
  1825. E6AF364B0BFCAAD22D8D558C5C81A7D425A1629DD5182206742D1D082A12F078
  1826. 0FD4F5F6D3129FCFFF1F4A912B0A7DEC8D33A57B5AE0328EF9D57ADDAC543273
  1827. C01924195A181D03F5054A93B71E5065F8D92FE23794D2DB9B8591E5F01442D8
  1828. 569672CF86B91C3F79C5DDC97C190EE0082814A5B5A2A5E77C790F087E729079
  1829. 24A5AC880DDED58334DD5E8DC6A0B2BD4F04B17334A74BF8FF5D88B7B678A04A
  1830. 2255C050CB39A389106B0C672A1912AFA86A49EFD02E61E6509E50EE35E67944
  1831. 8FC63D91C3D2794B49A0C2993832BC4CDC8F7BD7575AD61BCDF42E2E421AA93E
  1832. 3FF9E4FAD980256D8B377043A07FC75D6169338028692CCA8CD1FE92FD60AD26
  1833. D57B7519B80A8F8DCE9CEE5CDF720AF268D3C14099498A843D76E3B6C0328F24
  1834. D36EFE7F5C4E5B5C612786200C8DE3A41EE5F1FFAF4097653CFCDC8F4FD32E0B
  1835. 03EDB3E413283B9EFB0AC33B055617005BC9B0057FD68C52D1B0E67F0C571685
  1836. 767F2AA85ADE4E0104A1C777733D5E318A22A9944336E5B98D965E50D31F357A
  1837. 8B6EA5A0EA98E1B027CE68C2EDB149EDDD04ED74A1B3D206D471A0C11C11449B
  1838. DE190BBFEBC08C9E1B7513B43DA3134D6B11A2516E6E86B67F68C970A320D05E
  1839. 94FEC57FB347606DF89989C33482BD09D011C55AA920319E7B26A205D3D0F004
  1840. 22466F09C0482A164CFB27EF6ED2B040ECCC3DCAF345B5A73676F193D43123B7
  1841. 72FD6CFC5E37930E61EBD5A6307E4DE70194E6384EC0D79DB6AD86D3B319A31C
  1842. 8B0589D0FE28241D8ACE280D0530EE99C80723E560BB72AE9D53F4713181F491
  1843. 344B06D3027BA4E9E94D4305BE1D817197C54C8FF56CD6964165F6448ECC8A8A
  1844. 64B48B4F0FD69299A137589E2491A283509B21A3A5772F75B7602A9F60AE559B
  1845. 07A58436D04222C73EAEA72DE9A5A441F88D27C11F4F91255EFE280E91A4ACAC
  1846. 1E98A4E5E6C57B9AE86FD218C3CD8F24A4104156A80F13821384E529783C52C8
  1847. 78B94AB3A0096090867ED32E8A30980E737922037F75F062BD83BF4F5929BC51
  1848. CC22AEE2DBBAAA001CFFBFF41D258424FAD888FFF1BEAB796A44E3126159E120
  1849. 7E4025C676CF94888A1971AEF8B6764B3AF4A92D36FAF6FC56FD049710EE3782
  1850. BC2CD84FE2473F133BE03C1346B875463F126DCAB15C7A9BCC9A727D23611462
  1851. 4E8D2BFD2466600285D79518712B8681ABCD69608E6AA9578F7BD771EC36E01A
  1852. 5A17BC17E375020ECA59B43790ABEB9DF5F4FBBEF807E5699EFEAC563E1ACC5D
  1853. EFA336E75DE6D8248E9381BB110884FDC89C2F9A41EBBC9A8A1F98E6A41F68BE
  1854. EE30E25CA148C1EFF42DFF8C214A6537AB11F260B8C329A4947B5FC8DC9C5622
  1855. 4DF7BF4FBFB00380D47BABB03BC30627AA74103E553F55278F538EDD8C1E64CE
  1856. 0F1398CA0AB5A86630139B4A7E8FC02804CAFF3830114640AE50D2FDA3B561B5
  1857. C63AD7EE3347804CBB40FB1E77A6C89735DD870351C3A1811591AB493251B904
  1858. 314F65791963C0412377C1D02362C5E9655F1C3D4803CD379A8EF24C48218C2E
  1859. DF1165840462BF37DDE1B8D5FF09FA2C3B261E2F1A65ECFBE5D4EAD43B52C029
  1860. EEB3948CB8A252CBAF545C8FA1C31E920E23A12DD7222CEF2D2A513BD758EA13
  1861. DA33BF5FBF1D734653EB83DA2D374A5B9A0CE316F24EE375D6DF6BDA49954C2E
  1862. DB25A88821193636119D469BA66E5DAA9C92520FD4F84426A4E54273FA469084
  1863. 7517817A6EE3E21176D333825E88046F50B3CF6938AF9BA79A2F51398239EB91
  1864. 1A2D07F7FCD948427FF62F40FF95E39FE1A1AA8451411563FD5388472251C155
  1865. 69BDE9283B41900B21EB1190D06E6B13B7794FED020D2C1BDD205AE77B084BCE
  1866. EF628249398B496DE85B406FC2E1939EF00DFC84C07E26CF72EC401BAAE756E5
  1867. 7F6673216E7560D1C2A723CB405EE5CA474A07F61B81F8836482F73DC9516D67
  1868. CE0CB770EAD755B6B356198B4B97EBB29C63456953270CCC8D5650C1D006E69D
  1869. 38DE2DFEAB27DAD50A817F0D645D30AF5B75A7B53CBD3D2B8D87BD0A7E525AF3
  1870. 22F7ADDFCE31716914C2318260C2E2B4664893921B68C5A93334A361D94A759C
  1871. 0D7B146D6FD94F0442D672BDA0F6432E18F3C5DFA37ADA378D95B75F413C9ED1
  1872. BB5C606A3EC7DFB3F796F59B0478C13FD1900381EFE0BB5242D5B5D34D03AF1D
  1873. 4BDC93EAF8020E26CA23C8B0E7DDEBBC6762A557067A4CE05A524188A8F02E2F
  1874. 3625DA38DFCF381727887F5646A3995A8A38A5FB1E5D5EBB395FDD0B7C8E71AD
  1875. B48EEDB62AB2CE99D121435EFBBFCEEA69AE9ED8238B60CC7288DE33C766CDFE
  1876. 15B767B4AE2E6CE0965E77272AC9F86023DA620548CFAC85BC751C44218A29C9
  1877. 849F1C2DCBDFAD895B54E51A569952ED50F82DC8A19F367E7E44643854EFD6B3
  1878. FCAEB04E55E4661C82D31E2932611748480EF61FB2FBFB0CFB940BEA81AFCD84
  1879. 4C6A6332D7A600170E38A8EAFCD4F93DC153C43175434C86BC747348FAC61B76
  1880. 1FEC9027C1A193E55C80F1F20B5317AA0A05AAA36AE235F6E49F06E570FEE798
  1881. 84857D7552EA92EF3EFAD52DE39C2F8F43C59E3A957B7B926FC95FC4B60186DF
  1882. 7F3523EE2AB74E294C8C4BCD8B4975E84849E0FBDA6C0B0F24A636DFA578B122
  1883. CF97BC5089E21E9F5298D1C9F30CB8BAFF6A3A11BB4D9A0A5CF2B18D055C44CA
  1884. 4FD4D8FE1AF3630907DE7E585AA811F9CD11FB2C8FC791851D651009FA5DF20B
  1885. 3C33FD2FF848A9E3F5652BD294965A332DD3F246C91B0ADA34017FF2451D1394
  1886. F9C3C95AAC6EC8062BE98E8914D51DA6A164AD13938693D446044859D03A949D
  1887. F9AC5DF4A000CDA98BB516D762CB9F6D44B5268FD0C26E88BC4A760C0F75A140
  1888. DEBDECA4F511128B7D2805872160C55236F0A0FA7637FF0D4E94AC079CD3C8A7
  1889. D03A5A56F26B0438B577C46011A10532FEBCAD14FBD6032E224F45691A726886
  1890. 56F305231EB2FCDF59C8BBFCB5DBD2D093A0E84D62AC93A2312CA69295E937C4
  1891. 8DBA1802B85F54B5E7E6D6216A918F911FF705D3B5CF055F1D873B96283A0B53
  1892. 59344D910CD396D883F6F7836BA65FAB4393A773A8F6BC298069E5BA38210EED
  1893. 49C9D920F718E3FCE692527DC7CCE6963BF744F2C91BC5952564196D60574E86
  1894. 87A0FAB21F2DB2BD5A51D7FBD8FC19946D24E5A228462C4772F978E650ADCE3B
  1895. 8D66B9C21279C531CA1C3A8ECE3420BB65837287A7222CC3673A2A5F8BBFDB60
  1896. C719CD073EF9A23675198462C7C87B24CC92D6AEE5C25AC63855CC3281494342
  1897. D28F3D2FDE0C183486769A4FD5B0143193D31FCB2C2A14E487BBD96D0BADBB64
  1898. D1B56021C363A795BF10E2DB448261C363A54A4AC1182B470C457AA82DF3F5D1
  1899. F4B329806141EBD53CAE309319B94133D7EBDC2D0453A905ADD207364371E178
  1900. 0A95C2686E3B34C4A978BFC0EE968C39ABA00889BC5149162C2B54483D44FD3B
  1901. 5CFF41F611C7E03B94945F414560E874D7CF27FFD0630890D7D7EA66CBD15448
  1902. 229059E1C436BB33D69552B5367AB5D53591C4678D0C704DD3EA23F5D9E8A7AC
  1903. 17D003C19E333E726FFFA2961F33C70F429085F7BFE3E2510F59B78F58B19CB4
  1904. 01B48E184BAD9020FECCE3AF52048A056981DAEA02AE78197E65855DDB170616
  1905. F54278395D9EA50DC83761AE759F9CDEF9E1948E7002414FC05286ED793E6662
  1906. 3347F2A9AF8917493D7305B92CF93E8E9185F70015F5594084298A6C2F9FD3C0
  1907. 689F262AC9FEDC9B89577ECDE92F08D3142209FBCE7B5C0A840CC767BCA56C20
  1908. 4E4E545E2BE4D21C53855CEE4CD0AB35D1A604C0FFFF77DBAE4289752276559F
  1909. A05FEE65F45ECAF44E95E23FAB6052195C7948AF0B1126482D4E02D72BF8AB03
  1910. DE0F1A632F7672AD9DDE70EDC82AA993678A82BEAD0BC2649C4707FD8509810D
  1911. 364B5C6FE0E10772E95288C622C2F06C634F4DF8C7FD1432BC9310D5F24FEE3F
  1912. 7AB324863D6DABAA1576E70643CA79EF4D7DF4105093D66CEE0F3B87D2164A7F
  1913. 26EA05F5C4645B22D3E1BFD2219657712C168FD90DE801FB0F32759E80DEC1E1
  1914. 43CEEB19FED12D757205043FC98FEC62D6A8D8B97BC083B4A0E985AF7850D6FD
  1915. 8716B9957C1C35A0675BC53DF672C425C79F43FDABAEE7D63F092CF271C9A9D7
  1916. C41F40C4189510987887942E60A412B3EEC84C9A6E1AC7D54D528F5604B72C08
  1917. 94B7882621A5BF1F325B92FF96B80878CC550D1AE4D8196E41CB1251856609A5
  1918. C4D3BD05A922D0D45E039D9450DEF8490A3E924E41434194910BF60BA1B08BE1
  1919. B41824345627745541A4F1703E956328F6227D11C74946B38CFB096139979E56
  1920. 4E723B889B44C6D78673868C89912F8B4F0B4B485F1587A637B630F92E6072D5
  1921. 7F3B44EA6FD96BBD4FC28A6C1D90805E3BE3E42A7BC9C880762966C55BC04E01
  1922. 204D083AE976FAE6F37C94F27E68F8C0F28D52B17F6C0FD7C9150701FD78F8CE
  1923. B8E8DC9260E3974005EB5CA728171F482D765016C94D4ADFE4A42EF42212BC56
  1924. 7E4EEEE8B0D2A7856CD4E44F55C0BAB762F92CB8D64C17022D4BF3A47C12F5E6
  1925. 279FC23101FEE93753653CE8CEDC3B75C9CCB29BF1D4554C6120DE8EE750FCBB
  1926. E38B5D915206974962E320362E59B3F21B3AB1875703191043D03284D4467346
  1927. CFF2F98CEB4845B73ED8E003E0DC94251B73E13A9B51A3F1430BCF6A21EB9B7A
  1928. 65E17FA411F53BE6432F1506232B8159E008FA257F884A4A01AC53BE91754D78
  1929. BF14A5B0FBFB9C31BF4908355F8A762052968DF526D118708CCB0B7CB5BEE285
  1930. 6DAB6CD2E3934178E60BECB11AAB5478623CF6C50C92F8BB5D1A583609028FA7
  1931. B8A53B791BDC9EF76A124F3F7641857E4BEA0837CB36176EC9A522EA7F41B8D3
  1932. 63C37D1145367BD300F17B54522A834BBB74DE12BF9EB26ACE6F24A046D58F89
  1933. 4D4B7DF74875F1A0C1C9D97BE0849593D7B398EB4B00BEBC8C8D1497B6EF831A
  1934. A35380FFB7F1AFA4D888AA52C9482E8B1755CC209905F98F40D95B44D4DCBCB6
  1935. 67423D1BC2F3560FF0A8B4F0CAC352A4EE2C1D946E45AAEC8A6AD40303F3382C
  1936. DF0756BFA3B1ED64C169E56ED1C760F2FF0E24DC5C9F41306EF8D2628153D30A
  1937. 5DCB0791126BEFD4947D7EF08301FE015F2B0008DFFCBF9F2D4D859FD43EC7D9
  1938. C5BE237E9BF6665B7B1BEBB362F0C0C3A8D86010B9C97FA741C97C2E0513386C
  1939. 9C26C235B14DD2A58BFDAC7B5F63DB4DA6D5D37D0098175A9071590E1DF66A3D
  1940. B8173A047C29D7D35557F06132CC920B5460B8AFC11D23D09A4E45D089F5EB51
  1941. 963FA1A6256E359D485107FD143B2BF21FDE9DA5744BC2615E86C31C89470CF0
  1942. D06C6397D9FCCB316EA9989430240759D2C4945D941F159FC02327F34B042BAB
  1943. B5C3A47C78E8C1A6FBCD396B1A51CC4B020B8AD401841EDABACECDB482D6EC5B
  1944. 72D2BFEB4556720FADD49D07307C8B22ACB7E310CA4151A85C71EEF70E8D15DE
  1945. B3B00F26E0E166C14647A65ADA228A3D1C89025BE059306565DB1B1EFC37D358
  1946. 8C1EB024254AFD049BA977BD4C2C605050E17940A89D0D4C5D963E792320F5DB
  1947. 3706682E03D25D9E02487247819551465092CC22B6B56E93F3AB528038FEC3F0
  1948. 668F866707A19B0463BE706EC729D2EE1653AAC7E29BD25BFB3241D4792F5152
  1949. ED415B4E7FA92C2EE5A22E27E8B75542C492E56D811C192E95542A6FE0BFE5A5
  1950. 69273C2ABED4300D491B92D2AECDD278404CB84B1BB1BD7AFEC858215837D118
  1951. C0E928BE7E07CFEEB51A6D21375B772B8248C994564014015232A0DA4BEA1754
  1952. 3274F407FED0837A236371F1A32056240F2015B1E7F4B2CA72C6B58610A66F13
  1953. 407CFFBA5E0A2893C1F572D50F51286E9133B5A84239C9493B0574E77D281D01
  1954. 11D00683354A000C9700EAFBC1FD104EA19DFCB87470190E7E2CE26E3A6FD0FF
  1955. 2620B87B82AC8686B6206B530F17E9348BC7D04B948348802CE53A312443DB87
  1956. 4DBBA5313A6A2A8DAB8A1CC9A594FF8C299281C0A261C8CB2226B732FBEEDE40
  1957. 2C6ACC74A1A61379E2E1CD5548CD908268A32FA83D8504C442EA0E183ADBF7FF
  1958. 9FD09C037AB03516ECCA93FF048235BD11A25DB07F164512A079C5392AC7F889
  1959. CE96AE5C8D9580BCAFCC087C35E76EED1A671E87C12E3045E15A687134736DF8
  1960. DA984772AFD189D68571A2ED7256F1E204230E41D3D9DD876F938951714A3973
  1961. 0CA9310489F8E807C1C7A4E51AEA5BC030610A5D7263FF7E0F9FDE3E5E37A362
  1962. 5B919000BD94D978583B942EB79CF2BEAC33FEBC9A67272EB10865BA8FB75FD7
  1963. 9D280AB59F91B96C16C982DE848D76D8FA8620DFD7C80B7DEAE7264350D6FB3A
  1964. EF04794DA3305844A7CF718F6D1A4A3AFF6826173A076A1372ABFC54ED3AC6C2
  1965. 09C9287FC830556CA694E21CA5342ECA7B10C90AFC4783D841D7B1E34FA3DB7A
  1966. 2B706F3E21B0FBAB23E7257962FC3BC309CEA2C7239A9D6B44CC96825115ABD2
  1967. AF9A2566D2F3382C01569FBDB94C8D664A5DA0F7DC3DD140CA77C743D7BC1420
  1968. 324ECF9E4780280EB119885E96A6C619CE3C0C8E1E264E2DEB137E5DC8149786
  1969. 486D65667ECF47B1A1E20E9E6E4FC8323E0BC8E61BDD3BCDFC6575C69C03E31A
  1970. EFFC290472CBBD049DE3F840AEE37A2486034240F80E75D8A79E0762377DF660
  1971. 52B12EAA16D678990B11A9BFBC03C1D4FCDA9FD4FFBB3E88352438102F10B7C5
  1972. 9F04C013B6575B5E948FAB58EA691984A0E54E6B9F3F505FFFEF74D06FA1CDF3
  1973. 4B8A95904C8A2763AA8AF5B71D00F5DE09DC1CDF87A08B6D181453063E14C12D
  1974. B7BB3775A6E2A901636273D9EEB833EA8CF20FD83AE899E28DADE10EEEC20BD7
  1975. BD93085A4B1AC80AC1AE8280C14767F1A487BD066007A0D050317BD081131A14
  1976. 6EA0898ED59E46DA7B6254BDCCBC660686E2EDA0E77A705A653733BB5C5497D0
  1977. B130359F866CF293FB6EF0C2AC5BAA2DB0DED045E2DED3A2612D078333260359
  1978. 16CF0CCB272D34767EA069E0F0B0D42327A18529D72E890EDA6195C2688438ED
  1979. E9ACDBEED41E81CA8EB5E43C2B09CE266EFCA03F2D7FF57F12B06F9E54FCC6A6
  1980. 546676F6FFC5B8B7D3F0982B6FF0D21D949309F0C0B175CC1D0976F8C55C6AED
  1981. 6E821C39041E22D91AB30922F2B2EC2746BC7DAB484991542FBC82D87B487507
  1982. 559AB466F73EE23C2D3194DC5CE4C9AE66D3164613AC5CBB3DB501B64DA7C91B
  1983. C7ED2EE9027FC0906820B35D4F2CF66C4F9CE4A884B7C07155BCA884ECA5EB3A
  1984. ABB83F84DB1F5639599DC7D3F51241AB5D95C3BCB7AB1EC90B4BC989F74FB354
  1985. 04B2D7366A34D335A47B8C00C05CB423482BF6C7970A95545424A08AFF9A035B
  1986. 7F83F52B65A9799CE76E303B85664B624C65E9CA58184C7BE2BB9D9C86A4DE5A
  1987. 8165EE3DA2E652B5022EE7893896BABD88931DE1D538F615787645DF5ACBBA0B
  1988. A8E5B899A37321AA7D4B283AC9234978C2DD81813A1EE5DB6EC170DAC1B6EF02
  1989. 94892635B498765C07A38D2E9DB0B7581B11056C28278F89B0E60998379C07EB
  1990. C0EAEDC32AA69B8B836F92A61AFD35688315B2C3F860632FC13E4BDFB63214BC
  1991. 41CC6859EAB3AC3034449213CAB99FA1D216563419CD6D6CE4E1B56F33E6C654
  1992. 7AA9DCB5B05FC068DF02AC32408C8010AD004F6CCA9887830927F8CBCD49CDB5
  1993. 18CAC1EAFF815FF2F6F527F936948201565003022C6C7390B4E3C2B219FB4F76
  1994. 9F12BD25CA7B3B61D1A2F8DFEE795D04D5428B42FB66E0C254AF7B7A10CEF7FD
  1995. E0B5622DF6FC4BF52147208D9A91EB49B03BB40DE7F8FBFB566F251942C8FFB1
  1996. 1DFA50465919400C21CE4724D12E4EB47AA5F392BA927329DBCA28A78FC1DF2E
  1997. 6FF27F4E4E3F8971D7BCB5F3FBF8F30C214A26E5E32E0E8CBC71BF20AE573BBB
  1998. 163DD66E89F2C4E2B1A1532AE81C060146F755A1ABA3F1365FEA30B403DE7B22
  1999. 76F43EDB1A2230934225C290D98237E3E19012E75EB1297250A477781904F794
  2000. 39BEC3C61A62874766DC1356C9D659D4ACD14AC3AD0CAD72DF52E5FF2E2658C0
  2001. 6D45E63C9ABB4CBE7494E493DCB3BE489D2A732C28B9EEDDDAC56968011E2BD4
  2002. A092DDAE11CB4F48A3035E2A32D918C7BFDE050F44C5346E7591E8EBCE34380C
  2003. 9660ED165562E27759309AD063930821687A7199D3780D7308B8677C348171E8
  2004. F011DA484FC58D1E0E2554F4E5987035F125852E04BA868B1988C6742868A869
  2005. 6DD773723043CF55CDDDAAC7BE039B725977DDACB74473A2D6CA8B7E566A6F9B
  2006. 5C77474D3AC58541A4EA75D85B811D48320880DAB21DD38DB2F7A14D3759ECB7
  2007. 53F022280D4AFF507C8A7CED40DB77AC9BB09F7762512094CF79C5E3AF2E1E4A
  2008. 23C8221D6CF62C450071A46D4A7CB7A83B7B47F2D1D28A1A5777B02C5938A3F1
  2009. 5E316C904753206546D076A332A3BE79C54AD7B8116B79470CE0B5F44F0B0FC2
  2010. DF48404C942155B159197A5B3DB8FD83445E45024D4F5F6CF72DDA3762DAF551
  2011. F9BE53863F874739D8D970E652A7CD09FD3EBE095E3D68B155BB8B214733B99E
  2012. F0C0ABA475D4ED977D820E7F540860E804AD52EF7E68CA22AEA89656B27DDFF1
  2013. 69E27094F3D59809DB943553907F4DDF084C1952763F019FA8AC6081D36C29E0
  2014. B6CC882713509490
  2015. 0000000000000000000000000000000000000000000000000000000000000000
  2016. 0000000000000000000000000000000000000000000000000000000000000000
  2017. 0000000000000000000000000000000000000000000000000000000000000000
  2018. 0000000000000000000000000000000000000000000000000000000000000000
  2019. 0000000000000000000000000000000000000000000000000000000000000000
  2020. 0000000000000000000000000000000000000000000000000000000000000000
  2021. 0000000000000000000000000000000000000000000000000000000000000000
  2022. 0000000000000000000000000000000000000000000000000000000000000000
  2023. cleartomark
  2024. {restore}if
  2025. %%EndFont
  2026. %%BeginFont: NimbusRomNo9L-Regu
  2027. %!PS-AdobeFont-1.0: NimbusRomNo9L-Regu 1.05
  2028. %%CreationDate: Wed Dec 22 1999
  2029. % Copyright (URW)++,Copyright 1999 by (URW)++ Design & Development
  2030. % (URW)++,Copyright 1999 by (URW)++ Design & Development
  2031. % See the file COPYING (GNU General Public License) for license conditions.
  2032. % As a special exception, permission is granted to include this font
  2033. % program in a Postscript or PDF file that consists of a document that
  2034. % contains text to be displayed or printed using this font, regardless
  2035. % of the conditions or license applying to the document itself.
  2036. 12 dict begin
  2037. /FontInfo 10 dict dup begin
  2038. /version (1.05) readonly def
  2039. /Notice ((URW)++,Copyright 1999 by (URW)++ Design & Development. See the file COPYING (GNU General Public License) for license conditions. As a special exception, permission is granted to include this font program in a Postscript or PDF file that consists of a document that contains text to be displayed or printed using this font, regardless of the conditions or license applying to the document itself.) readonly def
  2040. /Copyright (Copyright (URW)++,Copyright 1999 by (URW)++ Design & Development) readonly def
  2041. /FullName (Nimbus Roman No9 L Regular) readonly def
  2042. /FamilyName (Nimbus Roman No9 L) readonly def
  2043. /Weight (Regular) readonly def
  2044. /ItalicAngle 0.0 def
  2045. /isFixedPitch false def
  2046. /UnderlinePosition -100 def
  2047. /UnderlineThickness 50 def
  2048. end readonly def
  2049. /FontName /NimbusRomNo9L-Regu def
  2050. /PaintType 0 def
  2051. /WMode 0 def
  2052. /FontBBox {-168 -281 1000 924} readonly def
  2053. /FontType 1 def
  2054. /FontMatrix [0.001 0.0 0.0 0.001 0.0 0.0] readonly def
  2055. /Encoding StandardEncoding def
  2056. currentdict end
  2057. currentfile eexec
  2058. D9D66F633B846A989B9974B0179FC6CC445BC2C03103C68570A7B354A4A280AE
  2059. 6FBF7F9888E039AB60FCAF852EB4CE3AFEB979D5EA70FDE44A2AE5C8C0166C27
  2060. BF9665EEA11C7D2329C1A211DD26BB372BE5822F5EA70D99EB578C7BEFD44CDF
  2061. 045A363056E5E1CC51525EA6FC061DCEBB337208EFF729802376A2801424F670
  2062. 0E7E6397B28F15BC10B40012B0A3EAEB2693E8F7F627C4C9C7C6C5BFF105C1E4
  2063. 1B2B9E8F09253B76040D268B80719E1B3F5A55AB7B8E152A40E590419249F2E4
  2064. C36159F8E54B532468E36965A38646781AB0B7F6A3E851FD10CAA49ADFC1E546
  2065. 2FD2EC6150DC6E19523050F6148348A561AD8D2E2721EFF8A570CB33460A745B
  2066. 926C889304C09753C2D78FB0CA95DC6DE5B8C524752C83601E7E9F73DF660674
  2067. F05AD83A166DA9BE89F22FEABD4B2665960F6FB5BC32928E1230C212E5D69CEE
  2068. 0B3311A1738A11747AE263106916D8E95F25B25B4BC6AFB03B79ABB95DDA518B
  2069. 41A49458111D2A1433C043627EF9460D324FFE22935F4F6DA88B8B91AE95B34E
  2070. 08408A34EC8EAC3F65B6AE3E3E2524867EE9D29068F81E4372F4470BEEB4D6BE
  2071. EE4DF956BECC0CB77F8490117B22B2FB75C938ED0A5E208D88BC38B2AB8B9CFB
  2072. F1D53084B6F43DF336481ECA0AA2D5317BC83FC0E1D4DB01D0B7707EEF217E94
  2073. A7F985102DED27D8E8B009F7EF6DB91B91E78BFAE7BD688E10B3DC9AC77CDEE8
  2074. 47AA4DC8EC78241E593D26EC7A60696151A2AE5325D736E99E01BDCBDE69579F
  2075. 92EEEC224B6757EEDC64A75455BB665DF42A0E4CE7B99BF3E7D66F8FFC8C13F9
  2076. D7A1FF7A9D5FF7AC43396779F11C9B008C33A2043D48B61B88B03104B1425F09
  2077. 675B559CA4302C001EE80D2B739CC0FD1023BF4F1FF9C01E892E59CCA7C26011
  2078. B8E0B6D29CC29FC72792FDA5E7D5D88EF98F9DBA960C96534C399C54865EAB86
  2079. 0FA2E0D6C7C44B553EAC1574D55E7970744D4792FFFBDCE6FB4365BDBC2965BB
  2080. 2E9EDAD9E0EBF0B620DB415AD98297F5AE83D9C710436657E74D26E83957C745
  2081. 89834337035A7501803947F6880B70E56A3A404C62D57B849D28804CBE0F5884
  2082. 435A0E12DCC9BA414ABB732BFBAE237001F557DEA5E972BA0838A3C7C9EB75AA
  2083. 4A050DA0A529BDFFBF9011C360564FD17A02C18860AF6B86EFD4E2C125686C9A
  2084. 5E114E95C71FC89A5DE9C589BFE5AC0480CFF716345265D2435EDAE67CFC4801
  2085. 5BC08E7A48D683ACDB91E05F469C0C8919D73A5D07A1CCB173E30E76680ACB09
  2086. 02A40A3E11916198BD69F1A26E88330F50692D0D5917E99E7A01B327413E24AA
  2087. E98EA484E45897E6AE4D6997B6E8BBF61C9406E916D56985CB2BD297E8ACFC6E
  2088. CF2D2281AD84696B7C6CB584BD85CC20BA14ADD3BC3E25DB91124C0ACF22E902
  2089. 3CFBF04CC40DE331991E9075D22AB5EE0E849B340050E6C417C664A782D05549
  2090. DB2EF572F193B1C12B4635C2B358747046DE585DE98B96A3F7E36CB37CE1EB1D
  2091. 11E2CBF99F15F7C116DB632EB22A6C7A3C921FF716E9753F4068CD684517F327
  2092. 58E8F5D1A42D40CCFB40C13249D90B00E1FB1F743CA143C191A39BA398B920B5
  2093. F25683596AADC66BF831DB6A5435937A0B37B5F1BC381AE33AB09D8ABD419796
  2094. 3F247467259BADF061BF5F70E4BA0CD7D2227F5E20A5428CD87225C7FF28FDCD
  2095. 4FB898A052A0B1A17FE1A99D03F851BF811AAE848B8F7F77D5075DEAF483E279
  2096. 574CA2D0D685C7D7F56248A987EE709782646D145FCBC3309933A1310FD71115
  2097. A0B725E3EFD5C01936F03C32E26E9752568586AF8F68C03A0B150E234D3A5C32
  2098. A6EC201192FFD8BEC784F4132DEAEA3D477C0433ADAD9AA04C4B6A9E56344507
  2099. DFC06A839C74458AFE461803EDAAD78BF5F7A738766E78C1AD7686A3C54532B0
  2100. 7F8856E3D629286E320BE4C2E6FCB731F6D39DA40442E648D10AADA23516331D
  2101. 6E99469582FAC2901B629CE4137326A88F6E1DEC663321202D699E63A013EBB1
  2102. 69289FB9333B6AEBEE1DE23F9179E939E8E50F7BE4118ECC2CC40F691AE9748D
  2103. 2DD76D9D1546488B7E05ABAA458C5CE797A327685A564C11295A73FE3649A983
  2104. 08BC5906C1DA356869FEA0B72860BAD93A2E414FC4E3FA2AD4257AFB55B24A45
  2105. 11083729A0C108D036C458F52CDA29AA7C0FE58DFA6FC3880C639397437CEA43
  2106. 184F519AAB4A64AD74C3B178FE624B1AED5AA201D467D1E213B2A0E953A7A38C
  2107. C26BC8DA4C262467AA66CAC0D20720013D66080CE87635A06B7C74B7991E9F89
  2108. 08B08E82821E5CF5B956BCDEB0F3292A8AD108AA64FFEB0CC4106C98810FE4BD
  2109. 687C783B27501C603CD989F14A2A0A56807471BF1CC2D4E2B235CBA28CA5E0B1
  2110. 6D8208CAAD0C4039A4250DE07287A03A4C1711DB1951607F890DBB1BD9B8AE10
  2111. E25653BD2B3F7E5866F07D2FDCB6855B65AAA49472F99CA782A902F008AB5B92
  2112. 2C940342E4D258FB7743B5F73E9DDB5070704AC3ADA2194F7BCF7AAE32859ADC
  2113. 81245A41F496C83F97C3CEAA21278195635B54CB8ABE598C9092034E19B13C4B
  2114. DBBA0197A38AA441FAC778F435B744FD8A086D05F3D0C97318725E3B24438688
  2115. 082886EA3C068D45AC1F1B404F39DC705B8CC0F6C1AF2929733A7FADA5C8BE3B
  2116. 302667B9612E013D1A0AF4E4F83DCB1A0324CA7D5A036D5C0BB5670DDB904255
  2117. 829EFBC051E8D31E948D123CAF36832BB25487385CE06EEC0A53E66A785118F4
  2118. D9F034FC4E903FC910C2DD83A9EBCDDF1610B2DBCB6EAE85CBA7D0FCFEE888CC
  2119. 7FFDEFCBD5737257127A6AC154766CA4AE15FD414A76064823F31457241DB297
  2120. 5D523B7CFDAC57C03F5C5296CE274C11555E017876EF634FA96FB94E96DC2D0E
  2121. 437E119950277E7E602642104D9BB6DABACC4AA136286FC74158421FBA6D9C1B
  2122. A0E3A080CB1E4463CB90DC8A841CD8A6797B15AA35A3A38930B1009E63C4D6EE
  2123. CAB8E869C01D18623ED40825C75260C7BA8A5A0847661FEE0F6B879DE128EDD5
  2124. 367CC0D134374CC5FBCC1DDEA0E7B467FB68A6306D7C7C3F523B2AECD6C05A0A
  2125. 8366D4EBC86DC80B2B0BD44F9515593C1E7C135233EFBDACB6C767890A7DD9CC
  2126. D7E506C19B6F8D5D91FA20CF96E4D87948F87B91E7273975069C907199D36165
  2127. A282C7C6EF26A732F12A2661AB1FC21CBE13E07D84E81C83C06CDDD7CDFD1D6B
  2128. EFB5B196144E026FD76EF7A00B6781985096240AD78AD226ED88CB897914239C
  2129. 1FB71612CFD5FC6630CBFAF0BBB88A5D0EB528D09D059CDF59E500979E292B3B
  2130. 57E1F7A9FBAE495A2A25D5A813D70A3BB2B2CB9369704CE85F5ED2FA84096D5D
  2131. 15D9912FD5B739495E4D6B5FC5AEC00CBB631666A10C443FF948B8BD40190510
  2132. 310F0BE1B88E80F8DFB0CEC4678B4116EBDE50A4756AA163C01B3515A52556C0
  2133. CC15AC8932A66D7782371D3D4884B50E1295C517FC56BE02DD307215B5D8DF47
  2134. C67E368FECE8B6F177E046B1661EA6B78BC249D2BAB2839CB02BF1A08D2A0093
  2135. B1C31CC8D3F0AB46E2E7AD3F18724F954537A0FCB6836AAAC07A12A849CFCDF0
  2136. 3557FDC0F4A6D6EB8097809E91C500F1BD05D9F5DF57D97EF005F8045A401430
  2137. 119AC825F0A39183910E8B0270EEFE25FE69647AFAA25660245149588CC91B69
  2138. CE6C378E8C16EACC724DDDDF8051C0ACF6E5F354434811A221F730982F88CB6F
  2139. 3C31D886D7DEFD2D2A6C7D92F852756B40ADF44CF03F029D67DF3260F1FB8C7A
  2140. 2BF25CA6737BAB9AEC3BE02F92807C4ECB72A00C8F293984C182C0AC800649F0
  2141. 0C304A05F785A07C30C6867F8562ED2FE904B4C5AE46B4770CC44C5B09FC21B0
  2142. 13CF5B5A0637610D02E18F998F8132552E835373A2C1A32D4CA1255DFAFB4FC1
  2143. F2F5EBD88EF330BB590E77B99FA4F719512D36E8A28C2013F5C2F59A46F0792B
  2144. 732E027546FDA56BA1B42B000749048338277FAD0E908C48A1B8FD98E4EA36D0
  2145. 7A87F9D46CC4063189700AD11B06A9345D1A7482BCECFE99AEB90F3B272BCFC8
  2146. EE865A632AB4A611CAD82809B7222E0355E991C525AE6E8CCDE226F4902BF46D
  2147. 68C5D4347EB2DD950F79DAF6854FECF2736A98EFCBCBB6210AE02883BE3D2874
  2148. FC615317B101D4DD8E99CEB62221D4835821CB15EFD2829E58B3F2115557F9DA
  2149. B68BD41B82405E2DF06FD014028473D4A9BAD6B23814FE6058664FECDA0084F4
  2150. C01F1149FE56AA0AE2654BA35005C897B2DAF5748CC962C2E032AD6D106CAECC
  2151. B7E2F826503FB1AF684AEE51128392A79202B542526CAF3ECED83E255B5E95EF
  2152. 13A515730B5FC898BFA5527B169A266871978FFA3BFECE3465E9F0918267336E
  2153. 1AD51FD579661F3E2FAA54D811386573C91A067182F89C90FF5C9EF7B504550A
  2154. 98C06A18D3DC68E1353F24178F405B52C4D828BC4629665F1C31F622A6C3778F
  2155. 1EC2ED337020C0455852748C0477712A9A9258BE55982B1513F5F6C757234D7E
  2156. 5794128D987CA70C0B2426BAD85278168C02851FCE51FC902B59CBFAFE44700E
  2157. C4BF98885A90F67224F70B89E83F0CC5BD0202C8FB94B5128387324CFA01A300
  2158. 38717F7C7886864E96BE12CDEF64CEFE78EFC1A19CB1E86D1877DCA0CC3F8CD8
  2159. CD0F59A51195C2C9034503D37E933605E9AFFFF484E609713B305FF97E0E67C3
  2160. DC64A60D8D6C06DD4EABA945794971536551F1DACFB0B44BBB5C6C03E2DD6B27
  2161. 14E8763FF3FEE99C5927A7BA24151AA1E689A93DA064E3D67AFC307EF6C35017
  2162. FCC95D54E9AA0644CFC3C63D5BD8B7FF5556A33FE9CE9D1E5EA901DAAADFCE37
  2163. D2BAAF5BC27B237E98C0A377E6FCC4421E4DE9FAFDE02E98DB2DFBF8CDE3FBC5
  2164. 013A8AE55B8684AA6911BB98E3613C76B167B382A097FF896B2A0E74F1206E01
  2165. B3C5CFB1EE1ACA2C255D1274B4D2D1A48D45A423714ECCF6A1D4CA22B9ABA26B
  2166. 04BD6B9F73EAB95C0247FDFD9E7F97A02DBD8119C5CF0B4AA548F1F5EE75D604
  2167. 8EA67AB4E1DD05CDD42DA117D5956FFE7111F840E4C1BE1E185A26488ED6138C
  2168. F334D63A75CDA61E1FF2ADE6B0BCF0115B22E5DC4AC9B7F548EC241A23A1EADA
  2169. 862B5FDAB718C82A641F16AE17384099CF4626112D7A8432CA3BC75E4CA0C1DC
  2170. BB6CD5E7C8C13A0433248ACFD8C6C575339D65D36A050755346351B067C5AA3D
  2171. 8E7009B621DAB35992D9A0152EF4B0116D73918CF298CE66E65983EA230EF272
  2172. 2AF3C11A75FC00F088F10DE2078E17FA0A86A5017656773E7A78CCCAD5FE5DF0
  2173. E2B12476968B3C810EF05B694C7382F0E456C66377776EBAB2E91AF0BAA75B8E
  2174. 9F4441F44299A17CCED52E42690F9808BF40C0FF302E4E863FEE467B256530D4
  2175. 492AE7E4E3CBA90F50E8BAF9435EBFD66F96D2F6B56E6DF1561215B3FB914BF3
  2176. 5145019FE5D64BD02ED194C16B0DDD9A95990FB45E3B2D0748BC03C10426F7C2
  2177. 9944270D4685080BFEF325C6AE3E80A85C51C6F396053B668EA3FC26B184488B
  2178. 73E32595B2F9E20452010BE1C4198E61EF35377E26C7418C9109DED708E6F2B7
  2179. E81EFAF7223E9D7B39DEF7203248BB6D5ED9A6085015A910D79DC805755E7349
  2180. D3325CD8FEC4EF92A62D7FCB0124DE9784FF7538DC0F88112C0E8D91E5330592
  2181. 365A596B476771FFBBD4D26AFED71E4D3ABA38C1B4E6E70AC894127775162D04
  2182. 38F882845B8A24DD727265B9A00DB2CD8A2335B62CA1D8384D4869BD9004CBEC
  2183. E7F6E076CEB082F2181EC00A02086AB67E1C1C169DDA45421F3147EA6A83D9A5
  2184. AB62BFB6331EC4402AD38946586271DB18A16060443C39EBB772EEB1676A7BC7
  2185. 9496D1AB014EACF1FECEC8B0F9ADB1BF8B86622B59217A82A3F04A25249764D2
  2186. B96DBF7ECE8BCBBCDEE47DBFE261133D308191E7238A29180331655D1020650E
  2187. D38A6B064FAD045F72BD2D398BE3C3E5A83A18FF4A412EB9E00603DA2CDC3B14
  2188. EE62296357F8D5874FD2AA4D03113B2FD8EB13A2D60DDF24F256AFDF77A45229
  2189. EC137EE6EB0287D844553F700CED038848C4C8750AD3866456516451017258BD
  2190. 9C697C5D32A76F09D7A8C254B9C5C2DDCCA660F4C3AA0CE53D46FE3638776CA7
  2191. A2CD66050ECAD1EFA8FAF51BDB38B0C87FE463A770B720518FB1E53552C9B22D
  2192. 4261139AE308DA8131FF5327DB6FFA1036A915059558FA04ED277A05124BABCE
  2193. 10AB83D2E4F695AAA8639A868123586D2CA48DF9D6F8A2F2E276773CAD3BCEDC
  2194. DC9E31940EB7E7CDDDF3A1EABE284887078F12DEEA72A9E9F4065D4E78963C20
  2195. 6722C6B9666129A35F3755BF6AD9C3C2B3F85320B681D5427D626CC2779820E8
  2196. 19288B4297AF557CD13CF5FB7180976EDFF8599102CAF7952B713353DA4BEA83
  2197. F0986EA344816FA917B3D0F963892C7A014A3AF8DD342F6BD1F76809C32539CC
  2198. 0EAD16213FCF9E1B9514BCE0D709937FB49C5F4185B55E7E81A66D846705F7C5
  2199. E94EBA49FC91D3F2E48B6DF16F458083B608401FAE94B497163F9B0B8E742902
  2200. AAFBC490EE32DC5D0AFAFF0687C7FB5DDAAC7A57AD4976E0E3CFA6C9371F846F
  2201. D883778FB61A73D3A48EC0C5B094ABAAB4AAC5248E26DEAB9C979FF3205B4537
  2202. 567C87A6C7ECB4241699220D8D7390DF63C7807A0CB53E4329D43293911FBC17
  2203. E30B44DC50AEF256BBC31178398C4DF5CC29653F7A57A5A62886457112DC9E50
  2204. 8B7D1554886865FDB773B808F6AAEE66FFAAC563BB0598DE1E9EA16F80647ED5
  2205. 42E05C22F8B6B8EDFC62622ACFFE1B70435944CEF1A8E7F5960FCBB61481BBF3
  2206. 7BA477D050162DAE6780FA95EB214FB43F2A26ECF25D6C04879555BFB2254968
  2207. AB62809525B45C7C992E8920BFEADC6369BAA2944CDEDB8CB0483D3084998AD4
  2208. FF32DB9D6EAE0DAD8BFA6CB486438D247D0230ABD1DCE1B08E27EBE8FE0749F2
  2209. F0E785E2DEBB3C71CE1471CD5F9A240F1F64C95C01AB8D7469AAE659936D2AAB
  2210. F6655B55C7CDA148787BED94A61667CE1D354E205B9BF74E4155297E324C8C9E
  2211. C88FB05D871D43A27E2CFFBFA6459AEDB6C7A96847EF66B919660191C5125AE3
  2212. 00942526F12590D8A239B8AC70E319262AF6A41E4B47DEEFEDFB47D236F1DF48
  2213. 8EA9100D499A87C0AD14456A7C2D9BF139C9AE75C932AB97EBC00AE1A2260C9F
  2214. 274E1987C715206297C0971364CC5B83001B07895F0899578367724E6A766249
  2215. 9EA3FCC278B616531C0CB5BFDCB64AC341B307C9106E1820F9F1844DD2EC4C5C
  2216. 58AEE4A797F739879F1507A6001113B11FCC641D676CD122C27D761DC1D072CD
  2217. 01B49DAA9AA7801CDB41A857C056D0DB5D3D709E67CA767DC3D20929B797E1AF
  2218. 1E95D497EDDADF29B22F885988C306058ED73421F9D738DBD7B92E8CCDDD2FD9
  2219. 6D9E404038CB57A801878980B52AFEEBEF37C6C0F2D5F535AE93682E855B1BDD
  2220. 6CE95562728102D9A94F975BC8E57910FE940125A576E4B9BBD3857757A5282D
  2221. D75BBCA2375339927906533FC039FEB875D8478038553D70B02DA2F49827CCF0
  2222. F39BE0C94CAF9E06D5CFACE7F841AC1F60D78689111BFA6B2D1015854A44670D
  2223. 9B39B2727EAE5E6461785699A9874041AF09EF49023B2563E4DEF11001EEC437
  2224. E5CB5B472FEE740BCF8F66A78D34DFAD300E9AAAC9F759F9F013EFD3A84C1A66
  2225. 3BBF1D48BC7F49DD327C3F8AAAEB579053727B09E71C5CE2AEDB8292521B0199
  2226. FEE1A786CE64B144BB22F85F23639AF5C05AB13DD3BC7529C6E30301F4A47724
  2227. 6EA5F6A79C01F6DE258F420A7D2C587659A74FE3CFDEBC39A648F32251E3D4D7
  2228. 8A86A83507BDD9ED3B8FDF695DBE4E3124927AFCDE236C3EDE62F4E58439CCB1
  2229. A749B717C5E63C360F3FD2350719174C62FAEAF9AC8453495E18E362289F043C
  2230. 6AEDD728D00CB2909DD9485E58C7FFD18A36DA319D345A414312EA7C9B6D5179
  2231. 8CA4F5A5D77C27ED1D759E61DC92F358DFDD1A02EDD00B90A3A4335C6936A382
  2232. 1D250453B717ECB74A6D17529E5A19177BBF30C4399A266CE0B3208E7F3A8A94
  2233. 725C551D372AD585BB4189795DC7DADF2A16E39699926928CECDF3CBB46E2844
  2234. 16D53C0A0FB5538245F2C50180D862386F0D8AD8488BFA8F95263276EF383141
  2235. 916F7D407CEBD55EB56E4250FDA4D0E440C8F5DEA18BC3044EA029EF870FEAA0
  2236. 55987B3C5C67D702AEBF0B8C4B3CCA6B9CA76416155347AB06C07F7C75F7135F
  2237. AE59A0D5C82F1E3120A19768AE4DBEC6F9D15A5B5960F824BD1722BEE8B12C81
  2238. 9558517E779F53090C4C06B1E73F7CE17398E7062DCA91768C2C166FB5E6B53A
  2239. F97EEF94288093588C23F973474E36ED0DAE8E0656344BDB08C929F9B9154BDD
  2240. 82114A374DA1A4C51222C3071096DB292B073FC06823ACDA165E764ABE2D6DF9
  2241. 572C5A715DFFEDB310C4F6D89062B19D64426AAB2A53A756D70E2F81C4A30752
  2242. 21ABC2EC45FA2113B383D0ADD1D7A1DB69DC128F8D406354755359DF06CB1341
  2243. DCC25E368C6F0A3C721ACA146BDBB402BF674E3EE7BB16B16AC95599776889FD
  2244. C6E22BDC1E924E1C6F28DEA9FE19FDC4AD5B38CE04E4C555757F69C669C5EC40
  2245. 35960FEF610A2A93B4883DA220360E10B92ABC0E14777F25FFF308D19B5533BB
  2246. D35EAF86771B8AD9C1CCB20795815060671187A075E0F09CB31C059ADB0351F9
  2247. DA69CEEA6D4DD0A6D87EE94E783D9B3A2F97C83025DD7225A6D2D930937DAB9B
  2248. C3FDBFAC578A525BF8B960B22DFFC5E8C94A16581287CA52C91C957F37ACD579
  2249. 854CD11DE164CFA82CBC29FEDEE39359C351BA8960636ADF062E97D0A7B1E931
  2250. 45F56A06B7A32A8770B7B2AE12CA40CE4F6FFE2394DF0196EA4BCB09F019123A
  2251. B92002863D00FFD52D7B74316AD3CFA839A3F2726AFF3A2E092658E4EE26D36E
  2252. A55892105E54929F64A3C8A01C8DAA5F5DCA23F25DBE4DABB07F7BB64332BA41
  2253. E584EEA50F61F4C70488BDEDD5C13502BF3FA332F028FDA591442B82FBABDCD9
  2254. 0DBBF08324D5FD6E41AC5825C8887B6A01EDE4FF82800871C2057CC38194BD29
  2255. 7E4FFF27C7AAC514A42B4650DB74B525EDAFECF8A055EAE81C7D2B8D845D3F92
  2256. FED54F0C578D5760BF6A389251D6969B8AF3AD360A8CC37C6560C3DF99FD8A37
  2257. EFDA8A3CCF56AD9EE9F5DC024793D5465513E42E548F64A50ED78AEC9D62E0F9
  2258. CF61EE0E9C484271E660F7610CF4967A07793C3BDF468C457D0FCAE2AF82ABBF
  2259. 59E7E01EB6A7FBA4F7E2CB0727559E95BF65BCCD8580E3B39391DA58096830FB
  2260. 6A44FBDC6D04C03425FD0B0E5186F6949A70C40B3E6AAB5B0440DFAAC58F8FAB
  2261. 1F5AE6A7B8DE3F5E89FCED37E45A5A6790083D83A51C08D9C48CBADB1212E150
  2262. 60265B49FF4376FD6D673538755F135C333B87D339E8C580C44EC9A7A30B6625
  2263. 99D231A1D39AB6BD9718F0B6CF46F89985CEF0DFCB947527D857FD477BA50486
  2264. F6864CB7AB263AD03B2FC0EB1FB311A759FE260C1E6EACFA52E8B820C806ED44
  2265. 0128CDCB4D31C8E5E6DB585C2DD28B5C0305C968BD99B7FAD5AC9FBF383B3364
  2266. B50D5860E9A1646A92A948FCAB9336BC2301C2B38FD9308BDC1A1B3482A99DC9
  2267. 0D8E3DB0DE80DB56E28E37B8A1E5EA3A48801CC51BE0EA9DF6F9E782EAE32417
  2268. 8B35316D55536783294509A4B45C6DD4E31161528870007CCA3A03A80A8E3901
  2269. B6A63156178096D29EA4C47D97998984A2DB27C561C650AE1C4CEE12254DD6EC
  2270. 68DEE62A7C503538F9EB6C93C33B2E26E96B6F0556D49923D63173C465D72522
  2271. 3A9BDB090896635030197722AB644595F7860F1538363AC208D06A7A6CF2401C
  2272. 8E0965B02D39CCDEE8A4F5B8BF9907DB4325410E297D9CB2CE808E380D41EBEA
  2273. 85F76EB50E649E488A00C554429F72F81976F8106FC0C276C9CC7046E706B69D
  2274. 795DB3D6A419D82BF5D03DE88DBCF05DDD9894C7BFBB36E142D94194E5FC2564
  2275. ACD7935C70EA1D4EDA14546CECB44BF33E814414FE058B297A459BFBC87B0C5E
  2276. 6F7F3C437BA65A9CA6FF7677680B4C952464C9C5EE646AE2E2DF81E278A3AB93
  2277. 59A878A64E913E80CC61A9FAD8F5344525EA820AF443E9FF5A66AED00E032A02
  2278. 772B16F6E7154C570048AD99925459B26B5029F205D3607DB7466631822AF1BA
  2279. EFB301E6900AC2B6587EA6467119F1E155676D10A8A35955BADB667DB10180DC
  2280. 3FF1F349A85B3B6F37E3D2C3568B2F7CB6399399227A8B5E57E07CF0A0966ECF
  2281. 94F269208FB8CC62857041C9FC59A20559123B2FA6D205481C5ED463B7C86D68
  2282. 9FB1BC0C58945E6ADB0C8D23AFA307C8FE29500285533B655C1937EBAFEC10EC
  2283. A86DBCD6F5952BE0BF5CFA2823DC0B4446B6DD0CE1A3C2789BAA8EDBF601954F
  2284. 822D4E24036188D2FA5B509BA494A3D8B06BB40FCE18847A7C37177F9205A54C
  2285. DDE6C18F0F08CE2C64EE3D49A20E199EE65CAD9BF6CBF65B3FEF9D1EEB0A8E49
  2286. F4D3FE3906A402F3A83FCE99A66836887C4DD03E3C301DE453159AC21BCC5E60
  2287. ACA3055F5158F421692C0781A7D86C4992DBE324E8522DEA6905E575664C54D0
  2288. 96CC40E931BEB0DB97915ECD4E22110611AFF72828738766E141DA8E763AB013
  2289. 4DD46C874040B818E4C4C46808CA507649300205DB6C91A2E9B3689A3C0B71BF
  2290. D46020CAC298DAE79EA13125EB30286BB2EA4FC1F3713DA45BB75A437056F3AB
  2291. B1BF8E6062C0BE4D3B29D33D125360262F3EE3CCE223B4BAC7C5D6FE40369A4B
  2292. 337AB1C90DA70D3B642C704CCDB71D028E2D8AA0A0D327F6EA8748CE3160FA44
  2293. 9A62AF7017C34F2CED95F7671D5A3B0D12BDECDDC8544CD4D4F49D690371C152
  2294. DB3C7D7CBB194D72A6B45809392E017C12D396EE579D2F20575F4C33F4C3A0F9
  2295. 6E7C851814C621C8DFDC0C70E460C965090A1C0219CB2C93B90905347BD6BC5E
  2296. 0718AFCF3851A3B87FD315E0002AF4A802AA812845344440663E6021728E0B8F
  2297. 4BC3E299E36C8B8CE54E9DF93DB9BA83386E2965D4D3A67B0B9D9C4193EB7AAA
  2298. D199104DBC16E0284849374672AEC232112AE5A2583C8C7A4D029F9025F71288
  2299. FA99B6F38BBAA6902A649E9B1620E1C0D3B624A248F2B3FB6CE020BE14A2349B
  2300. E0CDB99D92A6F38D544B3AF01415C614DB3D81E0400F77609797E9A78D393F2A
  2301. 49B6A6B1D0CAD7A3119C1116A1A9FD80AAD708B6888C37B690D9D0DAE2D3B140
  2302. 189B6FFC3318AEF2FDB3245116844031D8451FE4FF72E37B9C6B2ADEF553D635
  2303. EFEEB448413005EB917ABF52F9C49F61E1BFDDEE486EDAA318179970C21CE3EE
  2304. 0627E99EE2EF25427B6D74B92360FC99092A8987773C69641E51214A313F7390
  2305. A0C5C76C4F3220166B436E1CDFC7EEB82B868957A311CD66A2DBAB9CC5B342D4
  2306. EA043815D0F2477F836B5F5C0EF0C090C982526E7E4374996649592D2AB3855F
  2307. E479988295F4C399E13D1DAEBF1955E65283E6C56C2062C0AAB9AE10359750F3
  2308. 068FA2C7DE5FB20B10D9767864E1AE7CD1A525F9A947C24CEBCA6346E0647239
  2309. D61D21226408845D43BF310EB1D37D26429565208D736318FC9A68B5E920B476
  2310. B00EF7E1DC7AC0A5D461D2661324C5C20B6AA62D12B10ED201A9F16EF86BA7B8
  2311. 17ABB2DC2EDAAC018B7CE246E601380C92F9BA09518B71908AB541BA1352921E
  2312. 5DCF981F18332FD10EF7CA384FB1273DDC76C7E38968E353814BD73CBA65BAB8
  2313. 980F847604393F62BDAA312D4F65E906337D35FAD3C7243C235E32647596AC1C
  2314. D2197B4FB57A6E
  2315. 0000000000000000000000000000000000000000000000000000000000000000
  2316. 0000000000000000000000000000000000000000000000000000000000000000
  2317. 0000000000000000000000000000000000000000000000000000000000000000
  2318. 0000000000000000000000000000000000000000000000000000000000000000
  2319. 0000000000000000000000000000000000000000000000000000000000000000
  2320. 0000000000000000000000000000000000000000000000000000000000000000
  2321. 0000000000000000000000000000000000000000000000000000000000000000
  2322. 0000000000000000000000000000000000000000000000000000000000000000
  2323. cleartomark
  2324. %%EndFont
  2325. TeXDict begin 40258437 52099154 1000 600 600 (gmt_eq.dvi)
  2326. @start /Fa 135[37 3[23 13[23 102[{ TeXBase1Encoding ReEncodeFont }3
  2327. 83.022 /NimbusRomNo9L-ReguItal rf /Fc 136[41 2[17 116[{
  2328. TeXBase1Encoding ReEncodeFont }2 61.4362 /NimbusRomNo9L-ReguItal
  2329. rf /Fd 155[30 100[{ .167 SlantFont }1 61.4362 /StandardSymL
  2330. rf /Fe 194[65 19[32 32 40[{}3 83.022 /CMR10 rf /Ff 203[31
  2331. 52[{ TeXBase1Encoding ReEncodeFont }1 61.4362 /NimbusRomNo9L-Regu
  2332. rf /Fh 46[59 119[66 89[{}2 83.022 /StandardSymL rf /Fj
  2333. 137[42 42 23 4[42 42 1[23 2[23 42 42 1[37 3[37 13[46
  2334. 13[51 69[{ TeXBase1Encoding ReEncodeFont }13 83.022 /NimbusRomNo9L-Regu
  2335. rf end
  2336. %%EndProlog
  2337. %%BeginSetup
  2338. %%Feature: *Resolution 600dpi
  2339. TeXDict begin
  2340. end
  2341. %%EndSetup
  2342. TeXDict begin 1 0 bop 639 523 a Fj(Ev)n(aluating)19 b(the)h(Solution)f
  2343. (to)h Fh(\321)1586 493 y Ff(4)1621 523 y Fh(Y)f Fe(=)1799
  2344. 490 y Fd(d)8 b Fc(w)p 1799 504 79 4 v 1809 553 a Fd(d)e
  2345. Fc(t)1906 523 y Fe(=)30 b Fa(f)12 b Fe(\()p Fa(x)p Fe(\()n
  2346. Fa(t)6 b Fe(\)\))p eop end
  2347. %%Trailer
  2348. userdict /end-hook known{end-hook}if
  2349. %%EOF
  2350. %%EndDocument
  2351. PSL_eps_end
  2352. U
  2353. 0 A
  2354. %%EndObject
  2355. 0 A
  2356. FQ
  2357. O0
  2358. 0 6300 TM
  2359. % PostScript produced by:
  2360. %@GMT: gmt psbasemap -R-30/30/-20/20 -JX6i/2.5i -Baf '-B+tEvaluating Some Nasty Equation' -O -Y5.25i
  2361. %@PROJ: xy -30.00000000 30.00000000 -20.00000000 20.00000000 -30.000 30.000 -20.000 20.000 +xy
  2362. %%BeginObject PSL_Layer_2
  2363. 0 setlinecap
  2364. 0 setlinejoin
  2365. 3.32550952342 setmiterlimit
  2366. 25 W
  2367. 0 A
  2368. /PSL_slant_y 0 def
  2369. 2 setlinecap
  2370. N 0 3000 M 0 -3000 D S
  2371. /PSL_A0_y 83 def
  2372. /PSL_A1_y 0 def
  2373. 8 W
  2374. N 0 0 M -83 0 D S
  2375. N 0 750 M -83 0 D S
  2376. N 0 1500 M -83 0 D S
  2377. N 0 2250 M -83 0 D S
  2378. N 0 3000 M -83 0 D S
  2379. /MM {neg exch M} def
  2380. /PSL_AH0 0
  2381. PSL_font_encode 0 get 0 eq {ISOLatin1+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  2382. 200 F0
  2383. (-20) sw mx
  2384. (-10) sw mx
  2385. (0) sw mx
  2386. (10) sw mx
  2387. (20) sw mx
  2388. def
  2389. /PSL_A0_y PSL_A0_y 83 add def
  2390. 0 PSL_A0_y MM
  2391. (-20) mr Z
  2392. 750 PSL_A0_y MM
  2393. (-10) mr Z
  2394. 1500 PSL_A0_y MM
  2395. (0) mr Z
  2396. 2250 PSL_A0_y MM
  2397. (10) mr Z
  2398. 3000 PSL_A0_y MM
  2399. (20) mr Z
  2400. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  2401. N 0 150 M -42 0 D S
  2402. N 0 300 M -42 0 D S
  2403. N 0 450 M -42 0 D S
  2404. N 0 600 M -42 0 D S
  2405. N 0 900 M -42 0 D S
  2406. N 0 1050 M -42 0 D S
  2407. N 0 1200 M -42 0 D S
  2408. N 0 1350 M -42 0 D S
  2409. N 0 1650 M -42 0 D S
  2410. N 0 1800 M -42 0 D S
  2411. N 0 1950 M -42 0 D S
  2412. N 0 2100 M -42 0 D S
  2413. N 0 2400 M -42 0 D S
  2414. N 0 2550 M -42 0 D S
  2415. N 0 2700 M -42 0 D S
  2416. N 0 2850 M -42 0 D S
  2417. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2418. 7200 0 T
  2419. 25 W
  2420. N 0 3000 M 0 -3000 D S
  2421. /PSL_A0_y 83 def
  2422. /PSL_A1_y 0 def
  2423. 8 W
  2424. N 0 0 M 83 0 D S
  2425. N 0 750 M 83 0 D S
  2426. N 0 1500 M 83 0 D S
  2427. N 0 2250 M 83 0 D S
  2428. N 0 3000 M 83 0 D S
  2429. /MM {exch M} def
  2430. /PSL_AH0 0
  2431. (-20) sw mx
  2432. (-10) sw mx
  2433. (0) sw mx
  2434. (10) sw mx
  2435. (20) sw mx
  2436. def
  2437. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  2438. 0 PSL_A0_y MM
  2439. (-20) mr Z
  2440. 750 PSL_A0_y MM
  2441. (-10) mr Z
  2442. 1500 PSL_A0_y MM
  2443. (0) mr Z
  2444. 2250 PSL_A0_y MM
  2445. (10) mr Z
  2446. 3000 PSL_A0_y MM
  2447. (20) mr Z
  2448. N 0 150 M 42 0 D S
  2449. N 0 300 M 42 0 D S
  2450. N 0 450 M 42 0 D S
  2451. N 0 600 M 42 0 D S
  2452. N 0 900 M 42 0 D S
  2453. N 0 1050 M 42 0 D S
  2454. N 0 1200 M 42 0 D S
  2455. N 0 1350 M 42 0 D S
  2456. N 0 1650 M 42 0 D S
  2457. N 0 1800 M 42 0 D S
  2458. N 0 1950 M 42 0 D S
  2459. N 0 2100 M 42 0 D S
  2460. N 0 2400 M 42 0 D S
  2461. N 0 2550 M 42 0 D S
  2462. N 0 2700 M 42 0 D S
  2463. N 0 2850 M 42 0 D S
  2464. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2465. -7200 0 T
  2466. 25 W
  2467. N 0 0 M 7200 0 D S
  2468. /PSL_A0_y 83 def
  2469. /PSL_A1_y 0 def
  2470. 8 W
  2471. N 0 0 M 0 -83 D S
  2472. N 1200 0 M 0 -83 D S
  2473. N 2400 0 M 0 -83 D S
  2474. N 3600 0 M 0 -83 D S
  2475. N 4800 0 M 0 -83 D S
  2476. N 6000 0 M 0 -83 D S
  2477. N 7200 0 M 0 -83 D S
  2478. /MM {neg M} def
  2479. /PSL_AH0 0
  2480. (-30) sh mx
  2481. (-20) sh mx
  2482. (-10) sh mx
  2483. (0) sh mx
  2484. (10) sh mx
  2485. (20) sh mx
  2486. (30) sh mx
  2487. def
  2488. /PSL_A0_y PSL_A0_y 83 add PSL_AH0 add def
  2489. 0 PSL_A0_y MM
  2490. (-30) bc Z
  2491. 1200 PSL_A0_y MM
  2492. (-20) bc Z
  2493. 2400 PSL_A0_y MM
  2494. (-10) bc Z
  2495. 3600 PSL_A0_y MM
  2496. (0) bc Z
  2497. 4800 PSL_A0_y MM
  2498. (10) bc Z
  2499. 6000 PSL_A0_y MM
  2500. (20) bc Z
  2501. 7200 PSL_A0_y MM
  2502. (30) bc Z
  2503. N 240 0 M 0 -42 D S
  2504. N 480 0 M 0 -42 D S
  2505. N 720 0 M 0 -42 D S
  2506. N 960 0 M 0 -42 D S
  2507. N 1440 0 M 0 -42 D S
  2508. N 1680 0 M 0 -42 D S
  2509. N 1920 0 M 0 -42 D S
  2510. N 2160 0 M 0 -42 D S
  2511. N 2640 0 M 0 -42 D S
  2512. N 2880 0 M 0 -42 D S
  2513. N 3120 0 M 0 -42 D S
  2514. N 3360 0 M 0 -42 D S
  2515. N 3840 0 M 0 -42 D S
  2516. N 4080 0 M 0 -42 D S
  2517. N 4320 0 M 0 -42 D S
  2518. N 4560 0 M 0 -42 D S
  2519. N 5040 0 M 0 -42 D S
  2520. N 5280 0 M 0 -42 D S
  2521. N 5520 0 M 0 -42 D S
  2522. N 5760 0 M 0 -42 D S
  2523. N 6240 0 M 0 -42 D S
  2524. N 6480 0 M 0 -42 D S
  2525. N 6720 0 M 0 -42 D S
  2526. N 6960 0 M 0 -42 D S
  2527. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2528. 0 3000 T
  2529. 25 W
  2530. N 0 0 M 7200 0 D S
  2531. /PSL_A0_y 83 def
  2532. /PSL_A1_y 0 def
  2533. 8 W
  2534. N 0 0 M 0 83 D S
  2535. N 1200 0 M 0 83 D S
  2536. N 2400 0 M 0 83 D S
  2537. N 3600 0 M 0 83 D S
  2538. N 4800 0 M 0 83 D S
  2539. N 6000 0 M 0 83 D S
  2540. N 7200 0 M 0 83 D S
  2541. /MM {M} def
  2542. /PSL_AH0 0
  2543. (-30) sh mx
  2544. (-20) sh mx
  2545. (-10) sh mx
  2546. (0) sh mx
  2547. (10) sh mx
  2548. (20) sh mx
  2549. (30) sh mx
  2550. def
  2551. /PSL_A0_y PSL_A0_y 83 add def
  2552. 0 PSL_A0_y MM
  2553. (-30) bc Z
  2554. 1200 PSL_A0_y MM
  2555. (-20) bc Z
  2556. 2400 PSL_A0_y MM
  2557. (-10) bc Z
  2558. 3600 PSL_A0_y MM
  2559. (0) bc Z
  2560. 4800 PSL_A0_y MM
  2561. (10) bc Z
  2562. 6000 PSL_A0_y MM
  2563. (20) bc Z
  2564. 7200 PSL_A0_y MM
  2565. (30) bc Z
  2566. /PSL_A0_y PSL_A0_y PSL_AH0 add def
  2567. N 240 0 M 0 42 D S
  2568. N 480 0 M 0 42 D S
  2569. N 720 0 M 0 42 D S
  2570. N 960 0 M 0 42 D S
  2571. N 1440 0 M 0 42 D S
  2572. N 1680 0 M 0 42 D S
  2573. N 1920 0 M 0 42 D S
  2574. N 2160 0 M 0 42 D S
  2575. N 2640 0 M 0 42 D S
  2576. N 2880 0 M 0 42 D S
  2577. N 3120 0 M 0 42 D S
  2578. N 3360 0 M 0 42 D S
  2579. N 3840 0 M 0 42 D S
  2580. N 4080 0 M 0 42 D S
  2581. N 4320 0 M 0 42 D S
  2582. N 4560 0 M 0 42 D S
  2583. N 5040 0 M 0 42 D S
  2584. N 5280 0 M 0 42 D S
  2585. N 5520 0 M 0 42 D S
  2586. N 5760 0 M 0 42 D S
  2587. N 6240 0 M 0 42 D S
  2588. N 6480 0 M 0 42 D S
  2589. N 6720 0 M 0 42 D S
  2590. N 6960 0 M 0 42 D S
  2591. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  2592. 0 -3000 T
  2593. 0 setlinecap
  2594. /PSL_H_y PSL_L_y PSL_LH add 233 add def
  2595. 3600 3000 PSL_H_y add PSL_slant_y add M
  2596. PSL_font_encode 4 get 0 eq {ISOLatin1+_Encoding /Times-Roman /Times-Roman PSL_reencode PSL_font_encode 4 1 put} if
  2597. 400 F4
  2598. (Evaluating Some Nasty Equation) bc Z
  2599. 0 A
  2600. %%EndObject
  2601. grestore
  2602. PSL_movie_label_completion /PSL_movie_label_completion {} def
  2603. PSL_movie_prog_indicator_completion /PSL_movie_prog_indicator_completion {} def
  2604. %PSL_Begin_Trailer
  2605. %%PageTrailer
  2606. U
  2607. showpage
  2608. %%Trailer
  2609. end
  2610. %%EOF
Tip!

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

Comments

Loading...