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
|
%PDF-1.4
3 0 obj <<
/Length 1980
>>
stream
1 0 0 1 46.7715 548.9335 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
1 0 0 1 -280.6297 -19.7995 cm
0 g 0 G
1 0 0 1 -46.7715 -529.134 cm
BT
/F16 10.9091 Tf 46.7715 518.1751 Td[(The)-317(Project)-317(Gutenberg)-317(EBook)-317(of)-317(Rede,)-334(gehalten)-316(bei)-317(der)-317(Er\366ff-)]TJ 0 -13.5492 Td[(nung)-414(der)-414(Versammlung)-414(deutscher)-414(Naturforscher)-414(und)-414(\304rzte)-413(in)]TJ 0 -13.5492 Td[(Berlin,)-250(am)-250(18.)-250(September)-250(1828)-250(by)-250(Humboldt,)-250(Alexander)-250(von)]TJ 0 -29.9128 Td[(This)-380(eBook)-380(is)-381(for)-380(the)-380(use)-380(of)-380(anyone)-381(anywhere)-380(at)-380(no)-380(cost)-380(and)]TJ 0 -13.5492 Td[(with)-327(almost)-327(no)-327(restrictions)-327(whatsoever.)-480(You)-327(may)-327(copy)-327(it,)-346(give)]TJ 0 -13.5492 Td[(it)-400(away)-399(or)-400(re-use)-400(it)-399(under)-400(the)-400(terms)-399(of)-400(the)-400(Project)-399(Gutenberg)]TJ 0 -13.5492 Td[(License)-240(included)-240(with)-240(this)-240(eBook)-240(or)-240(online)-240(at)-240(http://www.guten-)]TJ 0 -13.5492 Td[(berg.org/license)]TJ 0 -29.9128 Td[(Title:)-500(Rede,)-500(gehalten)-500(bei)-500(der)-500(Er\366ffnung)-500(der)-500(Versammlung)]TJ 0 -13.5492 Td[(deutscher)]TJ 38.1818 -13.5492 Td[(Naturforscher)-500(und)-500(\304rzte)-500(in)-500(Berlin,)-500(am)-500(18.)]TJ -38.1818 -13.5492 Td[(September)-500(1828)]TJ 0 -27.0984 Td[(Author:)-500(Humboldt,)-500(Alexander)-500(von)]TJ 0 -27.0984 Td[(Release)-500(Date:)-500(September)-500(18,)-500(2007)-500([Ebook)-500(22659])]TJ 0 -27.0984 Td[(Language:)-500(English)]TJ 0 -40.6476 Td[(***START)-500(OF)-500(THE)-500(PROJECT)-500(GUTENBERG)-500(EBOOK)]TJ 0 -13.5492 Td[(REDE,)-500(GEHALTEN)-500(BEI)-500(DER)-500(ER\326FFNUNG)-500(DER)-500(VER-)]TJ 0 -13.5492 Td[(SAMMLUNG)-500(DEUTSCHER)-500(NATURFORSCHER)-500(UND)]TJ 0 -13.5492 Td[(\304RZTE)-500(IN)-500(BERLIN,)-500(AM)-500(18.)-500(SEPTEMBER)-500(1828***)]TJ
ET
1 0 0 1 46.7715 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
2 0 obj <<
/Type /Page
/Contents 3 0 R
/Resources 1 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 10 0 R
/Annots [ 7 0 R 8 0 R 9 0 R ]
>> endobj
7 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [83.3175 418.1381 192.3882 427.8581]
/Subtype /Link
/A << /S /GoTo /D (pglicense) >>
>> endobj
8 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5]
/Rect [247.0996 418.1381 327.4012 427.8581]
/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org/license) >>
>> endobj
9 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5]
/Rect [46.7715 404.5889 116.7532 414.3089]
/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org/license) >>
>> endobj
4 0 obj <<
/D [2 0 R /XYZ 46.7715 529.134 null]
>> endobj
1 0 obj <<
/Font << /F16 6 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
14 0 obj <<
/Length 135
>>
stream
1 0 0 1 93.5434 548.9335 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
1 0 0 1 -280.6297 -510.1518 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
13 0 obj <<
/Type /Page
/Contents 14 0 R
/Resources 12 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 10 0 R
>> endobj
12 0 obj <<
/ProcSet [ /PDF ]
>> endobj
17 0 obj <<
/Length 615
>>
stream
1 0 0 1 46.7715 548.9335 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
1 0 0 1 -327.4012 -548.9335 cm
BT
/F16 18.9589 Tf 46.7715 516.3747 Td[(Rede,)-246(gehal)1(ten)-245(bei)-244(der)-245(Er\366ffnung)-244(der)]TJ 0 -24.6465 Td[(Versammlung)-279(deutscher)]TJ 0 -24.6465 Td[(Naturforscher)-256(und)-255(\304rzte)-256(in)-255(Berlin,)]TJ 0 -24.6465 Td[(am)-250(18.)-250(September)-250(1828)]TJ 0 -43.5192 Td[(by)-250(Humboldt,)-250(Alexander)-250(von)]TJ/F16 15.7808 Tf 0 -51.9333 Td[(Edition)-250(1)-250(,)-250(\050September)-250(18,)-250(2007\051)]TJ
ET
1 0 0 1 46.7715 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
16 0 obj <<
/Type /Page
/Contents 17 0 R
/Resources 15 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 10 0 R
>> endobj
15 0 obj <<
/Font << /F16 6 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
20 0 obj <<
/Length 135
>>
stream
1 0 0 1 93.5434 548.9335 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
1 0 0 1 -280.6297 -510.1518 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
19 0 obj <<
/Type /Page
/Contents 20 0 R
/Resources 18 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 10 0 R
>> endobj
18 0 obj <<
/ProcSet [ /PDF ]
>> endobj
21 0 obj
<< /S /GoTo /D (index1) >>
endobj
24 0 obj
(Contents)
endobj
27 0 obj <<
/Length 218
>>
stream
1 0 0 1 46.7715 548.9335 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
1 0 0 1 -327.4012 -548.9335 cm
BT
/F16 18.9589 Tf 46.7715 479.3208 Td[(Contents)]TJ
ET
1 0 0 1 46.7715 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
26 0 obj <<
/Type /Page
/Contents 27 0 R
/Resources 25 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 10 0 R
>> endobj
22 0 obj <<
/D [26 0 R /XYZ 46.7715 529.134 null]
>> endobj
25 0 obj <<
/Font << /F16 6 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
30 0 obj <<
/Length 135
>>
stream
1 0 0 1 93.5434 548.9335 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
1 0 0 1 -280.6297 -510.1518 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
29 0 obj <<
/Type /Page
/Contents 30 0 R
/Resources 28 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 10 0 R
>> endobj
28 0 obj <<
/ProcSet [ /PDF ]
>> endobj
33 0 obj <<
/Length 4353
>>
stream
1 0 0 1 46.7715 548.9335 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
1 0 0 1 -280.6297 -19.7995 cm
0 g 0 G
1 0 0 1 -46.7715 -529.134 cm
BT
/F16 7.9701 Tf 337.795 512.8112 Td[([3])]TJ/F16 10.9091 Tf -291.0235 -10.6401 Td[(Wenn)-443(es)-443(mir)-443(durch)-443(Ihre)-443(ehrenvolle)-443(Wahl)-443(verg\366nnt)-443(ist,)-491(diese)]TJ 0 -13.5492 Td[(Versammlung)-377(zu)-376(er\366ffnen;)-440(so)-377(habe)-376(ich)-377(zuerst)-376(eine)-377(Pflicht)-376(der)]TJ 0 -13.5492 Td[(Dankbarkeit)-173(zu)-174(erf\374llen.)-224(Die)-174(Auszeichnung,)-188(welche)-174(dem)-173(zu)-173(Theil)]TJ 0 -13.5492 Td[(geworden,)-347(der)-328(noch)-328(nie)-328(Ihren)-328(denkw\374rdigen)-328(Vereinen)-328(beiwoh-)]TJ 0 -13.5492 Td[(nen)-262(konnte,)-266(ist)-262(nicht)-262(der)-263(Lohn)-262(wissenschaftlicher)-262(Bestrebungen,)]TJ 0 -13.5492 Td[(einzelner)-298(schwachen)-297(Versuche,)-309(in)-298(dem)-297(Drange)-298(der)-297(Erscheinun-)]TJ 0 -13.5492 Td[(gen)-274(das)-275(Beharrende)-274(aufzufinden,)-280(aus)-275(den)-274(schwindelnden)-274(Tiefen)]TJ 0 -13.5492 Td[(der)-400(Natur)-401(das)-400(d\344mmernde)-400(Licht)-401(der)-400(Erkenntniss)-400(zu)-400(sch\366pfen.)]TJ 0 -13.5492 Td[(Ein)-303(zarteres)-303(Gef\374hl)-304(hat)-303(Ihre)-303(Aufmerksamkeit)-303(auf)-303(mich)-303(geleitet.)]TJ 0 -13.5492 Td[(Sie)-226(haben)-226(aussprechen)-226(wollen,)-231(dass)-226(ich)-226(in)-226(vielj\344hriger)-226(Abwesen-)]TJ 0 -13.5492 Td[(heit,)-333(selbst)-316(in)-316(einem)-317(fernen)-316(Welttheile,)-333(nach)-316(gleichen)-316(Zwecken)]TJ 0 -13.5492 Td[(mit)-289(Ihnen)-290(hinarbeitend,)-299(Ihrem)-289(Andenken)-290(nicht)-289(fremd)-289(geworden)]TJ 0 -13.5492 Td[(bin.)-613(Sie)-371(haben)-371(meine)-371(R\374ckkunft)-371(gleichsam)-370(begr\374ssen)-371(wollen,)]TJ 0 -13.5492 Td[(um)-303(durch)-303(die)-303(heiligen)-304(Bande)-303(des)-303(Dankgef\374hls)-303(mich)-303(l\344nger)-303(und)]TJ 0 -13.5492 Td[(inniger)-250(an)-250(das)-250(gemeinsame)-250(Vaterland)-250(zu)-250(fesseln.)]TJ 11.9552 -16.004 Td[(Was)-288(aber)-287(kann)-288(das)-288(Bild)-287(dieses)-288(gemeinsamen)-288(Vaterlandes)-288(er-)]TJ -11.9552 -13.5492 Td[(freulicher)-376(vor)-377(die)-376(Seele)-377(stellen,)-408(als)-376(die)-377(Versammlung,)-408(die)-376(wir)]TJ 0 -13.5492 Td[(heute)-291(zum)-291(ersten)-291(Male)-292(in)-291(unsern)-291(Mauern)-291(empfangen.)-373(Von)-291(dem)]TJ 0 -13.5492 Td[(heitern)-278(Neckar-Lande,)-285(wo)-279(Kepler)-278(und)-278(Schiller)-278(geboren)-278(wurden,)]TJ 0 -13.5492 Td[(bis)-417(zu)-418(dem)-417(letzten)-417(Saume)-418(der)-417(baltischen)-417(Ebenen;)-501(von)-417(diesen)]TJ 0 -13.5492 Td[(bis)-265(gegen)-265(den)-265(Ausfluss)-265(des)-265(Rheins,)-269(wo,)-269(unter)-265(dem)-265(wohlth\344tigen)]TJ 0 -13.5492 Td[(Einflusse)-255(des)-254(Welthandels,)-256(seit)-255(Jahrhunderten,)-256(die)-255(Sch\344tze)-254(einer)]TJ 0 -13.5492 Td[(exotischen)-432(Natur)-433(gesammelt)-432(und)-432(erforscht)-433(wurden,)-478(sind,)-477(von)]TJ 0 -13.5492 Td[(gleichem)-365(Eifer)-366(beseelt,)-394(von)-366(einem)-365(ernsten)-731(Gedanken)-365(geleitet,)]TJ/F16 7.9701 Tf 291.0235 0 Td[([4])]TJ/F16 10.9091 Tf -291.0235 -13.5492 Td[(Freunde)-225(der)-225(Natur)-225(zu)-225(diesem)-226(Vereine)-225(zusammengestr\366mt.)-241(\334ber-)]TJ 0 -13.5492 Td[(all,)-429(wo)-394(die)-393(deutsche)-394(Sprache)-393(ert\366nt,)-430(und)-393(ihr)-393(sinniger)-394(Bau)-393(auf)]TJ 0 -13.5492 Td[(den)-277(Geist)-277(und)-277(das)-277(Gem\374th)-277(der)-277(V\366lker)-277(einwirkt;)-290(von)-277(dem)-277(hohen)]TJ 0 -13.5492 Td[(Alpengebirge)-265(Europa's,)-269(bis)-265(jenseits)-265(der)-265(Weichsel,)-269(wo,)-269(im)-265(Lande)]TJ 0 -13.5492 Td[(des)-429(Copernicus,)-474(die)-430(Sternkunde)-429(sich)-429(wieder)-430(zu)-429(neuem)-429(Glanz)]TJ 0 -13.5492 Td[(erhoben)-306(sieht;)-335(\374berall)-306(in)-307(dem)-306(weiten)-307(Gebiete)-306(deutscher)-306(Nation,)]TJ 0 -13.5492 Td[(nennen)-182(wir)-181(unser)-182(jedes)-182(Bestreben,)-195(dem)-182(geheimen)-181(Wirken)-182(der)-181(Na-)]TJ 0 -13.5492 Td[(turkr\344fte)-301(nachzusp\374ren,)-313(sei)-301(es)-301(in)-301(den)-301(weiten)-300(Himmels-R\344umen,)]TJ 0 -13.5492 Td[(dem)-365(h\366chsten)-365(Problem)-365(der)-364(Mechanik,)-394(oder)-365(in)-365(dem)-365(Innern)-364(des)]TJ
ET
1 0 0 1 46.7715 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
32 0 obj <<
/Type /Page
/Contents 33 0 R
/Resources 31 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 36 0 R
>> endobj
34 0 obj <<
/D [32 0 R /XYZ 46.7715 518.1751 null]
>> endobj
35 0 obj <<
/D [32 0 R /XYZ 240.3589 188.0848 null]
>> endobj
31 0 obj <<
/Font << /F16 6 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
39 0 obj <<
/Length 4433
>>
stream
1 0 0 1 93.5434 548.9335 cm
0 g 0 G
1 0 0 1 -93.5434 -548.9335 cm
BT
/F16 10.9091 Tf 93.5434 548.9335 Td[(2Rede,)-170(gehalten)-150(bei)-150(der)-150(Er\303\266ffnung)-150(der)-150(Versammlung)-150(deutscher)-150(Naturforscher)-150(und)-150(\303rzte)-150(in)-150(Berlin,)-170(am)-150(18.)-217(September)-150(1828)]TJ
ET
1 0 0 1 374.1731 548.9335 cm
0 g 0 G
1 0 0 1 -374.1731 -548.9335 cm
BT
/F16 10.9091 Tf 93.5434 518.1751 Td[(starren)-243(Erdk\366rpers,)-245(oder)-244(in)-243(dem)-244(zartgewebten)-243(Netze)-243(organischer)]TJ 0 -13.5492 Td[(Gebilde.)]TJ 11.9552 -16.004 Td[(Von)-364(edlen)-364(F\374rsten)-363(beschirmt,)-392(hat)-364(dieser)-364(Verein)-364(allj\344hrig)-364(an)]TJ -11.9552 -13.5492 Td[(Interesse)-359(und)-359(Umfang)-358(zugenommen.)-577(Jede)-358(Entfernung,)-386(welche)]TJ 0 -13.5492 Td[(Verschiedenheit)-409(der)-409(Religion)-409(und)-409(b\374rgerlicher)-409(Verfassung)-408(er-)]TJ 0 -13.5492 Td[(zeugen)-473(k\366nnten,)-529(ist)-473(hier)-474(aufgehoben.)-919(Deutschland)-473(offenbart)]TJ 0 -13.5492 Td[(sich)-273(gleichsam)-272(in)-273(seiner)-273(geistigen)-272(Einheit;)-284(und,)-279(wie)-272(Erkenntniss)]TJ 0 -13.5492 Td[(des)-371(Wahren)-372(und)-371(Aus\374bung)-371(der)-371(Pflicht)-372(der)-371(h\366chste)-371(Zweck)-371(der)]TJ 0 -13.5492 Td[(Sittlichkeit)-259(sind;)-264(so)-260(schw\344cht)-259(jenes)-259(Gef\374hl)-259(der)-260(Einheit)-259(keine)-259(der)]TJ 0 -13.5492 Td[(Banden,)-398(welche)-368(jedem)-369(von)-368(uns)-369(Religion,)-398(Verfassung)-368(und)-368(Ge-)]TJ 0 -13.5492 Td[(setze)-315(der)-315(Heimath)-315(theuer)-314(machen.)-445(Eben)-315(dies)-315(gesonderte)-314(Leben)]TJ 0 -13.5492 Td[(der)-349(deutschen)-349(Nation,)-374(dieser)-349(Wetteifer)-349(geistiger)-349(Bestrebungen,)]TJ 0 -13.5492 Td[(riefen)-411(\050so)-411(lehrt)-410(es)-411(die)-411(ruhmvolle)-411(Geschichte)-411(des)-410(Vaterlandes\051)]TJ 0 -13.5492 Td[(die)-308(sch\366nsten)-308(Bl\374then)-308(der)-309(Humanit\344t,)-322(Wissenschaft)-308(und)-308(Kunst,)]TJ 0 -13.5492 Td[(hervor.)]TJ 11.9552 -16.004 Td[(Die)-322(Gesellschaft)-323(deutscher)-322(Naturforscher)-322(und)-323(\304rzte)-322(hat,)-341(seit)]TJ -11.9552 -13.5492 Td[(ihrer)-281(letzten)-280(Versammlung,)-289(da)-281(sie)-280(in)-281(M\374nchen)-281(eine)-281(so)-280(gastliche)]TJ 0 -13.5492 Td[(Aufnahme)-256(fand,)-257(durch)-256(die)-256(schmeichelhafte)-256(Theilnahme)-256(benach-)]TJ 0 -13.5492 Td[(barter)-374(Staaten)-374(und)-373(Akademieen,)-405(sich)-374(eines)-374(besondern)-373(Glanzes)]TJ 0 -13.5492 Td[(zu)-288(erfreuen)-288(gehabt.)-364(Stammverwandte)-288(Nationen)-288(haben)-288(den)-288(alten)]TJ 0 -13.5492 Td[(Bund)-239(erneuern)-239(wollen)-239(zwischen)-239(Deutschland)-239(und)-239(dem)-239(gothisch-)]TJ 0 -13.5492 Td[(scandinavischen)-338(Norden.)-513(Eine)-337(solche)-338(Theilnahme)-338(verdient)-337(um)]TJ 0 -13.5492 Td[(so)-264(mehr)-265(unsre)-264(Anenkennung,)-268(als)-264(sie)-264(der)-265(Masse)-264(von)-528(Thatsachen)]TJ/F16 7.9701 Tf -72.7559 0 Td[([5])]TJ/F16 10.9091 Tf 72.7559 -13.5492 Td[(und)-366(Meinungen,)-395(welche)-365(hier)-366(in)-366(einen)-366(allgemeinen,)-394(fruchtbrin-)]TJ 0 -13.5492 Td[(genden)-425(Verkehr)-425(gesetzt)-425(werden,)-469(einen)-425(unerwarteten)-425(Zuwachs)]TJ 0 -13.5492 Td[(gew\344hrt.)-627(Auch)-376(ruft)-376(sie)-375(in)-376(das)-376(Ged\344chtniss)-376(der)-375(Naturkundigen)]TJ 0 -13.5492 Td[(erhebende)-387(Erinnerungen)-387(zur\374ck.)-660(Noch)-387(nicht)-387(durch)-387(ein)-386(halbes)]TJ 0 -13.5492 Td[(Jahrhundert)-323(von)-322(uns)-323(getrennt,)-341(erscheint)-322(Linn\351,)-341(in)-323(der)-322(K\374hnheit)]TJ 0 -13.5492 Td[(seiner)-394(Unternehmungen,)-430(wie)-393(durch)-394(das,)-430(was)-394(er)-394(vollendet,)-429(an-)]TJ 0 -13.5492 Td[(geregt)-347(und)-347(beherrscht)-347(hat,)-371(als)-347(eine)-347(der)-347(grossen)-347(Gestalten)-347(eines)]TJ 0 -13.5492 Td[(fr\374heren)-294(Zeitalters.)-382(Sein)-294(Ruhm,)-305(so)-294(gl\344nzend)-294(er)-294(ist,)-305(hat)-294(dennoch)]TJ 0 -13.5492 Td[(Europa)-354(nicht)-355(undankbar)-354(gegen)-355(Scheele's)-354(und)-355(Bergmann's)-354(Ver-)]TJ 0 -13.5492 Td[(dienste)-376(gemacht.)-627(Die)-376(Reihe)-375(dieser)-376(gefeierten)-376(Namen)-376(ist)-375(nicht)]TJ 0 -13.5492 Td[(geschlossen)-330(geblieben;)-369(aber)-330(in)-330(der)-330(Furcht,)-350(edle)-329(Bescheidenheit)]TJ
ET
1 0 0 1 93.5434 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
38 0 obj <<
/Type /Page
/Contents 39 0 R
/Resources 37 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 36 0 R
>> endobj
40 0 obj <<
/D [38 0 R /XYZ 321.6101 215.1832 null]
>> endobj
37 0 obj <<
/Font << /F16 6 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
43 0 obj <<
/Length 4631
>>
stream
1 0 0 1 46.7715 548.9335 cm
0 g 0 G
1 0 0 1 -46.7715 -548.9335 cm
BT
/F16 10.9091 Tf 321.9467 548.9335 Td[(3)]TJ
ET
1 0 0 1 327.4012 548.9335 cm
0 g 0 G
1 0 0 1 -327.4012 -548.9335 cm
BT
/F16 10.9091 Tf 46.7715 518.1751 Td[(zu)-436(verletzen,)-483(darf)-436(ich)-436(hier)-436(nicht)-436(von)-436(dem)-436(Lichte)-436(reden,)-482(wel-)]TJ 0 -13.5492 Td[(ches)-390(noch)-389(jetzt)-390(in)-389(reichstem)-390(Masse)-390(von)-389(dem)-390(Norden)-389(ausgeht;)]TJ 0 -13.5492 Td[(nicht)-259(der)-259(Entdeckungen)-259(erw\344hnen,)-261(welche)-259(die)-259(innere)-259(chemische)]TJ 0 -13.5492 Td[(Natur)-382(der)-382(Stoffe)-382(\050im)-382(numerischen)-382(Verh\344ltniss)-382(ihrer)-382(Elemente\051)]TJ 0 -13.5492 Td[(oder)-474(das)-473(wirbelnde)-474(Str\366men)-474(der)-474(electro-magnetischen)-473(Kr\344fte)]TJ 0 -13.5492 Td[(enth\374llen.)-622(M\366gen)-374(die)-374(trefflichen)-374(M\344nner,)-405(welche)-374(durch)-374(keine)]TJ 0 -13.5492 Td[(Beschwerden)-313(von)-312(Land-)-313(und)-312(Seereisen)-313(abgehalten)-312(wurden,)-328(aus)]TJ 0 -13.5492 Td[(Schweden,)-331(Norwegen,)-330(D\344nemark,)-331(Holland,)-330(England)-315(und)-314(Polen)]TJ 0 -13.5492 Td[(unserm)-247(Vereine)-247(zuzueilen,)-248(andern)-247(Fremden,)-248(f\374r)-247(kommende)-247(Jah-)]TJ 0 -13.5492 Td[(re,)-398(die)-369(Bahn)-369(bezeichnen,)-398(damit)-369(wechselsweise)-368(jeder)-369(Theil)-368(des)]TJ 0 -13.5492 Td[(deutschen)-335(Vaterlandes)-335(den)-335(belebenden)-335(Einfluss)-334(wissenschaftli-)]TJ 0 -13.5492 Td[(cher)-342(Mittheilung)-343(aus)-342(den)-342(verschiedensten)-343(L\344ndern)-342(von)-342(Europa)]TJ 0 -13.5492 Td[(geniesse.)]TJ 11.9552 -18.4588 Td[(Wenn)-224(ich)-224(aber,)-229(im)-223(Angesichte)-224(dieser)-224(Versammlung,)-229(den)-224(Aus-)]TJ -11.9552 -13.5492 Td[(druck)-251(meiner)-251(pers\366nlichen)-251(Gef\374hle)-250(zur\374ckhalten)-251(muss;)-252(so)-251(sei)-250(es)]TJ 0 -13.5492 Td[(mir)-160(wenigstens)-160(gestattet,)-178(die)-160(Patriarchen)-160(vaterl\344ndischen)-160(Ruhmes)]TJ 0 -13.5492 Td[(zu)-357(nennen,)-383(welche)-356(die)-357(Sorge)-357(f\374r)-356(ihr)-357(der)-356(Nation)-357(theures)-356(Leben)]TJ 0 -13.5492 Td[(von)-446(uns)-446(entfernt)-445(h\344lt:)]TJ/F20 10.9091 Tf 106.4306 0 Td[(Goethe)]TJ/F16 10.9091 Tf 31.5054 0 Td[(,)-495(den)-446(die)-445(grossen)-446(Sch\366pfungen)]TJ -137.936 -13.5492 Td[(dichterischer)-407(Phantasie)-407(nicht)-407(abgehalten)-406(haben,)-447(den)-406(Forscher-)]TJ 0 -13.5492 Td[(blick)-263(in)-262(alle)-263(Tiefen)-263(des)-263(Naturlebens)-262(zu)-263(tauchen,)-266(und)-263(der)-263(jetzt,)-265(in)]TJ 0 -13.5492 Td[(l\344ndlicher)-238(Abgeschiedenheit,)-241(um)-239(seinen)-238(f\374rstlichen)-477(Freund,)-240(wie)]TJ/F16 7.9701 Tf 291.0235 0 Td[([6])]TJ/F16 10.9091 Tf -291.0235 -13.5492 Td[(Deutschland)-204(um)-204(eine)-204(seiner)-204(herrlichsten)-204(Zierden,)-213(trauert;)]TJ/F20 10.9091 Tf 248.208 0 Td[(Olbers)]TJ/F16 10.9091 Tf 29.6945 0 Td[(,)]TJ -277.9025 -13.5492 Td[(der)-210(zwei)-210(Weltk\366rper)-209(da)-210(entdeckt)-210(hat,)-218(wo)-209(er)-210(sie)-210(zu)-210(suchen)-209(gelehrt;)]TJ 0 -13.5492 Td[(den)-277(gr\366ssten)-276(Anatomen)-277(unseres)-277(Zeitalters,)]TJ/F20 10.9091 Tf 189.3739 0 Td[(S\366mmerring)]TJ/F16 10.9091 Tf 53.9345 0 Td[(,)-283(der)-277(mit)]TJ -243.3084 -13.5492 Td[(gleichem)-497(Eifer)-497(die)-497(Wunder)-496(des)-497(organischen)-497(Baues,)-559(wie)-496(der)]TJ 0 -13.5492 Td[(Sonnenfackeln)-368(und)-369(Sonnenflecke)-368(\050Verdichtungen)-368(und)-368(\326ffnun-)]TJ 0 -13.5492 Td[(gen)-387(im)-387(wallenden)-387(Lichtmeere\051)-387(durchsp\344ht;)]TJ/F20 10.9091 Tf 198.1769 0 Td[(Blumenbach)]TJ/F16 10.9091 Tf 54.5344 0 Td[(,)-421(auch)]TJ -252.7113 -13.5492 Td[(meinen)-293(Lehrer,)-304(der)-293(durch)-294(seine)-293(Werke)-293(und)-293(das)-293(belebende)-293(Wort)]TJ 0 -13.5492 Td[(\374berall)-235(die)-234(Liebe)-235(zur)-234(vergleichenden)-235(Anatomie,)-238(Physiologie)-234(und)]TJ 0 -13.5492 Td[(gesammten)-354(Naturkunde)-355(angefacht,)-381(und)-354(wie)-354(ein)-355(heiliges)-354(Feuer,)]TJ 0 -13.5492 Td[(l\344nger)-283(als)-283(ein)-284(halbes)-283(Jahrhundert,)-291(sorgsam)-284(gepflegt)-283(hat.)-349(Konnte)]TJ 0 -13.5492 Td[(ich)-212(der)-212(Versuchung)-212(widerstehen,)-220(da)-212(die)-212(Gegenwart)-212(solcher)-212(M\344n-)]TJ 0 -13.5492 Td[(ner)-265(uns)-266(nicht)-265(verg\366nnt)-265(ist,)-269(wenigstens)-266(durch)-265(Namen,)-269(welche)-265(die)]TJ 0 -13.5492 Td[(Nachwelt)-250(wiedersagen)-250(wird,)-250(meine)-250(Rede)-250(zu)-250(schm\374cken?)]TJ
ET
1 0 0 1 46.7715 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
42 0 obj <<
/Type /Page
/Contents 43 0 R
/Resources 41 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 36 0 R
>> endobj
46 0 obj <<
/D [42 0 R /XYZ 272.7891 242.2816 null]
>> endobj
41 0 obj <<
/Font << /F16 6 0 R /F20 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
49 0 obj <<
/Length 4527
>>
stream
1 0 0 1 93.5434 548.9335 cm
0 g 0 G
1 0 0 1 -93.5434 -548.9335 cm
BT
/F16 10.9091 Tf 93.5434 548.9335 Td[(4Rede,)-170(gehalten)-150(bei)-150(der)-150(Er\303\266ffnung)-150(der)-150(Versammlung)-150(deutscher)-150(Naturforscher)-150(und)-150(\303rzte)-150(in)-150(Berlin,)-170(am)-150(18.)-217(September)-150(1828)]TJ
ET
1 0 0 1 374.1731 548.9335 cm
0 g 0 G
1 0 0 1 -374.1731 -548.9335 cm
BT
/F16 10.9091 Tf 105.4986 518.1751 Td[(Diese)-202(Betrachtungen)-201(\374ber)-202(den)-202(geistigen)-201(Reichthum)-202(des)-202(Vater-)]TJ -11.9552 -13.5492 Td[(landes,)-368(und)-345(die)-344(davon)-344(abh\344ngige)-345(fortschreitende)-344(Entwickelung)]TJ 0 -13.5492 Td[(unsers)-395(Instituts,)-431(leiten)-395(unwillk\374hrlich)-395(auf)-395(die)-395(Hindernisse,)-431(die)]TJ 0 -13.5492 Td[(ein)-390(gr\366sserer)-391(Umfang)-390(\050die)-390(anwachsende)-391(Zahl)-390(der)-390(Mitarbeiter\051)]TJ 0 -13.5492 Td[(der)-268(Ausf\374hrung)-269(eines)-268(ernsten)-268(wissenschaftlichen)-268(Unternehmens)]TJ 0 -13.5492 Td[(scheinbar)-421(entgegenstellen.)-764(Der)-422(Hauptzweck)-421(des)-421(Vereins)-421(\050Sie)]TJ 0 -13.5492 Td[(haben)-310(es)-311(selbst)-310(an)-311(ihrem)-310(Stiftungstage)-311(ausgesprochen\051)-310(bestehet)]TJ 0 -13.5492 Td[(nicht,)-455(wie)-415(in)-414(andern)-414(Akademieen,)-456(die)-414(eine)-414(geschlossene)-414(Ein-)]TJ 0 -13.5492 Td[(heit)-313(bilden,)-330(in)-313(gegenseitiger)-313(Mittheilung)-314(von)-313(Abhandlungen,)-329(in)]TJ 0 -13.5492 Td[(zahlreichen)-358(Vorlesungen,)-386(die)-358(alle)-359(zum)-358(Drucke)-359(bestimmt,)-385(nach)]TJ 0 -13.5492 Td[(mehr)-467(als)-467(Jahresfrist)-466(in)-467(eignen)-467(Sammlungen)-467(erscheinen.)-900(Der)]TJ 0 -13.5492 Td[(Hauptzweck)-279(dieser)-279(Gesellschaft)-280(ist)-279(die)-279(pers\366nliche)-279(Ann\344herung)]TJ 0 -13.5492 Td[(derer,)-323(welche)-309(dasselbe)-309(Feld)-308(der)-309(Wissenschaften)-308(bearbeiten;)-338(die)]TJ 0 -13.5492 Td[(m\374ndliche)-263(und)-263(darum)-263(mehr)-263(anregende)-263(Auswechselung)-263(von)-263(Ide-)]TJ 0 -13.5492 Td[(en,)-504(sie)-454(m\366gen)-453(sich)-454(als)-453(Thatsachen,)-504(Meinungen)-454(oder)-453(Zweifel)]TJ 0 -13.5492 Td[(darstellen;)-441(die)-377(Gr\374ndung)-377(freundschaftlicher)-377(Verh\344ltnisse,)-408(wel-)]TJ 0 -13.5492 Td[(che)-342(den)-343(Wissenschaften)-342(Licht,)-366(dem)-342(Leben)-343(heitre)-342(Anmuth,)-365(den)]TJ 0 -13.5492 Td[(Sitten)-250(Duldsamkeit)-250(und)-250(Milde)-250(gew\344hren.)]TJ/F16 7.9701 Tf -72.7558 0 Td[([7])]TJ/F16 10.9091 Tf 84.711 -18.4588 Td[(Bei)-350(einem)-350(Stamme,)-375(der)-350(sich)-350(zur)-350(sch\366nsten)-350(geistigen)-351(Indivi-)]TJ -11.9552 -13.5492 Td[(dualit\344t)-306(erhoben)-307(hatte,)-320(und)-307(dessen)-306(sp\344testen)-307(Nachkommen,)-320(wie)]TJ 0 -13.5492 Td[(aus)-335(dem)-335(Schiffbruche)-335(der)-335(V\366lker)-335(gerettet,)-356(wir)-335(noch)-335(heute)-335(uns-)]TJ 0 -13.5492 Td[(re)-335(bangen)-335(W\374nsche)-335(weihen,)-357(in)-335(der)-335(Bl\374thezeit)-335(des)-335(hellenischen)]TJ 0 -13.5492 Td[(Alterthums,)-271(offenbarte)-266(sich)-267(am)-266(kr\344ftigsten)-266(der)-267(Unterschied)-266(zwi-)]TJ 0 -13.5492 Td[(schen)-326(Wort)-325(und)-326(Schrift.)-477(Nicht)-326(die)-326(Schwierigkeit)-326(des)-325(Ideenver-)]TJ 0 -13.5492 Td[(kehrs)-408(allein,)-447(nicht)-407(die)-408(Entbehrung)-407(einer)-408(deutschen)-407(Kunst,)-447(die)]TJ 0 -13.5492 Td[(den)-305(Gedanken,)-318(wie)-305(auf)-305(Fl\374geln)-305(durch)-305(den)-305(Raum)-305(verbreitet)-304(und)]TJ 0 -13.5492 Td[(ihm)-402(lange)-403(Dauer)-402(verheisst,)-441(geboten)-402(damals)-403(den)-402(Freunden)-402(der)]TJ 0 -13.5492 Td[(Philosophie)-462(und)-462(Naturkunde,)-514(Hellas,)-515(oder)-462(die)-462(dorischen)-461(und)]TJ 0 -13.5492 Td[(ionischen)-237(Kolonien)-237(in)-236(Gross-Griechenland)-237(und)-237(Klein-Asien,)-239(auf)]TJ 0 -13.5492 Td[(langen)-424(Reisen)-424(zu)-423(durchwandern.)-772(Das)-424(alte)-424(Geschlecht)-423(kannte)]TJ 0 -13.5492 Td[(den)-339(Werth)-339(des)-339(lebendigen)-340(Wortes,)-361(den)-339(begeisternden)-339(Einfluss,)]TJ 0 -13.5492 Td[(welchen)-207(durch)-207(ihre)-207(N\344he)-206(hohe)-207(Meisterschaft)-207(aus\374bt,)-216(und)-207(die)-206(auf-)]TJ 0 -13.5492 Td[(hellende)-316(Macht)-317(des)-316(Gespr\344chs,)-333(wenn)-317(es)-316(unvorbereitet,)-333(frei)-316(und)]TJ 0 -13.5492 Td[(schonend)-347(zugleich,)-371(das)-347(Gewebe)-347(wissenschaftlicher)-346(Meinungen)]TJ
ET
1 0 0 1 93.5434 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
48 0 obj <<
/Type /Page
/Contents 49 0 R
/Resources 47 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 36 0 R
>> endobj
50 0 obj <<
/D [48 0 R /XYZ 93.5434 285.4606 null]
>> endobj
47 0 obj <<
/Font << /F16 6 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
53 0 obj <<
/Length 4396
>>
stream
1 0 0 1 46.7715 548.9335 cm
0 g 0 G
1 0 0 1 -46.7715 -548.9335 cm
BT
/F16 10.9091 Tf 321.9467 548.9335 Td[(5)]TJ
ET
1 0 0 1 327.4012 548.9335 cm
0 g 0 G
1 0 0 1 -327.4012 -548.9335 cm
BT
/F16 10.9091 Tf 46.7715 518.1751 Td[(und)-374(Zweifel)-375(durchl\344uft.)-622(Entschleierung)-375(der)-374(Wahrheit)-374(ist)-374(ohne)]TJ 0 -13.5492 Td[(Divergenz)-198(der)-197(Meinungen)-198(nicht)-197(denkbar,)-209(weil)-197(die)-198(Wahrheit)-197(nicht)]TJ 0 -13.5492 Td[(in)-374(ihrem)-373(ganzen)-374(Umfang,)-404(auf)-373(einmal,)-405(und)-373(von)-374(allen)-373(zugleich,)]TJ 0 -13.5492 Td[(erkannt)-294(wird.)-383(Jeder)-294(Schritt,)-305(der)-295(den)-294(Naturforscher)-294(seinem)-294(Ziele)]TJ 0 -13.5492 Td[(zu)-473(n\344hern)-473(scheint,)-529(f\374hrt)-473(ihn)-473(an)-473(den)-473(Eingang)-473(neuer)-473(Labyrin-)]TJ 0 -13.5492 Td[(the.)-393(Die)-297(Masse)-298(der)-298(Zweifel)-297(wird)-298(nicht)-297(gemindert,)-310(sie)-297(verbreitet)]TJ 0 -13.5492 Td[(sich)-330(nur,)-350(wie)-330(ein)-330(beweglicher)-330(Nebelduft,)-350(\374ber)-330(andre)-329(und)-330(andre)]TJ 0 -13.5492 Td[(Gebiete.)-724(Wer)-408(golden)-408(die)-408(Zeit)-408(nennt,)-447(wo)-408(Verschiedenheit)-408(der)]TJ 0 -13.5492 Td[(Ansichten,)-472(oder)-427(wie)-427(man)-428(sich)-427(wohl)-427(auszudr\374cken)-428(pflegt,)-471(der)]TJ 0 -13.5492 Td[(Zwist)-248(der)-247(Gelehrten,)-248(geschlichtet)-248(sein)-248(wird,)-248(hat)-247(von)-248(den)-247(Bed\374rf-)]TJ 0 -13.5492 Td[(nissen)-222(der)-221(Wissenschaft,)-227(von)-222(ihrem)-222(rastlosen)-221(Fortschreiten,)-227(eben)]TJ 0 -13.5492 Td[(so)-325(wenig)-325(einen)-325(klaren)-325(Begriff,)-344(als)-325(derjenige,)-344(welcher,)-343(in)-325(tr\344ger)]TJ 0 -13.5492 Td[(Selbstzufriedenheit,)-296(sich)-286(r\374hmt,)-296(in)-287(der)-286(Geognosie,)-296(Chemie)-286(oder)]TJ 0 -13.5492 Td[(Physiologie,)-321(seit)-307(mehreren)-307(Jahrzehenden,)-321(dieselben)-306(Meinungen)]TJ 0 -13.5492 Td[(zu)-250(vertheidigen.)]TJ 11.9552 -18.4588 Td[(Die)-228(Gr\374nder)-228(dieser)-228(Gesellschaft)-229(haben,)-232(in)-228(wahrem)-228(und)-229(tiefem)]TJ -11.9552 -13.5492 Td[(Gef\374hle)-349(der)-348(Einheit)-349(der)-348(Natur,)-374(alle)-348(Zweige)-349(des)-348(physikalischen)]TJ 0 -13.5492 Td[(Wissens)-327(\050des)-654(beschreibenden,)-346(messenden)-327(und)-326(experimentiren-)]TJ/F16 7.9701 Tf 291.0235 0 Td[([8])]TJ/F16 10.9091 Tf -291.0235 -13.5492 Td[(den\051)-269(innigst)-270(mit)-269(einander)-269(vereinigt.)-308(Die)-269(Benennungen)-269(Naturfor-)]TJ 0 -13.5492 Td[(scher)-357(und)-357(\304rzte)-356(sind)-357(daher)-357(hier)-357(fast)-356(synonym.)-571(Durch)-356(irdische)]TJ 0 -13.5492 Td[(Bande)-423(an)-422(den)-423(Typus)-423(niederer)-422(Gebilde)-423(gekettet,)-466(vollendet)-422(der)]TJ 0 -13.5492 Td[(Mensch)-294(die)-294(Reihe)-294(h\366herer)-294(Organisationen.)-382(In)-293(seinem)-294(physiolo-)]TJ 0 -13.5492 Td[(gischen)-244(und)-244(pathologischen)-244(Zustande)-244(bietet)-244(er)-244(kaum)-243(eine)-244(eigene)]TJ 0 -13.5492 Td[(Klasse)-492(von)-493(Erscheinungen)-492(dar.)-978(Was)-492(sich)-493(auf)-492(diesen)-492(hohen)]TJ 0 -13.5492 Td[(Zweck)-233(des)-233(\344rztlichen)-233(Studiums)-233(bezieht,)-236(und)-233(sich)-233(zu)-233(allgemeinen)]TJ 0 -13.5492 Td[(naturwissenschaftlichen)-324(Ansichten)-323(erhebt,)-343(geh\366rt)-323(vorzugsweise)]TJ 0 -13.5492 Td[(f\374r)-454(diesen)-453(Verein.)-862(So)-453(wichtig)-454(es)-454(ist,)-504(nicht)-454(das)-454(Band)-454(zu)-453(l\366-)]TJ 0 -13.5492 Td[(sen,)-218(welches)-211(die)-210(gleichm\344ssige)-210(Erforschung)-211(der)-210(organischen)-210(und)]TJ 0 -13.5492 Td[(unorganischen)-180(Natur)-181(umfasst;)-204(so)-180(werden)-180(dennoch)-181(der)-180(zunehmen-)]TJ 0 -13.5492 Td[(de)-264(Umfang)-265(und)-264(die)-265(allm\344hlige)-264(Entwickelung)-265(dieses)-264(Instituts)-264(die)]TJ 0 -13.5492 Td[(Nothwendigkeit)-189(f\374hlen)-189(lassen,)-201(ausser)-189(den)-189(gemeinschaftlichen)-189(\366f-)]TJ 0 -13.5492 Td[(fentlichen)-205(Versammlungen,)-213(denen)-205(diese)-205(Halle)-204(bestimmt)-205(ist,)-213(auch)]TJ 0 -13.5492 Td[(sectionsweise)-246(ausf\374hrlichere)-247(Vortr\344ge)-246(\374ber)-246(einzelne)-246(Disciplinen)]TJ 0 -13.5492 Td[(zu)-310(halten.)-430(Nur)-310(in)-310(solchen)-310(engeren)-310(Kreisen,)-325(nur)-310(unter)-310(M\344nnern,)]TJ
ET
1 0 0 1 46.7715 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
52 0 obj <<
/Type /Page
/Contents 53 0 R
/Resources 51 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 36 0 R
>> endobj
54 0 obj <<
/D [52 0 R /XYZ 108.4376 282.9292 null]
>> endobj
51 0 obj <<
/Font << /F16 6 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
57 0 obj <<
/Length 4529
>>
stream
1 0 0 1 93.5434 548.9335 cm
0 g 0 G
1 0 0 1 -93.5434 -548.9335 cm
BT
/F16 10.9091 Tf 93.5434 548.9335 Td[(6Rede,)-170(gehalten)-150(bei)-150(der)-150(Er\303\266ffnung)-150(der)-150(Versammlung)-150(deutscher)-150(Naturforscher)-150(und)-150(\303rzte)-150(in)-150(Berlin,)-170(am)-150(18.)-217(September)-150(1828)]TJ
ET
1 0 0 1 374.1731 548.9335 cm
0 g 0 G
1 0 0 1 -374.1731 -548.9335 cm
BT
/F16 10.9091 Tf 93.5434 518.1751 Td[(welche)-212(Gleichheit)-211(der)-212(Studien)-211(zu)-212(einander)-212(hinzieht,)-219(sind)-211(m\374ndli-)]TJ 0 -13.5492 Td[(che)-262(Discussionen)-261(m\366glich.)-285(Ohne)-261(diese)-262(Art)-261(der)-262(Er\366rterung,)-264(ohne)]TJ 0 -13.5492 Td[(Ansicht)-462(der)-462(gesammelten,)-515(oft)-462(schwer)-462(zu)-462(bestimmenden,)-514(und)]TJ 0 -13.5492 Td[(darum)-425(streitigen)-425(Naturk\366rper,)-468(w\374rde)-425(der)-425(freim\374thige)-424(Verkehr)]TJ 0 -13.5492 Td[(Wahrheit-suchender)-324(M\344nner)-324(eines)-324(belebenden)-324(Princips)-324(beraubt)]TJ 0 -13.5492 Td[(sein.)]TJ 11.9552 -16.004 Td[(Unter)-404(den)-404(Anstalten,)-443(welche)-405(in)-404(dieser)-404(Stadt)-404(zur)-405(Aufnahme)]TJ -11.9552 -13.5492 Td[(der)-302(Gesellschaft)-301(getroffen)-302(worden)-301(sind,)-315(hat)-301(man)-302(vorzuglich)-301(auf)]TJ 0 -13.5492 Td[(die)-286(M\366glichkeit)-287(einer)-286(solchen)-287(Absonderung)-286(in)-287(Sectionen)-286(R\374ck-)]TJ 0 -13.5492 Td[(sicht)-320(genommen.)-459(Die)-320(Hoffnung,)-337(dass)-320(diese)-320(Vorkehrungen)-319(sich)]TJ 0 -13.5492 Td[(Ihres)-458(Beifalls)-459(erfreuen)-458(werden,)-511(legt)-458(mir)-459(die)-458(Pflicht)-459(auf,)-510(hier)]TJ 0 -13.5492 Td[(in)-343(Erinnerung)-342(zu)-343(bringen,)-365(dass,)-366(obgleich)-342(Ihr)-343(Vertrauen)-342(zweien)]TJ 0 -13.5492 Td[(Reisenden)-354(zugleich)-353(die)-354(Gesch\344ftsf\374hrung)-353(\374bertragen)-354(hat,)-379(doch)]TJ 0 -13.5492 Td[(nur)-210(einem)-209(allein,)-218(meinem)-210(edlen)-209(Freunde,)-218(Herrn)-210(Lichtenstein,)-217(das)]TJ 0 -13.5492 Td[(Verdienst)-209(sorgsamer)-209(Vorsicht)-210(und)-209(rastloser)-209(Th\344tigkeit)-209(zukommt.)]TJ 0 -13.5492 Td[(Den)-219(wissenschaftlichen)-218(Geist)-219(achtend,)-225(der)-218(die)-219(Gesellschaft)-218(deut-)]TJ 0 -13.5492 Td[(scher)-450(Naturforscher)-449(und)-900(\304rzte)-449(beseelt,)-500(und)-450(die)-449(N\374tzlichkeit)]TJ/F16 7.9701 Tf -72.7559 0 Td[([9])]TJ/F16 10.9091 Tf 72.7559 -13.5492 Td[(ihres)-389(Bestrebens)-388(anerkennend,)-424(ist)-388(das)-389(K\366nigliche)-388(Ministerium)]TJ 0 -13.5492 Td[(des)-251(Unterrichts,)-251(seit)-250(vielen)-251(Monaten,)-251(jedem)-251(unsrer)-251(W\374nsche)-250(mit)]TJ 0 -13.5492 Td[(der)-250(aufopferndsten)-250(Bereitwilligkeit)-250(zuvorgekommen.)]TJ 11.9552 -16.004 Td[(In)-324(der)-324(N\344he)-323(der)-324(Versammlungsorte,)-342(welche)-324(auf)-324(diese)-324(Weise)]TJ -11.9552 -13.5492 Td[(f\374r)-204(ihre)-203(allgemeinen)-204(und)-204(besondern)-203(Arbeiten)-204(vorbereitet)-203(worden,)]TJ 0 -13.5492 Td[(erheben)-344(sich)-344(die)-343(Museen,)-368(welche)-343(der)-344(Zergliederungskunst,)-367(der)]TJ 0 -13.5492 Td[(Zoologie,)-512(der)-460(Oryktognosie)-460(und)-460(der)-460(Gebirgskunde)-459(gewidmet)]TJ 0 -13.5492 Td[(sind.)-404(Sie)-301(liefern)-302(dem)-301(Naturforscher)-301(einen)-301(reichen)-302(Stoff)-301(der)-301(Be-)]TJ 0 -13.5492 Td[(obachtung)-374(und)-373(vielfache)-374(Gegenst\344nde)-374(kritischer)-373(Discussionen.)]TJ 0 -13.5492 Td[(Der)-413(gr\366ssere)-413(Theil)-414(dieser)-413(wohlgeordneten)-413(Sammlungen)-413(z\344hlt,)]TJ 0 -13.5492 Td[(wie)-359(die)-359(Universit\344t)-359(zu)-359(Berlin,)-386(noch)-359(nicht)-359(zwei)-359(Decennien;)-413(die)]TJ 0 -13.5492 Td[(\344ltesten,)-216(zu)-207(welchen)-207(der)-207(botanische)-206(Garten)-207(\050einer)-207(der)-207(reichsten)-207(in)]TJ 0 -13.5492 Td[(Europa\051)-241(geh\366rt,)-243(sind)-241(in)-241(dieser)-241(Periode)-241(nicht)-241(bloss)-241(vermehrt,)-242(son-)]TJ 0 -13.5492 Td[(dern)-344(g\344nzlich)-344(umgeschaffen)-343(worden.)-532(Der)-344(frohe)-344(und)-343(lehrreiche)]TJ 0 -13.5492 Td[(Genuss,)-210(den)-200(solche)-199(Institute)-200(gew\344hren,)-210(erinnert)-200(mit)-200(tiefem)-199(Dank-)]TJ 0 -13.5492 Td[(gef\374hle,)-302(dass)-292(sie)-292(das)-292(Werk)-292(des)-292(erhabenen)-292(Monarchen)-292(sind,)-302(der,)]TJ 0 -13.5492 Td[(ger\344uschlos,)-404(in)-373(einfacher)-374(Gr\366sse,)-404(jedes)-373(Jahr)-373(diese)-373(K\366nigsstadt)]TJ
ET
1 0 0 1 93.5434 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
56 0 obj <<
/Type /Page
/Contents 57 0 R
/Resources 55 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 36 0 R
>> endobj
58 0 obj <<
/D [56 0 R /XYZ 208.2203 298.9331 null]
>> endobj
55 0 obj <<
/Font << /F16 6 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
61 0 obj <<
/Length 1022
>>
stream
1 0 0 1 46.7715 548.9335 cm
0 g 0 G
1 0 0 1 -46.7715 -548.9335 cm
BT
/F16 10.9091 Tf 321.9467 548.9335 Td[(7)]TJ
ET
1 0 0 1 327.4012 548.9335 cm
0 g 0 G
1 0 0 1 -327.4012 -548.9335 cm
BT
/F16 10.9091 Tf 46.7715 518.1751 Td[(mit)-278(neuen)-277(Sch\344tzen)-278(der)-278(Natur)-278(und)-277(der)-278(Kunst)-278(ausschm\374ckt,)-284(und,)]TJ 0 -13.5492 Td[(was)-251(einen)-251(noch)-250(h\366heren)-251(Werth)-251(hat,)-251(als)-251(diese)-251(Sch\344tze)-250(selbst,)-251(was)]TJ 0 -13.5492 Td[(dem)-398(preussischen)-398(Volke)-398(jugendliche)-398(Kraft)-398(und)-398(inneres)-397(Leben)]TJ 0 -13.5492 Td[(und)-187(gem\374thvolle)-188(Anh\344nglichkeit)-187(an)-188(das)-187(alte)-188(Herrscherhaus)-187(giebt,)]TJ 0 -13.5492 Td[(der)-261(sich)-261(huldreich)-261(jedem)-261(Talente)-261(zuneigt,)-264(und)-260(freier)-261(Ausbildung)]TJ 0 -13.5492 Td[(des)-250(Geistes)-250(vertrauensvoll)-250(seinen)-250(k\366niglichen)-250(Schutz)-250(verleiht.)]TJ
ET
1 0 0 1 46.7715 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
60 0 obj <<
/Type /Page
/Contents 61 0 R
/Resources 59 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 62 0 R
>> endobj
59 0 obj <<
/Font << /F16 6 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
65 0 obj <<
/Length 135
>>
stream
1 0 0 1 93.5434 548.9335 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
1 0 0 1 -280.6297 -510.1518 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
64 0 obj <<
/Type /Page
/Contents 65 0 R
/Resources 63 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 62 0 R
>> endobj
63 0 obj <<
/ProcSet [ /PDF ]
>> endobj
68 0 obj <<
/Length 567
>>
stream
1 0 0 1 46.7715 548.9335 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
1 0 0 1 -280.6297 -19.7995 cm
0 g 0 G
1 0 0 1 -46.7715 -529.134 cm
BT
/F16 10.9091 Tf 46.7715 518.1751 Td[(***END)-500(OF)-500(THE)-500(PROJECT)-500(GUTENBERG)-500(EBOOK)]TJ 0 -13.5492 Td[(REDE,)-500(GEHALTEN)-500(BEI)-500(DER)-500(ER\326FFNUNG)-500(DER)-500(VER-)]TJ 0 -13.5492 Td[(SAMMLUNG)-500(DEUTSCHER)-500(NATURFORSCHER)-500(UND)]TJ 0 -13.5492 Td[(\304RZTE)-500(IN)-500(BERLIN,)-500(AM)-500(18.)-500(SEPTEMBER)-500(1828***)]TJ
ET
1 0 0 1 46.7715 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
67 0 obj <<
/Type /Page
/Contents 68 0 R
/Resources 66 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 62 0 R
>> endobj
69 0 obj <<
/D [67 0 R /XYZ 46.7715 529.134 null]
>> endobj
66 0 obj <<
/Font << /F16 6 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
72 0 obj <<
/Length 135
>>
stream
1 0 0 1 93.5434 548.9335 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
1 0 0 1 -280.6297 -510.1518 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
71 0 obj <<
/Type /Page
/Contents 72 0 R
/Resources 70 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 62 0 R
>> endobj
70 0 obj <<
/ProcSet [ /PDF ]
>> endobj
73 0 obj
<< /S /GoTo /D (index2) >>
endobj
76 0 obj
(Credits)
endobj
79 0 obj <<
/Length 394
>>
stream
1 0 0 1 46.7715 548.9335 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
1 0 0 1 -327.4012 -548.9335 cm
BT
/F16 18.9589 Tf 46.7715 479.3208 Td[(Credits)]TJ/F16 10.9091 Tf 0 -37.8764 Td[(September)-250(18,)-250(2007)]TJ 21.8182 -19.0037 Td[(Project)-250(Gutenberg)-250(TEI)-250(edition)-250(1)]TJ 0 -13.5492 Td[(Ralf)-250(Stephan)]TJ
ET
1 0 0 1 46.7715 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
78 0 obj <<
/Type /Page
/Contents 79 0 R
/Resources 77 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 62 0 R
>> endobj
74 0 obj <<
/D [78 0 R /XYZ 46.7715 529.134 null]
>> endobj
77 0 obj <<
/Font << /F16 6 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
82 0 obj <<
/Length 135
>>
stream
1 0 0 1 93.5434 548.9335 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
1 0 0 1 -280.6297 -510.1518 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
81 0 obj <<
/Type /Page
/Contents 82 0 R
/Resources 80 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 62 0 R
>> endobj
80 0 obj <<
/ProcSet [ /PDF ]
>> endobj
83 0 obj
<< /S /GoTo /D (index3) >>
endobj
86 0 obj
(A Word from Project Gutenberg)
endobj
89 0 obj <<
/Length 3209
>>
stream
1 0 0 1 46.7715 548.9335 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
1 0 0 1 -327.4012 -548.9335 cm
BT
/F16 18.9589 Tf 46.7715 479.3208 Td[(A)-250(Word)-250(from)-250(Project)-250(Gutenberg)]TJ/F16 10.9091 Tf 0 -32.4219 Td[(This)-250(file)-250(should)-250(be)-250(named)-250(22659-pdf.pdf)-250(or)-250(22659-pdf.zip.)]TJ 11.9552 -13.5492 Td[(This)-291(and)-291(all)-291(associated)-291(files)-291(of)-291(various)-291(formats)-291(will)-291(be)-291(found)]TJ -11.9552 -13.5492 Td[(in:)]TJ/F16 9.8629 Tf 19.6364 -22.6399 Td[(http://www.gutenberg.org/dirs/2/2/6/5/22659/)]TJ/F16 10.9091 Tf -7.6812 -23.3673 Td[(Updated)-447(editions)-446(will)-447(replace)-447(the)-447(previous)-446(one)]TJ/F22 10.9091 Tf 220.746 0 Td[(\024)]TJ/F16 10.9091 Tf 15.7825 0 Td[(the)-447(old)]TJ -248.4837 -13.5492 Td[(editions)-250(will)-250(be)-250(renamed.)]TJ 11.9552 -13.5492 Td[(Creating)-308(the)-308(works)-308(from)-308(public)-308(domain)-308(print)-308(editions)-308(means)]TJ -11.9552 -13.5492 Td[(that)-220(no)-220(one)-219(owns)-220(a)-220(United)-220(States)-219(copyright)-220(in)-220(these)-220(works,)-226(so)-219(the)]TJ 0 -13.5492 Td[(Foundation)-324(\050and)-325(you!\051)-473(can)-325(copy)-324(and)-325(distribute)-324(it)-325(in)-324(the)-324(United)]TJ 0 -13.5492 Td[(States)-163(without)-163(permission)-163(and)-163(without)-163(paying)-163(copyright)-163(royalties.)]TJ 0 -13.5492 Td[(Special)-298(rules,)-310(set)-299(forth)-298(in)-298(the)-298(General)-298(Terms)-299(of)-298(Use)-298(part)-298(of)-298(this)]TJ 0 -13.5492 Td[(license,)-360(apply)-337(to)-338(copying)-337(and)-338(distributing)-338(Project)-337(Gutenberg)]TJ/F23 10.9091 Tf 269.9388 0 Td[(")]TJ/F16 10.9091 Tf -269.9388 -13.5492 Td[(electronic)-247(works)-246(to)-247(protect)-246(the)-247(Project)-246(Gutenberg)]TJ/F23 10.9091 Tf 214.8796 0 Td[(")]TJ/F16 10.9091 Tf 13.3805 0 Td[(concept)-247(and)]TJ -228.2601 -13.5492 Td[(trademark.)-243(Project)-228(Gutenberg)-227(is)-228(a)-228(registered)-228(trademark,)-233(and)-227(may)]TJ 0 -13.5492 Td[(not)-394(be)-394(used)-394(if)-393(you)-394(charge)-394(for)-394(the)-394(eBooks,)-430(unless)-394(you)-393(receive)]TJ 0 -13.5492 Td[(specific)-377(permission.)-630(If)-377(you)-377(do)-377(not)-377(charge)-377(anything)-377(for)-376(copies)]TJ 0 -13.5492 Td[(of)-303(this)-302(eBook,)-316(complying)-303(with)-303(the)-302(rules)-303(is)-303(very)-303(easy.)-408(You)-302(may)]TJ 0 -13.5492 Td[(use)-314(this)-314(eBook)-314(for)-313(nearly)-314(any)-314(purpose)-314(such)-314(as)-314(creation)-314(of)-313(deri-)]TJ 0 -13.5492 Td[(vative)-285(works,)-295(reports,)-294(performances)-285(and)-286(research.)-356(They)-285(may)-285(be)]TJ 0 -13.5492 Td[(modified)-262(and)-261(printed)-262(and)-262(given)-262(away)]TJ/F22 10.9091 Tf 166.1939 0 Td[(\024)]TJ/F16 10.9091 Tf 13.7644 0 Td[(you)-262(may)-261(do)-262(practically)]TJ/F20 10.9091 Tf -179.9583 -13.5492 Td[(anything)]TJ/F16 10.9091 Tf 41.7859 0 Td[(with)-330(public)-331(domain)-330(eBooks.)-491(Redistribution)-331(is)-330(subject)]TJ -41.7859 -13.5492 Td[(to)-250(the)-250(trademark)-250(license,)-250(especially)-250(commercial)-250(redistribution.)]TJ
ET
1 0 0 1 46.7715 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
88 0 obj <<
/Type /Page
/Contents 89 0 R
/Resources 87 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 95 0 R
/Annots [ 90 0 R ]
>> endobj
90 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5]
/Rect [66.4079 395.0105 247.2349 403.9365]
/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org/dirs/2/2/6/5/22659/) >>
>> endobj
84 0 obj <<
/D [88 0 R /XYZ 46.7715 529.134 null]
>> endobj
11 0 obj <<
/D [88 0 R /XYZ 46.7715 124.7152 null]
>> endobj
87 0 obj <<
/Font << /F16 6 0 R /F22 92 0 R /F23 94 0 R /F20 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
96 0 obj
<< /S /GoTo /D (index4) >>
endobj
99 0 obj
(The Full Project Gutenberg License)
endobj
102 0 obj <<
/Length 3411
>>
stream
1 0 0 1 93.5434 548.9335 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
1 0 0 1 -374.1731 -548.9335 cm
BT
/F16 18.9589 Tf 93.5434 479.3208 Td[(The)-250(Full)-250(Project)-250(Gutenberg)-250(License)]TJ/F20 10.9091 Tf 0 -31.6842 Td[(Please)-250(read)-250(this)-250(before)-250(you)-250(distribute)-250(or)-250(use)-250(this)-250(work.)]TJ/F16 10.9091 Tf 11.9552 -13.5492 Td[(To)-269(protect)-269(the)-268(Project)-269(Gutenberg)]TJ/F23 10.9091 Tf 144.4282 0 Td[(")]TJ/F16 10.9091 Tf 13.6234 0 Td[(mission)-269(of)-269(promoting)-268(the)]TJ -170.0068 -13.5492 Td[(free)-225(distribution)-225(of)-225(electronic)-226(works,)-230(by)-225(using)-225(or)-225(distributing)-225(this)]TJ 0 -13.5492 Td[(work)-304(\050or)-304(any)-303(other)-304(work)-304(associated)-304(in)-303(any)-304(way)-304(with)-304(the)-303(phrase)]TJ/F22 10.9091 Tf 0 -13.5492 Td[(\036)]TJ/F16 10.9091 Tf 4.8436 0 Td[(Project)-270(Gutenberg)]TJ/F22 10.9091 Tf 79.8943 0 Td[(\034)]TJ/F16 10.9091 Tf 4.8436 0 Td[(\051,)-275(you)-269(agree)-270(to)-270(comply)-269(with)-270(all)-269(the)-270(terms)-270(of)]TJ -89.5815 -13.5492 Td[(the)-268(Full)-269(Project)-268(Gutenberg)]TJ/F23 10.9091 Tf 116.6487 0 Td[(")]TJ/F16 10.9091 Tf 13.6175 0 Td[(License)-268(\050available)-269(with)-268(this)-268(file)-268(or)]TJ -130.2662 -13.5492 Td[(online)-250(at)-250(http://www.gutenberg.org/license\051.)]TJ/F16 15.7808 Tf 0 -35.4865 Td[(Section)-250(1.)]TJ/F16 13.1507 Tf 15.5801 -44.4205 Td[(General)-255(Terms)-254(of)-255(Use)-255(&)-254(Redistributing)-255(Project)]TJ 45.0124 -17.0958 Td[(Gutenberg)]TJ/F23 13.1507 Tf 55.5088 0 Td[(")]TJ/F16 13.1507 Tf 16.4153 0 Td[(electronic)-268(works)]TJ -132.5166 -41.8023 Td[(1.A.)]TJ/F16 10.9091 Tf 0 -25.9023 Td[(By)-219(reading)-220(or)-219(using)-219(any)-220(part)-219(of)-219(this)-220(Project)-219(Gutenberg)]TJ/F23 10.9091 Tf 234.2297 0 Td[(")]TJ/F16 10.9091 Tf 13.0837 0 Td[(electro-)]TJ -247.3134 -13.5492 Td[(nic)-305(work,)-319(you)-305(indicate)-305(that)-305(you)-305(have)-305(read,)-319(understand,)-318(agree)-305(to)]TJ 0 -13.5492 Td[(and)-295(accept)-295(all)-295(the)-296(terms)-295(of)-295(this)-295(license)-295(and)-295(intellectual)-295(property)]TJ 0 -13.5492 Td[(\050trademark/copyright\051)-211(agreement.)-237(If)-211(you)-211(do)-211(not)-211(agree)-211(to)-211(abide)-211(by)]TJ 0 -13.5492 Td[(all)-270(the)-271(terms)-270(of)-270(this)-271(agreement,)-275(you)-270(must)-271(cease)-270(using)-270(and)-270(return)]TJ 0 -13.5492 Td[(or)-262(destroy)-263(all)-262(copies)-262(of)-262(Project)-263(Gutenberg)]TJ/F23 10.9091 Tf 183.192 0 Td[(")]TJ/F16 10.9091 Tf 13.552 0 Td[(electronic)-262(works)-263(in)]TJ -196.744 -13.5492 Td[(your)-379(possession.)-639(If)-379(you)-380(paid)-379(a)-380(fee)-379(for)-380(obtaining)-379(a)-380(copy)-379(of)-379(or)]TJ 0 -13.5492 Td[(access)-269(to)-270(a)-269(Project)-270(Gutenberg)]TJ/F23 10.9091 Tf 129.9028 0 Td[(")]TJ/F16 10.9091 Tf 13.6303 0 Td[(electronic)-269(work)-270(and)-269(you)-270(do)-269(not)]TJ -143.5331 -13.5492 Td[(agree)-206(to)-206(be)-205(bound)-206(by)-206(the)-206(terms)-206(of)-205(this)-206(agreement,)-215(you)-206(may)-205(obtain)]TJ 0 -13.5492 Td[(a)-304(refund)-304(from)-304(the)-304(person)-304(or)-304(entity)-304(to)-304(whom)-304(you)-304(paid)-304(the)-303(fee)-304(as)]TJ 0 -13.5492 Td[(set)-250(forth)-250(in)-250(paragraph)-250(1.E.8.)]TJ
ET
1 0 0 1 93.5434 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
101 0 obj <<
/Type /Page
/Contents 102 0 R
/Resources 100 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 95 0 R
/Annots [ 103 0 R 104 0 R 107 0 R ]
>> endobj
103 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [264.2961 377.5124 362.1593 387.2324]
/Subtype /Link
/A << /S /GoTo /D (pglicense) >>
>> endobj
104 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5]
/Rect [134.1469 363.9632 280.7976 373.6832]
/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org/license) >>
>> endobj
107 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [189.8814 63.7638 215.6377 73.4838]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E8) >>
>> endobj
97 0 obj <<
/D [101 0 R /XYZ 93.5434 529.134 null]
>> endobj
105 0 obj <<
/D [101 0 R /XYZ 93.5434 363.9632 null]
>> endobj
106 0 obj <<
/D [101 0 R /XYZ 93.5434 254.1186 null]
>> endobj
100 0 obj <<
/Font << /F16 6 0 R /F20 45 0 R /F23 94 0 R /F22 92 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
111 0 obj <<
/Length 4596
>>
stream
1 0 0 1 46.7715 548.9335 cm
0 g 0 G
1 0 0 1 -46.7715 -548.9335 cm
BT
/F16 10.9091 Tf 46.7715 548.9335 Td[(The)-250(Full)-250(Project)-250(Gutenberg)-250(License)-10393(15)]TJ
ET
1 0 0 1 327.4012 548.9335 cm
0 g 0 G
1 0 0 1 -327.4012 -548.9335 cm
BT
/F16 13.1507 Tf 46.7715 518.1751 Td[(1.B.)]TJ/F22 10.9091 Tf 0 -27.8662 Td[(\036)]TJ/F16 10.9091 Tf 4.8436 0 Td[(Project)-352(Gutenberg)]TJ/F22 10.9091 Tf 80.7901 0 Td[(\034)]TJ/F16 10.9091 Tf 8.6811 0 Td[(is)-352(a)-352(registered)-351(trademark.)-556(It)-351(may)-352(only)-352(be)]TJ -94.3148 -13.5492 Td[(used)-395(on)-394(or)-395(associated)-394(in)-395(any)-395(way)-394(with)-395(an)-394(electronic)-395(work)-394(by)]TJ 0 -13.5492 Td[(people)-347(who)-346(agree)-347(to)-346(be)-347(bound)-347(by)-346(the)-347(terms)-346(of)-347(this)-346(agreement.)]TJ 0 -13.5492 Td[(There)-255(are)-255(a)-256(few)-255(things)-255(that)-255(you)-255(can)-256(do)-255(with)-255(most)-255(Project)-255(Guten-)]TJ 0 -13.5492 Td[(berg)]TJ/F23 10.9091 Tf 19.3854 0 Td[(")]TJ/F16 10.9091 Tf 14.7401 0 Td[(electronic)-371(works)-371(even)-372(without)-371(complying)-371(with)-371(the)-371(full)]TJ -34.1255 -13.5492 Td[(terms)-362(of)-362(this)-361(agreement.)-586(See)-362(paragraph)-361(1.C)-362(below.)-586(There)-361(are)]TJ 0 -13.5492 Td[(a)-330(lot)-331(of)-330(things)-330(you)-331(can)-330(do)-330(with)-331(Project)-330(Gutenberg)]TJ/F23 10.9091 Tf 223.3206 0 Td[(")]TJ/F16 10.9091 Tf 14.2946 0 Td[(electronic)]TJ -237.6152 -13.5492 Td[(works)-193(if)-192(you)-193(follow)-192(the)-193(terms)-193(of)-192(this)-193(agreement)-192(and)-193(help)-192(preserve)]TJ 0 -13.5492 Td[(free)-284(future)-283(access)-284(to)-283(Project)-284(Gutenberg)]TJ/F23 10.9091 Tf 171.7712 0 Td[(")]TJ/F16 10.9091 Tf 13.7841 0 Td[(electronic)-284(works.)-350(See)]TJ -185.5553 -13.5492 Td[(paragraph)-250(1.E)-250(below.)]TJ/F16 13.1507 Tf 0 -43.3027 Td[(1.C.)]TJ/F16 10.9091 Tf 0 -27.8661 Td[(The)-247(Project)-247(Gutenberg)-247(Literary)-247(Archive)-247(Foundation)-247(\050)]TJ/F22 10.9091 Tf 233.6982 0 Td[(\036)]TJ/F16 10.9091 Tf 4.8437 0 Td[(the)-247(Foun-)]TJ -238.5419 -13.5492 Td[(dation)]TJ/F22 10.9091 Tf 27.2727 0 Td[(\034)]TJ/F16 10.9091 Tf 9.0575 0 Td[(or)-386(PGLAF\051,)-387(owns)-386(a)-386(compilation)-386(copyright)-387(in)-386(the)-386(col-)]TJ -36.3302 -13.5492 Td[(lection)-306(of)-305(Project)-306(Gutenberg)]TJ/F23 10.9091 Tf 125.7339 0 Td[(")]TJ/F16 10.9091 Tf 14.0241 0 Td[(electronic)-306(works.)-416(Nearly)-306(all)-305(the)]TJ -139.758 -13.5492 Td[(individual)-233(works)-232(in)-233(the)-233(collection)-232(are)-233(in)-233(the)-232(public)-233(domain)-233(in)-232(the)]TJ 0 -13.5492 Td[(United)-323(States.)-469(If)-322(an)-323(individual)-323(work)-323(is)-323(in)-323(the)-323(public)-323(domain)-322(in)]TJ 0 -13.5492 Td[(the)-344(United)-345(States)-344(and)-344(you)-345(are)-344(located)-344(in)-345(the)-344(United)-344(States,)-368(we)]TJ 0 -13.5492 Td[(do)-332(not)-331(claim)-332(a)-331(right)-332(to)-332(prevent)-331(you)-332(from)-331(copying,)-352(distributing,)]TJ 0 -13.5492 Td[(performing,)-231(displaying)-226(or)-226(creating)-226(derivative)-226(works)-226(based)-225(on)-226(the)]TJ 0 -13.5492 Td[(work)-232(as)-231(long)-232(as)-231(all)-232(references)-231(to)-232(Project)-231(Gutenberg)-232(are)-231(removed.)]TJ 0 -13.5492 Td[(Of)-187(course,)-200(we)-188(hope)-187(that)-188(you)-187(will)-188(support)-187(the)-188(Project)-187(Gutenberg)]TJ/F23 10.9091 Tf 269.9388 0 Td[(")]TJ/F16 10.9091 Tf -269.9388 -13.5492 Td[(mission)-334(of)-334(promoting)-334(free)-335(access)-334(to)-334(electronic)-334(works)-334(by)-334(freely)]TJ 0 -13.5492 Td[(sharing)-212(Project)-211(Gutenberg)]TJ/F23 10.9091 Tf 113.6846 0 Td[(")]TJ/F16 10.9091 Tf 12.9988 0 Td[(works)-212(in)-211(compliance)-212(with)-211(the)-212(terms)]TJ -126.6834 -13.5492 Td[(of)-441(this)-441(agreement)-441(for)-441(keeping)-441(the)-441(Project)-440(Gutenberg)]TJ/F23 10.9091 Tf 241.4996 0 Td[(")]TJ/F16 10.9091 Tf 15.5011 0 Td[(name)]TJ -257.0007 -13.5492 Td[(associated)-262(with)-262(the)-262(work.)-286(You)-262(can)-262(easily)-262(comply)-262(with)-262(the)-262(terms)]TJ 0 -13.5492 Td[(of)-283(this)-284(agreement)-283(by)-283(keeping)-284(this)-283(work)-283(in)-283(the)-284(same)-283(format)-283(with)]TJ 0 -13.5492 Td[(its)-287(attached)-287(full)-287(Project)-287(Gutenberg)]TJ/F23 10.9091 Tf 151.2842 0 Td[(")]TJ/F16 10.9091 Tf 13.8212 0 Td[(License)-287(when)-287(you)-287(share)-287(it)]TJ -165.1054 -13.5492 Td[(without)-250(charge)-250(with)-250(others.)]TJ
ET
1 0 0 1 46.7715 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
110 0 obj <<
/Type /Page
/Contents 111 0 R
/Resources 109 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 95 0 R
/Annots [ 113 0 R 114 0 R ]
>> endobj
113 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [229.5147 420.1848 244.9728 429.9048]
/Subtype /Link
/A << /S /GoTo /D (pglicense1C) >>
>> endobj
114 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [93.1133 365.988 107.9605 375.708]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E) >>
>> endobj
112 0 obj <<
/D [110 0 R /XYZ 46.7715 529.134 null]
>> endobj
115 0 obj <<
/D [110 0 R /XYZ 46.7715 354.098 null]
>> endobj
116 0 obj <<
/D [110 0 R /XYZ 46.7715 66.142 null]
>> endobj
109 0 obj <<
/Font << /F16 6 0 R /F22 92 0 R /F23 94 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
120 0 obj <<
/Length 3685
>>
stream
1 0 0 1 93.5434 548.9335 cm
0 g 0 G
1 0 0 1 -93.5434 -548.9335 cm
BT
/F16 10.9091 Tf 93.5434 548.9335 Td[(16Rede,)-170(gehalten)-150(bei)-150(der)-150(Er\303\266ffnung)-150(der)-150(Versammlung)-150(deutscher)-150(Naturforscher)-150(und)-150(\303rzte)-150(in)-150(Berlin,)-170(am)-150(18.)-217(September)-150(1828)]TJ
ET
1 0 0 1 374.1731 548.9335 cm
0 g 0 G
1 0 0 1 -374.1731 -548.9335 cm
BT
/F16 13.1507 Tf 93.5434 518.1751 Td[(1.D.)]TJ/F16 10.9091 Tf 0 -29.3501 Td[(The)-468(copyright)-467(laws)-468(of)-467(the)-468(place)-467(where)-468(you)-467(are)-468(located)-467(also)]TJ 0 -13.5492 Td[(govern)-267(what)-268(you)-267(can)-267(do)-268(with)-267(this)-267(work.)-302(Copyright)-268(laws)-267(in)-267(most)]TJ 0 -13.5492 Td[(countries)-366(are)-366(in)-366(a)-366(constant)-366(state)-366(of)-366(change.)-598(If)-366(you)-366(are)-366(outside)]TJ 0 -13.5492 Td[(the)-394(United)-394(States,)-430(check)-395(the)-394(laws)-394(of)-394(your)-394(country)-394(in)-394(addition)]TJ 0 -13.5492 Td[(to)-439(the)-440(terms)-439(of)-439(this)-439(agreement)-440(before)-439(downloading,)-486(copying,)]TJ 0 -13.5492 Td[(displaying,)-243(performing,)-243(distributing)-241(or)-240(creating)-241(derivative)-241(works)]TJ 0 -13.5492 Td[(based)-268(on)-269(this)-268(work)-269(or)-268(any)-269(other)-268(Project)-269(Gutenberg)]TJ/F23 10.9091 Tf 221.5701 0 Td[(")]TJ/F16 10.9091 Tf 13.6194 0 Td[(work.)-305(The)]TJ -235.1895 -13.5492 Td[(Foundation)-344(makes)-343(no)-344(representations)-343(concerning)-344(the)-343(copyright)]TJ 0 -13.5492 Td[(status)-250(of)-250(any)-250(work)-250(in)-250(any)-250(country)-250(outside)-250(the)-250(United)-250(States.)]TJ/F16 13.1507 Tf 0 -45.9739 Td[(1.E.)]TJ/F16 10.9091 Tf 0 -29.3501 Td[(Unless)-250(you)-250(have)-250(removed)-250(all)-250(references)-250(to)-250(Project)-250(Gutenberg:)]TJ 0 -27.1683 Td[(1.E.1.)]TJ 0 -27.1684 Td[(The)-259(following)-260(sentence,)-261(with)-260(active)-259(links)-259(to,)-262(or)-259(other)-259(immediate)]TJ 0 -13.5492 Td[(access)-465(to,)-520(the)-465(full)-466(Project)-465(Gutenberg)]TJ/F23 10.9091 Tf 170.488 0 Td[(")]TJ/F16 10.9091 Tf 15.7685 0 Td[(License)-465(must)-466(appear)]TJ -186.2565 -13.5492 Td[(prominently)-274(whenever)-275(any)-274(copy)-274(of)-275(a)-274(Project)-274(Gutenberg)]TJ/F23 10.9091 Tf 244.5283 0 Td[(")]TJ/F16 10.9091 Tf 13.6833 0 Td[(work)]TJ -258.2116 -13.5492 Td[(\050any)-421(work)-422(on)-421(which)-421(the)-422(phrase)]TJ/F22 10.9091 Tf 148.7542 0 Td[(\036)]TJ/F16 10.9091 Tf 4.8436 0 Td[(Project)-421(Gutenberg)]TJ/F22 10.9091 Tf 81.5487 0 Td[(\034)]TJ/F16 10.9091 Tf 9.4396 0 Td[(appears,)]TJ -244.5861 -13.5492 Td[(or)-346(with)-347(which)-346(the)-347(phrase)]TJ/F22 10.9091 Tf 115.8485 0 Td[(\036)]TJ/F16 10.9091 Tf 4.8436 0 Td[(Project)-346(Gutenberg)]TJ/F22 10.9091 Tf 80.7326 0 Td[(\034)]TJ/F16 10.9091 Tf 8.6235 0 Td[(is)-346(associated\051)-347(is)]TJ -210.0482 -13.5492 Td[(accessed,)-250(displayed,)-250(performed,)-250(viewed,)-250(copied)-250(or)-250(distributed:)]TJ/F16 9.8629 Tf 19.6364 -25.3499 Td[(This)-432(eBook)-432(is)-432(for)-432(the)-433(use)-432(of)-432(anyone)-432(anywhere)-432(at)-432(no)-432(cost)]TJ 0 -12.8218 Td[(and)-345(with)-344(almost)-345(no)-344(restrictions)-345(whatsoever.)-534(You)-345(may)-344(copy)]TJ 0 -12.8219 Td[(it,)-437(give)-400(it)-400(away)-400(or)-400(re-use)-400(it)-400(under)-400(the)-399(terms)-400(of)-400(the)-400(Project)]TJ 0 -12.8218 Td[(Gutenberg)-476(License)-476(included)-476(with)-476(this)-475(eBook)-476(or)-476(online)-476(at)]TJ 0 -12.8218 Td[(http://www.gutenberg.org)]TJ/F16 10.9091 Tf -19.6364 -40.2455 Td[(1.E.2.)]TJ
ET
1 0 0 1 93.5434 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
119 0 obj <<
/Type /Page
/Contents 120 0 R
/Resources 118 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 95 0 R
/Annots [ 122 0 R ]
>> endobj
122 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5]
/Rect [113.1798 104.2374 215.636 113.0252]
/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org) >>
>> endobj
117 0 obj <<
/D [119 0 R /XYZ 93.5434 364.9761 null]
>> endobj
121 0 obj <<
/D [119 0 R /XYZ 93.5434 302.7292 null]
>> endobj
123 0 obj <<
/D [119 0 R /XYZ 93.5434 91.1602 null]
>> endobj
118 0 obj <<
/Font << /F16 6 0 R /F23 94 0 R /F22 92 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
126 0 obj <<
/Length 3871
>>
stream
1 0 0 1 46.7715 548.9335 cm
0 g 0 G
1 0 0 1 -46.7715 -548.9335 cm
BT
/F16 10.9091 Tf 46.7715 548.9335 Td[(The)-250(Full)-250(Project)-250(Gutenberg)-250(License)-10393(17)]TJ
ET
1 0 0 1 327.4012 548.9335 cm
0 g 0 G
1 0 0 1 -327.4012 -548.9335 cm
BT
/F16 10.9091 Tf 46.7715 518.1751 Td[(If)-295(an)-295(individual)-295(Project)-295(Gutenberg)]TJ/F23 10.9091 Tf 151.6385 0 Td[(")]TJ/F16 10.9091 Tf 13.9096 0 Td[(electronic)-295(work)-295(is)-295(derived)]TJ -165.5481 -13.5492 Td[(from)-228(the)-228(public)-229(domain)-228(\050does)-228(not)-228(contain)-229(a)-228(notice)-228(indicating)-228(that)]TJ 0 -13.5492 Td[(it)-184(is)-183(posted)-184(with)-183(permission)-184(of)-183(the)-184(copyright)-183(holder\051,)-197(the)-184(work)-183(can)]TJ 0 -13.5492 Td[(be)-256(copied)-256(and)-256(distributed)-256(to)-256(anyone)-256(in)-256(the)-256(United)-255(States)-256(without)]TJ 0 -13.5492 Td[(paying)-230(any)-230(fees)-230(or)-230(charges.)-243(If)-230(you)-230(are)-230(redistributing)-230(or)-230(providing)]TJ 0 -13.5492 Td[(access)-248(to)-248(a)-248(work)-248(with)-248(the)-248(phrase)]TJ/F22 10.9091 Tf 143.744 0 Td[(\036)]TJ/F16 10.9091 Tf 4.8437 0 Td[(Project)-248(Gutenberg)]TJ/F22 10.9091 Tf 79.6573 0 Td[(\034)]TJ/F16 10.9091 Tf 7.5484 0 Td[(associated)]TJ -235.7934 -13.5492 Td[(with)-410(or)-411(appearing)-410(on)-410(the)-411(work,)-450(you)-410(must)-411(comply)-410(either)-410(with)]TJ 0 -13.5492 Td[(the)-424(requirements)-425(of)-424(paragraphs)-425(1.E.1)-424(through)-425(1.E.7)-424(or)-424(obtain)]TJ 0 -13.5492 Td[(permission)-280(for)-281(the)-280(use)-281(of)-280(the)-281(work)-280(and)-281(the)-280(Project)-280(Gutenberg)]TJ/F23 10.9091 Tf 269.9388 0 Td[(")]TJ/F16 10.9091 Tf -269.9388 -13.5492 Td[(trademark)-250(as)-250(set)-250(forth)-250(in)-250(paragraphs)-250(1.E.8)-250(or)-250(1.E.9.)]TJ 0 -38.6077 Td[(1.E.3.)]TJ 0 -26.2584 Td[(If)-344(an)-343(individual)-344(Project)-343(Gutenberg)]TJ/F23 10.9091 Tf 153.7548 0 Td[(")]TJ/F16 10.9091 Tf 14.4388 0 Td[(electronic)-344(work)-343(is)-344(posted)]TJ -168.1936 -13.5492 Td[(with)-351(the)-350(permission)-351(of)-351(the)-351(copyright)-350(holder,)-376(your)-351(use)-351(and)-350(dis-)]TJ 0 -13.5492 Td[(tribution)-257(must)-258(comply)-257(with)-257(both)-258(paragraphs)-257(1.E.1)-257(through)-257(1.E.7)]TJ 0 -13.5492 Td[(and)-301(any)-301(additional)-301(terms)-301(imposed)-301(by)-301(the)-301(copyright)-301(holder.)-402(Ad-)]TJ 0 -13.5492 Td[(ditional)-256(terms)-256(will)-255(be)-256(linked)-256(to)-256(the)-256(Project)-256(Gutenberg)]TJ/F23 10.9091 Tf 233.2208 0 Td[(")]TJ/F16 10.9091 Tf 13.4817 0 Td[(License)]TJ -246.7025 -13.5492 Td[(for)-267(all)-267(works)-267(posted)-268(with)-267(the)-267(permission)-267(of)-267(the)-267(copyright)-267(holder)]TJ 0 -13.5492 Td[(found)-250(at)-250(the)-250(beginning)-250(of)-250(this)-250(work.)]TJ 0 -38.6077 Td[(1.E.4.)]TJ 0 -26.2584 Td[(Do)-275(not)-275(unlink)-275(or)-274(detach)-275(or)-275(remove)-275(the)-275(full)-275(Project)-274(Gutenberg)]TJ/F23 10.9091 Tf 269.9388 0 Td[(")]TJ/F16 10.9091 Tf -269.9388 -13.5492 Td[(License)-330(terms)-329(from)-330(this)-329(work,)-350(or)-329(any)-330(files)-330(containing)-329(a)-330(part)-329(of)]TJ 0 -13.5492 Td[(this)-185(work)-185(or)-185(any)-185(other)-185(work)-185(associated)-185(with)-185(Project)-185(Gutenberg)]TJ/F23 10.9091 Tf 267.2116 0 Td[(")]TJ/F16 10.9091 Tf 10.6909 0 Td[(.)]TJ -277.9025 -38.6077 Td[(1.E.5.)]TJ 0 -26.2584 Td[(Do)-457(not)-457(copy,)-508(display,)-509(perform,)-508(distribute)-457(or)-457(redistribute)-456(this)]TJ 0 -13.5492 Td[(electronic)-441(work,)-488(or)-441(any)-441(part)-441(of)-440(this)-441(electronic)-441(work,)-488(without)]TJ 0 -13.5492 Td[(prominently)-258(displaying)-257(the)-258(sentence)-258(set)-257(forth)-258(in)-258(paragraph)-257(1.E.1)]TJ
ET
1 0 0 1 46.7715 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
125 0 obj <<
/Type /Page
/Contents 126 0 R
/Resources 124 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 95 0 R
/Annots [ 127 0 R 128 0 R 130 0 R 133 0 R ]
>> endobj
127 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [192.5246 420.9525 215.5536 430.6725]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E1) >>
>> endobj
128 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [206.1203 393.8541 229.1493 403.5741]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E8) >>
>> endobj
130 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [241.7911 301.8896 264.8201 311.6096]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E1) >>
>> endobj
133 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [304.3722 63.7638 327.4012 73.4838]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E1) >>
>> endobj
129 0 obj <<
/D [125 0 R /XYZ 46.7715 381.5049 null]
>> endobj
131 0 obj <<
/D [125 0 R /XYZ 46.7715 235.3436 null]
>> endobj
132 0 obj <<
/D [125 0 R /XYZ 46.7715 143.3791 null]
>> endobj
124 0 obj <<
/Font << /F16 6 0 R /F23 94 0 R /F22 92 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
136 0 obj <<
/Length 4073
>>
stream
1 0 0 1 93.5434 548.9335 cm
0 g 0 G
1 0 0 1 -93.5434 -548.9335 cm
BT
/F16 10.9091 Tf 93.5434 548.9335 Td[(18Rede,)-170(gehalten)-150(bei)-150(der)-150(Er\303\266ffnung)-150(der)-150(Versammlung)-150(deutscher)-150(Naturforscher)-150(und)-150(\303rzte)-150(in)-150(Berlin,)-170(am)-150(18.)-217(September)-150(1828)]TJ
ET
1 0 0 1 374.1731 548.9335 cm
0 g 0 G
1 0 0 1 -374.1731 -548.9335 cm
BT
/F16 10.9091 Tf 93.5434 518.1751 Td[(with)-394(active)-395(links)-394(or)-395(immediate)-394(access)-394(to)-395(the)-394(full)-395(terms)-394(of)-394(the)]TJ 0 -13.5492 Td[(Project)-250(Gutenberg)]TJ/F23 10.9091 Tf 79.6799 0 Td[(")]TJ/F16 10.9091 Tf 13.4181 0 Td[(License.)]TJ -93.098 -37.2185 Td[(1.E.6.)]TJ 0 -25.4866 Td[(You)-475(may)-476(convert)-475(to)-476(and)-475(distribute)-476(this)-475(work)-476(in)-475(any)-475(binary,)]TJ 0 -13.5492 Td[(compressed,)-287(marked)-280(up,)-287(nonproprietary)-280(or)-280(proprietary)-279(form,)-287(in-)]TJ 0 -13.5492 Td[(cluding)-234(any)-234(word)-233(processing)-234(or)-234(hypertext)-234(form.)-245(However,)-237(if)-233(you)]TJ 0 -13.5492 Td[(provide)-318(access)-318(to)-317(or)-318(distribute)-318(copies)-318(of)-318(a)-318(Project)-317(Gutenberg)]TJ/F23 10.9091 Tf 269.9388 0 Td[(")]TJ/F16 10.9091 Tf -269.9388 -13.5492 Td[(work)-462(in)-461(a)-462(format)-462(other)-462(than)]TJ/F22 10.9091 Tf 136.2594 0 Td[(\036)]TJ/F16 10.9091 Tf 4.8436 0 Td[(Plain)-462(Vanilla)-461(ASCII)]TJ/F22 10.9091 Tf 93.1033 0 Td[(\034)]TJ/F16 10.9091 Tf 9.8809 0 Td[(or)-462(other)]TJ -244.0872 -13.5492 Td[(format)-284(used)-284(in)-284(the)-284(official)-284(version)-284(posted)-284(on)-284(the)-283(official)-284(Project)]TJ 0 -13.5492 Td[(Gutenberg)]TJ/F23 10.9091 Tf 46.0472 0 Td[(")]TJ/F16 10.9091 Tf 13.8335 0 Td[(web)-288(site)-288(\050http://www.gutenberg.org\051,)-298(you)-288(must,)-297(at)]TJ -59.8807 -13.5492 Td[(no)-357(additional)-357(cost,)-383(fee)-357(or)-357(expense)-357(to)-357(the)-357(user,)-384(provide)-357(a)-356(copy,)]TJ 0 -13.5492 Td[(a)-380(means)-380(of)-379(exporting)-380(a)-380(copy,)-412(or)-380(a)-380(means)-380(of)-380(obtaining)-380(a)-379(copy)]TJ 0 -13.5492 Td[(upon)-313(request,)-328(of)-313(the)-313(work)-313(in)-312(its)-313(original)]TJ/F22 10.9091 Tf 181.0894 0 Td[(\036)]TJ/F16 10.9091 Tf 4.8436 0 Td[(Plain)-313(Vanilla)-313(ASCII)]TJ/F22 10.9091 Tf 89.8531 0 Td[(\034)]TJ/F16 10.9091 Tf -275.7861 -13.5492 Td[(or)-248(other)-247(form.)-250(Any)-247(alternate)-248(format)-248(must)-247(include)-248(the)-248(full)-247(Project)]TJ 0 -13.5492 Td[(Gutenberg)]TJ/F23 10.9091 Tf 46.0472 0 Td[(")]TJ/F16 10.9091 Tf 13.4182 0 Td[(License)-250(as)-250(specified)-250(in)-250(paragraph)-250(1.E.1.)]TJ -59.4654 -37.2185 Td[(1.E.7.)]TJ 0 -25.4867 Td[(Do)-341(not)-342(charge)-341(a)-341(fee)-341(for)-342(access)-341(to,)-364(viewing,)-364(displaying,)-364(perfor-)]TJ 0 -13.5492 Td[(ming,)-436(copying)-399(or)-399(distributing)-399(any)-399(Project)-399(Gutenberg)]TJ/F23 10.9091 Tf 238.9256 0 Td[(")]TJ/F16 10.9091 Tf 15.0424 0 Td[(works)]TJ -253.968 -13.5492 Td[(unless)-250(you)-250(comply)-250(with)-250(paragraph)-250(1.E.8)-250(or)-250(1.E.9.)]TJ 0 -37.2184 Td[(1.E.8.)]TJ 0 -25.4867 Td[(You)-440(may)-440(charge)-440(a)-439(reasonable)-440(fee)-440(for)-440(copies)-440(of)-440(or)-439(providing)]TJ 0 -13.5492 Td[(access)-361(to)-361(or)-361(distributing)-361(Project)-361(Gutenberg)]TJ/F23 10.9091 Tf 192.388 0 Td[(")]TJ/F16 10.9091 Tf 14.6282 0 Td[(electronic)-361(works)]TJ -207.0162 -13.5492 Td[(provided)-250(that)]TJ/F22 10.9091 Tf 12.5455 -20.0321 Td[(")]TJ/F16 10.9091 Tf 9.2727 0 Td[(You)-218(pay)-218(a)-219(royalty)-218(fee)-218(of)-218(20%)-218(of)-219(the)-218(gross)-218(profits)-218(you)-218(derive)]TJ 0 -13.5492 Td[(from)-212(the)-211(use)-212(of)-212(Project)-211(Gutenberg)]TJ/F23 10.9091 Tf 146.6659 0 Td[(")]TJ/F16 10.9091 Tf 13.0001 0 Td[(works)-212(calculated)-211(using)]TJ -159.666 -13.5492 Td[(the)-431(method)-432(you)-431(already)-432(use)-431(to)-432(calculate)-431(your)-431(applicable)]TJ
ET
1 0 0 1 93.5434 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
135 0 obj <<
/Type /Page
/Contents 136 0 R
/Resources 134 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 95 0 R
/Annots [ 138 0 R 140 0 R ]
>> endobj
138 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [301.1431 290.5014 326.8994 300.2214]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E1) >>
>> endobj
140 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [246.554 200.6979 269.5831 210.4179]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E8) >>
>> endobj
137 0 obj <<
/D [135 0 R /XYZ 93.5434 490.5159 null]
>> endobj
139 0 obj <<
/D [135 0 R /XYZ 93.5434 278.7696 null]
>> endobj
108 0 obj <<
/D [135 0 R /XYZ 93.5434 188.9661 null]
>> endobj
134 0 obj <<
/Font << /F16 6 0 R /F23 94 0 R /F22 92 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
143 0 obj <<
/Length 4430
>>
stream
1 0 0 1 46.7715 548.9335 cm
0 g 0 G
1 0 0 1 -46.7715 -548.9335 cm
BT
/F16 10.9091 Tf 46.7715 548.9335 Td[(The)-250(Full)-250(Project)-250(Gutenberg)-250(License)-10393(19)]TJ
ET
1 0 0 1 327.4012 548.9335 cm
0 g 0 G
1 0 0 1 -327.4012 -548.9335 cm
BT
/F16 10.9091 Tf 68.5897 518.1751 Td[(taxes.)-739(The)-413(fee)-413(is)-413(owed)-413(to)-413(the)-413(owner)-413(of)-413(the)-412(Project)-413(Gu-)]TJ 0 -13.5492 Td[(tenberg)]TJ/F23 10.9091 Tf 32.7163 0 Td[(")]TJ/F16 10.9091 Tf 13.8591 0 Td[(trademark,)-301(but)-290(he)-290(has)-291(agreed)-290(to)-291(donate)-290(royalties)]TJ -46.5754 -13.5492 Td[(under)-293(this)-292(paragraph)-293(to)-293(the)-292(Project)-293(Gutenberg)-293(Literary)-292(Ar-)]TJ 0 -13.5492 Td[(chive)-193(Foundation.)-232(Royalty)-193(payments)-194(must)-193(be)-193(paid)-194(within)-193(60)]TJ 0 -13.5492 Td[(days)-312(following)-312(each)-312(date)-312(on)-312(which)-312(you)-312(prepare)-312(\050or)-312(are)-312(le-)]TJ 0 -13.5492 Td[(gally)-217(required)-217(to)-217(prepare\051)-217(your)-217(periodic)-217(tax)-216(returns.)-239(Royalty)]TJ 0 -13.5492 Td[(payments)-284(should)-284(be)-284(clearly)-284(marked)-284(as)-284(such)-284(and)-284(sent)-283(to)-284(the)]TJ 0 -13.5492 Td[(Project)-350(Gutenberg)-350(Literary)-351(Archive)-350(Foundation)-350(at)-350(the)-350(ad-)]TJ 0 -13.5492 Td[(dress)-312(specified)-312(in)-312(Section)-312(4,)]TJ/F22 10.9091 Tf 128.3829 0 Td[(\036)]TJ/F16 10.9091 Tf 4.8436 0 Td[(Information)-312(about)-312(donations)]TJ -133.2265 -13.5492 Td[(to)-250(the)-250(Project)-250(Gutenberg)-250(Literary)-250(Archive)-250(Foundation.)]TJ/F22 10.9091 Tf 237.8395 0 Td[(\034)]TJ/F16 10.9091 Tf -237.8395 -14.2791 Td[(You)-425(provide)-425(a)-425(full)-424(refund)-425(of)-425(any)-425(money)-425(paid)-425(by)-425(a)-424(user)]TJ 0 -13.5492 Td[(who)-339(notifies)-339(you)-340(in)-339(writing)-339(\050or)-339(by)-340(e-mail\051)-339(within)-339(30)-339(days)]TJ 0 -13.5492 Td[(of)-343(receipt)-343(that)-343(s/he)-343(does)-344(not)-343(agree)-343(to)-343(the)-343(terms)-343(of)-343(the)-343(full)]TJ 0 -13.5492 Td[(Project)-235(Gutenberg)]TJ/F23 10.9091 Tf 79.5139 0 Td[(")]TJ/F16 10.9091 Tf 13.2522 0 Td[(License.)-245(You)-235(must)-234(require)-235(such)-235(a)-235(user)]TJ -92.7661 -13.5492 Td[(to)-324(return)-324(or)-323(destroy)-324(all)-324(copies)-324(of)-323(the)-324(works)-324(possessed)-324(in)-323(a)]TJ 0 -13.5492 Td[(physical)-322(medium)-321(and)-322(discontinue)-321(all)-322(use)-322(of)-321(and)-322(all)-321(access)]TJ 0 -13.5492 Td[(to)-250(other)-250(copies)-250(of)-250(Project)-250(Gutenberg)]TJ/F23 10.9091 Tf 158.4542 0 Td[(")]TJ/F16 10.9091 Tf 13.4182 0 Td[(works.)]TJ -171.8724 -14.2791 Td[(You)-427(provide,)-472(in)-427(accordance)-428(with)-427(paragraph)-427(1.F.3,)-472(a)-427(full)]TJ 0 -13.5492 Td[(refund)-215(of)-216(any)-215(money)-216(paid)-215(for)-216(a)-215(work)-216(or)-215(a)-216(replacement)-215(copy,)]TJ 0 -13.5492 Td[(if)-245(a)-246(defect)-245(in)-245(the)-246(electronic)-245(work)-245(is)-246(discovered)-245(and)-245(reported)]TJ 0 -13.5492 Td[(to)-250(you)-250(within)-250(90)-250(days)-250(of)-250(receipt)-250(of)-250(the)-250(work.)]TJ 0 -14.2791 Td[(You)-278(comply)-279(with)-278(all)-279(other)-278(terms)-279(of)-278(this)-279(agreement)-278(for)-278(free)]TJ 0 -13.5492 Td[(distribution)-250(of)-250(Project)-250(Gutenberg)]TJ/F23 10.9091 Tf 144.5342 0 Td[(")]TJ/F16 10.9091 Tf 13.4182 0 Td[(works.)]TJ -179.7706 -41.9366 Td[(1.E.9.)]TJ 0 -28.1079 Td[(If)-316(you)-315(wish)-316(to)-316(charge)-315(a)-316(fee)-316(or)-315(distribute)-316(a)-316(Project)-315(Gutenberg)]TJ/F23 10.9091 Tf 269.9389 0 Td[(")]TJ/F16 10.9091 Tf -269.9389 -13.5492 Td[(electronic)-233(work)-233(or)-233(group)-234(of)-233(works)-233(on)-233(different)-233(terms)-233(than)-233(are)-233(set)]TJ 0 -13.5492 Td[(forth)-346(in)-347(this)-346(agreement,)-371(you)-346(must)-346(obtain)-347(permission)-346(in)-346(writing)]TJ 0 -13.5492 Td[(from)-161(both)-160(the)-161(Project)-160(Gutenberg)-161(Literary)-160(Archive)-161(Foundation)-160(and)]TJ 0 -13.5492 Td[(Michael)-287(Hart,)-297(the)-287(owner)-287(of)-287(the)-287(Project)-287(Gutenberg)]TJ/F23 10.9091 Tf 219.8537 0 Td[(")]TJ/F16 10.9091 Tf 13.8234 0 Td[(trademark.)]TJ -233.6771 -13.5492 Td[(Contact)-250(the)-250(Foundation)-250(as)-250(set)-250(forth)-250(in)-250(Section)-250(3)-250(below.)]TJ
ET
1 0 0 1 46.7715 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
142 0 obj <<
/Type /Page
/Contents 143 0 R
/Resources 141 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 150 0 R
/Annots [ 144 0 R 145 0 R 146 0 R 148 0 R ]
>> endobj
144 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [149.0874 407.4142 327.4012 417.1233]
/Subtype /Link
/A << /S /GoTo /D (pglicense4) >>
>> endobj
145 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [46.7715 393.8541 311.2729 403.6069]
/Subtype /Link
/A << /S /GoTo /D (pglicense4) >>
>> endobj
146 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [272.4411 284.0007 294.8701 293.7207]
/Subtype /Link
/A << /S /GoTo /D (pglicense1F3) >>
>> endobj
148 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [213.7347 79.9708 254.6437 87.4544]
/Subtype /Link
/A << /S /GoTo /D (pglicense3) >>
>> endobj
147 0 obj <<
/D [142 0 R /XYZ 46.7715 201.6961 null]
>> endobj
149 0 obj <<
/D [142 0 R /XYZ 46.7715 66.142 null]
>> endobj
141 0 obj <<
/Font << /F16 6 0 R /F23 94 0 R /F22 92 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
156 0 obj <<
/Length 4011
>>
stream
1 0 0 1 93.5434 548.9335 cm
0 g 0 G
1 0 0 1 -93.5434 -548.9335 cm
BT
/F16 10.9091 Tf 93.5434 548.9335 Td[(20Rede,)-170(gehalten)-150(bei)-150(der)-150(Er\303\266ffnung)-150(der)-150(Versammlung)-150(deutscher)-150(Naturforscher)-150(und)-150(\303rzte)-150(in)-150(Berlin,)-170(am)-150(18.)-217(September)-150(1828)]TJ
ET
1 0 0 1 374.1731 548.9335 cm
0 g 0 G
1 0 0 1 -374.1731 -548.9335 cm
BT
/F16 13.1507 Tf 93.5434 518.1751 Td[(1.F.)]TJ/F16 10.9091 Tf 0 -39.1625 Td[(1.F.1.)]TJ 0 -25.3546 Td[(Project)-288(Gutenberg)-289(volunteers)-288(and)-289(employees)-288(expend)-288(considera-)]TJ 0 -13.5492 Td[(ble)-365(effort)-365(to)-365(identify,)-393(do)-365(copyright)-365(research)-365(on,)-394(transcribe)-364(and)]TJ 0 -13.5492 Td[(proofread)-383(public)-383(domain)-382(works)-383(in)-383(creating)-383(the)-383(Project)-382(Guten-)]TJ 0 -13.5492 Td[(berg)]TJ/F23 10.9091 Tf 19.3854 0 Td[(")]TJ/F16 10.9091 Tf 15.0968 0 Td[(collection.)-712(Despite)-403(these)-404(efforts,)-443(Project)-404(Gutenberg)]TJ/F23 10.9091 Tf 235.4566 0 Td[(")]TJ/F16 10.9091 Tf -269.9388 -13.5492 Td[(electronic)-261(works,)-265(and)-261(the)-262(medium)-261(on)-262(which)-261(they)-262(may)-261(be)-261(stored,)]TJ 0 -13.5492 Td[(may)-312(contain)]TJ/F22 10.9091 Tf 57.7077 0 Td[(\036)]TJ/F16 10.9091 Tf 4.8436 0 Td[(Defects,)]TJ/F22 10.9091 Tf 36.0436 0 Td[(\034)]TJ/F16 10.9091 Tf 8.2466 0 Td[(such)-312(as,)-327(but)-312(not)-312(limited)-312(to,)-328(incomplete,)]TJ -106.8415 -13.5492 Td[(inaccurate)-395(or)-395(corrupt)-395(data,)-431(transcription)-395(errors,)-431(a)-395(copyright)-394(or)]TJ 0 -13.5492 Td[(other)-266(intellectual)-267(property)-266(infringement,)-271(a)-266(defective)-267(or)-266(damaged)]TJ 0 -13.5492 Td[(disk)-277(or)-277(other)-277(medium,)-284(a)-277(computer)-277(virus,)-283(or)-277(computer)-277(codes)-277(that)]TJ 0 -13.5492 Td[(damage)-250(or)-250(cannot)-250(be)-250(read)-250(by)-250(your)-250(equipment.)]TJ 0 -36.9807 Td[(1.F.2.)]TJ 0 -25.3546 Td[(LIMITED)-451(WARRANTY,)-451(DISCLAIMER)-451(OF)-451(DAMAGES)]TJ/F22 10.9091 Tf 269.7206 0 Td[(\024)]TJ/F16 10.9091 Tf -269.7206 -13.5492 Td[(Except)-334(for)-334(the)]TJ/F22 10.9091 Tf 67.2814 0 Td[(\036)]TJ/F16 10.9091 Tf 4.8437 0 Td[(Right)-334(of)-334(Replacement)-334(or)-335(Refund)]TJ/F22 10.9091 Tf 146.0794 0 Td[(\034)]TJ/F16 10.9091 Tf 8.489 0 Td[(described)-334(in)]TJ -226.6935 -13.5492 Td[(paragraph)-328(1.F.3,)-347(the)-328(Project)-327(Gutenberg)-328(Literary)-328(Archive)-327(Foun-)]TJ 0 -13.5492 Td[(dation,)-224(the)-218(owner)-218(of)-217(the)-218(Project)-218(Gutenberg)]TJ/F23 10.9091 Tf 184.2848 0 Td[(")]TJ/F16 10.9091 Tf 13.0661 0 Td[(trademark,)-224(and)-218(any)]TJ -197.3509 -13.5492 Td[(other)-361(party)-361(distributing)-361(a)-361(Project)-361(Gutenberg)]TJ/F23 10.9091 Tf 196.6316 0 Td[(")]TJ/F16 10.9091 Tf 14.6282 0 Td[(electronic)-361(work)]TJ -211.2598 -13.5492 Td[(under)-320(this)-319(agreement,)-337(disclaim)-320(all)-319(liability)-320(to)-319(you)-320(for)-319(damages,)]TJ 0 -13.5492 Td[(costs)-316(and)-315(expenses,)-333(including)-315(legal)-316(fees.)-447(YOU)-316(AGREE)-315(THAT)]TJ 0 -13.5492 Td[(YOU)-394(HAVE)-394(NO)-395(REMEDIES)-394(FOR)-394(NEGLIGENCE,)-394(STRICT)]TJ 0 -13.5492 Td[(LIABILITY,)-450(BREACH)-449(OF)-450(WARRANTY)-449(OR)-450(BREACH)-449(OF)]TJ 0 -13.5492 Td[(CONTRACT)-234(EXCEPT)-234(THOSE)-234(PROVIDED)-234(IN)-233(PARAGRAPH)]TJ 0 -13.5492 Td[(F3.)-298(YOU)-267(AGREE)-266(THAT)-266(THE)-266(FOUNDATION,)-266(THE)-266(TRADE-)]TJ 0 -13.5492 Td[(MARK)-367(OWNER,)-366(AND)-367(ANY)-366(DISTRIBUTOR)-367(UNDER)-366(THIS)]TJ 0 -13.5492 Td[(AGREEMENT)-376(WILL)-375(NOT)-376(BE)-376(LIABLE)-375(TO)-376(YOU)-376(FOR)-375(AC-)]TJ 0 -13.5492 Td[(TUAL,)-210(DIRECT,)-210(INDIRECT,)-210(CONSEQUENTIAL,)-209(PUNITIVE)]TJ 0 -13.5492 Td[(OR)-223(INCIDENTAL)-223(DAMAGES)-224(EVEN)-223(IF)-223(YOU)-223(GIVE)-223(NOTICE)]TJ 0 -13.5492 Td[(OF)-250(THE)-250(POSSIBILITY)-250(OF)-250(SUCH)-250(DAMAGE.)]TJ
ET
1 0 0 1 93.5434 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
155 0 obj <<
/Type /Page
/Contents 156 0 R
/Resources 154 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 150 0 R
/Annots [ 159 0 R ]
>> endobj
159 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [93.5434 239.9034 163.162 249.6234]
/Subtype /Link
/A << /S /GoTo /D (pglicense1F3) >>
>> endobj
157 0 obj <<
/D [155 0 R /XYZ 93.5434 504.2488 null]
>> endobj
158 0 obj <<
/D [155 0 R /XYZ 93.5434 317.7109 null]
>> endobj
154 0 obj <<
/Font << /F16 6 0 R /F23 94 0 R /F22 92 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
162 0 obj <<
/Length 3719
>>
stream
1 0 0 1 46.7715 548.9335 cm
0 g 0 G
1 0 0 1 -46.7715 -548.9335 cm
BT
/F16 10.9091 Tf 46.7715 548.9335 Td[(The)-250(Full)-250(Project)-250(Gutenberg)-250(License)-10393(21)]TJ
ET
1 0 0 1 327.4012 548.9335 cm
0 g 0 G
1 0 0 1 -327.4012 -548.9335 cm
BT
/F16 10.9091 Tf 46.7715 518.1751 Td[(1.F.3.)]TJ 0 -23.9286 Td[(LIMITED)-421(RIGHT)-421(OF)-422(REPLACEMENT)-421(OR)-421(REFUND)]TJ/F22 10.9091 Tf 257.8587 0 Td[(\024)]TJ/F16 10.9091 Tf 15.5056 0 Td[(If)]TJ -273.3643 -13.5492 Td[(you)-434(discover)-434(a)-434(defect)-434(in)-434(this)-434(electronic)-434(work)-434(within)-433(90)-434(days)]TJ 0 -13.5492 Td[(of)-335(receiving)-334(it,)-356(you)-335(can)-335(receive)-334(a)-335(refund)-335(of)-334(the)-335(money)-335(\050if)-334(any\051)]TJ 0 -13.5492 Td[(you)-369(paid)-369(for)-369(it)-370(by)-369(sending)-369(a)-369(written)-369(explanation)-369(to)-369(the)-369(person)]TJ 0 -13.5492 Td[(you)-430(received)-430(the)-431(work)-430(from.)-790(If)-430(you)-431(received)-430(the)-430(work)-430(on)-430(a)]TJ 0 -13.5492 Td[(physical)-231(medium,)-236(you)-231(must)-231(return)-232(the)-231(medium)-232(with)-231(your)-231(written)]TJ 0 -13.5492 Td[(explanation.)-706(The)-402(person)-402(or)-402(entity)-402(that)-402(provided)-402(you)-401(with)-402(the)]TJ 0 -13.5492 Td[(defective)-301(work)-301(may)-301(elect)-300(to)-301(provide)-301(a)-301(replacement)-301(copy)-301(in)-300(lieu)]TJ 0 -13.5492 Td[(of)-305(a)-305(refund.)-416(If)-305(you)-306(received)-305(the)-305(work)-305(electronically,)-319(the)-305(person)]TJ 0 -13.5492 Td[(or)-348(entity)-347(providing)-348(it)-347(to)-348(you)-347(may)-348(choose)-347(to)-348(give)-347(you)-348(a)-347(second)]TJ 0 -13.5492 Td[(opportunity)-226(to)-225(receive)-226(the)-226(work)-226(electronically)-225(in)-226(lieu)-226(of)-226(a)-225(refund.)]TJ 0 -13.5492 Td[(If)-315(the)-315(second)-315(copy)-315(is)-315(also)-315(defective,)-331(you)-315(may)-315(demand)-315(a)-314(refund)]TJ 0 -13.5492 Td[(in)-250(writing)-250(without)-250(further)-250(opportunities)-250(to)-250(fix)-250(the)-250(problem.)]TJ 0 -34.3079 Td[(1.F.4.)]TJ 0 -23.9286 Td[(Except)-258(for)-258(the)-259(limited)-258(right)-258(of)-258(replacement)-259(or)-258(refund)-258(set)-258(forth)-258(in)]TJ 0 -13.5492 Td[(paragraph)-225(1.F.3,)-230(this)-225(work)-226(is)-225(provided)-225(to)-225(you)-225('AS-IS,')-225(WITH)-225(NO)]TJ 0 -13.5492 Td[(OTHER)-346(WARRANTIES)-346(OF)-345(ANY)-346(KIND,)-346(EXPRESS)-346(OR)-345(IM-)]TJ 0 -13.5492 Td[(PLIED,)-172(INCLUDING)-173(BUT)-172(NOT)-173(LIMITED)-172(TO)-172(WARRANTIES)]TJ 0 -13.5492 Td[(OF)-190(MERCHANTIBILITY)-190(OR)-190(FITNESS)-190(FOR)-190(ANY)-190(PURPOSE.)]TJ 0 -34.3079 Td[(1.F.5.)]TJ 0 -23.9286 Td[(Some)-272(states)-273(do)-272(not)-272(allow)-272(disclaimers)-273(of)-272(certain)-272(implied)-272(warran-)]TJ 0 -13.5492 Td[(ties)-255(or)-254(the)-255(exclusion)-255(or)-255(limitation)-254(of)-255(certain)-255(types)-255(of)-254(damages.)-264(If)]TJ 0 -13.5492 Td[(any)-315(disclaimer)-316(or)-315(limitation)-315(set)-315(forth)-316(in)-315(this)-315(agreement)-315(violates)]TJ 0 -13.5492 Td[(the)-302(law)-302(of)-303(the)-302(state)-302(applicable)-302(to)-303(this)-302(agreement,)-315(the)-302(agreement)]TJ 0 -13.5492 Td[(shall)-377(be)-377(interpreted)-377(to)-377(make)-377(the)-377(maximum)-377(disclaimer)-377(or)-377(limi-)]TJ 0 -13.5492 Td[(tation)-367(permitted)-366(by)-367(the)-366(applicable)-367(state)-366(law.)-600(The)-367(invalidity)-366(or)]TJ 0 -13.5492 Td[(unenforceability)-192(of)-192(any)-192(provision)-192(of)-192(this)-192(agreement)-192(shall)-191(not)-192(void)]TJ 0 -13.5492 Td[(the)-250(remaining)-250(provisions.)]TJ
ET
1 0 0 1 46.7715 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
161 0 obj <<
/Type /Page
/Contents 162 0 R
/Resources 160 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 150 0 R
/Annots [ 164 0 R ]
>> endobj
164 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [46.7715 257.4923 115.2712 267.2123]
/Subtype /Link
/A << /S /GoTo /D (pglicense1F3) >>
>> endobj
152 0 obj <<
/D [161 0 R /XYZ 46.7715 529.134 null]
>> endobj
163 0 obj <<
/D [161 0 R /XYZ 46.7715 318.8986 null]
>> endobj
165 0 obj <<
/D [161 0 R /XYZ 46.7715 208.7017 null]
>> endobj
160 0 obj <<
/Font << /F16 6 0 R /F22 92 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
168 0 obj <<
/Length 4052
>>
stream
1 0 0 1 93.5434 548.9335 cm
0 g 0 G
1 0 0 1 -93.5434 -548.9335 cm
BT
/F16 10.9091 Tf 93.5434 548.9335 Td[(22Rede,)-170(gehalten)-150(bei)-150(der)-150(Er\303\266ffnung)-150(der)-150(Versammlung)-150(deutscher)-150(Naturforscher)-150(und)-150(\303rzte)-150(in)-150(Berlin,)-170(am)-150(18.)-217(September)-150(1828)]TJ
ET
1 0 0 1 374.1731 548.9335 cm
0 g 0 G
1 0 0 1 -374.1731 -548.9335 cm
BT
/F16 10.9091 Tf 93.5434 518.1751 Td[(1.F.6.)]TJ 0 -27.8765 Td[(INDEMNITY)]TJ/F22 10.9091 Tf 65.981 0 Td[(\024)]TJ/F16 10.9091 Tf 15.0916 0 Td[(You)-383(agree)-384(to)-383(indemnify)-384(and)-383(hold)-383(the)-384(Foun-)]TJ -81.0726 -13.5492 Td[(dation,)-554(the)-494(trademark)-493(owner,)-555(any)-493(agent)-494(or)-493(employee)-494(of)-493(the)]TJ 0 -13.5492 Td[(Foundation,)-494(anyone)-445(providing)-445(copies)-445(of)-445(Project)-445(Gutenberg)]TJ/F23 10.9091 Tf 269.9388 0 Td[(")]TJ/F16 10.9091 Tf -269.9388 -13.5492 Td[(electronic)-436(works)-436(in)-437(accordance)-436(with)-436(this)-436(agreement,)-483(and)-436(any)]TJ 0 -13.5492 Td[(volunteers)-266(associated)-266(with)-266(the)-266(production,)-270(promotion)-266(and)-265(distri-)]TJ 0 -13.5492 Td[(bution)-307(of)-308(Project)-307(Gutenberg)]TJ/F23 10.9091 Tf 123.9806 0 Td[(")]TJ/F16 10.9091 Tf 14.0432 0 Td[(electronic)-307(works,)-322(harmless)-307(from)]TJ -138.0238 -13.5492 Td[(all)-336(liability,)-357(costs)-336(and)-336(expenses,)-358(including)-336(legal)-336(fees,)-357(that)-336(arise)]TJ 0 -13.5492 Td[(directly)-263(or)-263(indirectly)-263(from)-264(any)-263(of)-263(the)-263(following)-263(which)-263(you)-263(do)-263(or)]TJ 0 -13.5492 Td[(cause)-188(to)-189(occur:)-219(\050a\051)-189(distribution)-188(of)-189(this)-188(or)-188(any)-189(Project)-188(Gutenberg)]TJ/F23 10.9091 Tf 269.9388 0 Td[(")]TJ/F16 10.9091 Tf -269.9388 -13.5492 Td[(work,)-413(\050b\051)-381(alteration,)-413(modification,)-414(or)-380(additions)-381(or)-381(deletions)-380(to)]TJ 0 -13.5492 Td[(any)-250(Project)-250(Gutenberg)]TJ/F23 10.9091 Tf 98.1598 0 Td[(")]TJ/F16 10.9091 Tf 13.4182 0 Td[(work,)-250(and)-250(\050c\051)-250(any)-250(Defect)-250(you)-250(cause.)]TJ/F16 15.7808 Tf -111.578 -53.2861 Td[(Section)-250(2.)]TJ/F16 13.1507 Tf 32.4217 -52.0487 Td[(Information)-260(about)-259(the)-260(Mission)-260(of)-260(Project)]TJ 73.6949 -17.0958 Td[(Gutenberg)]TJ/F23 13.1507 Tf 55.5089 0 Td[(")]TJ/F16 10.9091 Tf -161.6255 -30.0583 Td[(Project)-400(Gutenberg)]TJ/F23 10.9091 Tf 81.3185 0 Td[(")]TJ/F16 10.9091 Tf 15.0568 0 Td[(is)-400(synonymous)-400(with)-401(the)-400(free)-400(distribution)]TJ -96.3753 -13.5492 Td[(of)-284(electronic)-284(works)-284(in)-285(formats)-284(readable)-284(by)-284(the)-284(widest)-284(variety)-284(of)]TJ 0 -13.5492 Td[(computers)-351(including)-350(obsolete,)-376(old,)-376(middle-aged)-351(and)-351(new)-350(com-)]TJ 0 -13.5492 Td[(puters.)-328(It)-276(exists)-277(because)-276(of)-276(the)-276(efforts)-276(of)-276(hundreds)-276(of)-276(volunteers)]TJ 0 -13.5492 Td[(and)-250(donations)-250(from)-250(people)-250(in)-250(all)-250(walks)-250(of)-250(life.)]TJ 11.9552 -14.2329 Td[(Volunteers)-162(and)-163(financial)-162(support)-162(to)-163(provide)-162(volunteers)-162(with)-163(the)]TJ -11.9552 -13.5492 Td[(assistance)-198(they)-199(need,)-208(is)-199(critical)-198(to)-199(reaching)-198(Project)-198(Gutenberg)]TJ/F23 10.9091 Tf 263.7316 0 Td[(")]TJ/F16 10.9091 Tf 10.6909 0 Td[('s)]TJ -274.4225 -13.5492 Td[(goals)-309(and)-308(ensuring)-309(that)-309(the)-308(Project)-309(Gutenberg)]TJ/F23 10.9091 Tf 203.2042 0 Td[(")]TJ/F16 10.9091 Tf 14.0583 0 Td[(collection)-309(will)]TJ -217.2625 -13.5492 Td[(remain)-382(freely)-381(available)-382(for)-381(generations)-382(to)-382(come.)-644(In)-382(2001,)-414(the)]TJ 0 -13.5492 Td[(Project)-350(Gutenberg)-351(Literary)-350(Archive)-350(Foundation)-351(was)-350(created)-350(to)]TJ 0 -13.5492 Td[(provide)-302(a)-303(secure)-302(and)-302(permanent)-303(future)-302(for)-302(Project)-302(Gutenberg)]TJ/F23 10.9091 Tf 269.9389 0 Td[(")]TJ
ET
1 0 0 1 93.5434 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
167 0 obj <<
/Type /Page
/Contents 168 0 R
/Resources 166 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 150 0 R
>> endobj
169 0 obj <<
/D [167 0 R /XYZ 93.5434 529.134 null]
>> endobj
170 0 obj <<
/D [167 0 R /XYZ 93.5434 338.7847 null]
>> endobj
166 0 obj <<
/Font << /F16 6 0 R /F22 92 0 R /F23 94 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
173 0 obj <<
/Length 3191
>>
stream
1 0 0 1 46.7715 548.9335 cm
0 g 0 G
1 0 0 1 -46.7715 -548.9335 cm
BT
/F16 10.9091 Tf 46.7715 548.9335 Td[(The)-250(Full)-250(Project)-250(Gutenberg)-250(License)-10393(23)]TJ
ET
1 0 0 1 327.4012 548.9335 cm
0 g 0 G
1 0 0 1 -327.4012 -548.9335 cm
BT
/F16 10.9091 Tf 46.7715 518.1751 Td[(and)-412(future)-413(generations.)-737(To)-412(learn)-412(more)-412(about)-413(the)-412(Project)-412(Gu-)]TJ 0 -13.5492 Td[(tenberg)-334(Literary)-335(Archive)-334(Foundation)-334(and)-335(how)-334(your)-334(efforts)-334(and)]TJ 0 -13.5492 Td[(donations)-225(can)-225(help,)-229(see)-225(Sections)-225(3)-225(and)-224(4)-225(and)-225(the)-225(Foundation)-224(web)]TJ 0 -13.5492 Td[(page)-250(at)-250(http://www.pglaf.org.)]TJ/F16 15.7808 Tf 0 -46.0426 Td[(Section)-250(3.)]TJ/F16 13.1507 Tf 10.3759 -44.8051 Td[(Information)-253(about)-253(the)-253(Project)-253(Gutenberg)-254(Literary)]TJ 76.9859 -17.0959 Td[(Archive)-276(Foundation)]TJ/F16 10.9091 Tf -87.3618 -26.0947 Td[(The)-204(Project)-205(Gutenberg)-204(Literary)-205(Archive)-204(Foundation)-205(is)-204(a)-205(non)-204(pro-)]TJ 0 -13.5492 Td[(fit)-366(501\050c\051\0503\051)-367(educational)-366(corporation)-366(organized)-367(under)-366(the)-366(laws)]TJ 0 -13.5492 Td[(of)-456(the)-456(state)-456(of)-456(Mississippi)-456(and)-456(granted)-456(tax)-456(exempt)-455(status)-456(by)]TJ 0 -13.5492 Td[(the)-319(Internal)-319(Revenue)-319(Service.)-457(The)-319(Foundation's)-319(EIN)-318(or)-319(federal)]TJ 0 -13.5492 Td[(tax)-337(identification)-336(number)-337(is)-337(64-6221541.)-509(Its)-337(501\050c\051\0503\051)-337(letter)-336(is)]TJ 0 -13.5492 Td[(posted)-228(at)-228(http://www.gutenberg.org/fundraising/pglaf.)-242(Contribu-)]TJ 0 -13.5492 Td[(tions)-313(to)-314(the)-313(Project)-313(Gutenberg)-314(Literary)-313(Archive)-313(Foundation)-313(are)]TJ 0 -13.5492 Td[(tax)-328(deductible)-329(to)-328(the)-328(full)-329(extent)-328(permitted)-328(by)-329(U.S.)-328(federal)-328(laws)]TJ 0 -13.5492 Td[(and)-250(your)-250(state's)-250(laws.)]TJ 11.9552 -13.5492 Td[(The)-214(Foundation's)-214(principal)-214(office)-213(is)-214(located)-214(at)-214(4557)-214(Melan)-214(Dr.)]TJ -11.9552 -13.5492 Td[(S.)-297(Fairbanks,)-309(AK,)-298(99712.,)-309(but)-297(its)-297(volunteers)-298(and)-297(employees)-297(are)]TJ 0 -13.5492 Td[(scattered)-343(throughout)-343(numerous)-343(locations.)-530(Its)-343(business)-343(office)-343(is)]TJ 0 -13.5492 Td[(located)-197(at)-197(809)-197(North)-197(1500)-197(West,)-208(Salt)-197(Lake)-197(City,)-208(UT)-197(84116,)-207(\050801\051)]TJ 0 -13.5492 Td[(596-1887,)-225(email)-218(business@pglaf.org.)-239(Email)-219(contact)-218(links)-218(and)-218(up)]TJ 0 -13.5492 Td[(to)-227(date)-227(contact)-227(information)-227(can)-227(be)-227(found)-227(at)-227(the)-227(Foundation's)-227(web)]TJ 0 -13.5492 Td[(site)-250(and)-250(official)-250(page)-250(at)-250(http://www.pglaf.org)]TJ 11.9552 -13.5492 Td[(For)-250(additional)-250(contact)-250(information:)]TJ/F16 9.8629 Tf 7.6812 -22.0946 Td[(Dr.)-250(Gregory)-250(B.)-250(Newby)]TJ 0 -12.8218 Td[(Chief)-250(Executive)-250(and)-250(Director)]TJ 0 -12.8218 Td[(gbnewby@pglaf.org)]TJ
ET
1 0 0 1 46.7715 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
172 0 obj <<
/Type /Page
/Contents 173 0 R
/Resources 171 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 150 0 R
/Annots [ 174 0 R 175 0 R 176 0 R 177 0 R 178 0 R ]
>> endobj
174 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [189.0679 488.7094 194.5224 498.4185]
/Subtype /Link
/A << /S /GoTo /D (pglicense3) >>
>> endobj
175 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [215.179 488.7094 220.6336 498.4185]
/Subtype /Link
/A << /S /GoTo /D (pglicense4) >>
>> endobj
176 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5]
/Rect [80.6987 475.1493 172.8149 484.8693]
/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.pglaf.org) >>
>> endobj
177 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5]
/Rect [88.1039 273.365 279.6017 283.085]
/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org/fundraising/pglaf) >>
>> endobj
178 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5]
/Rect [151.2913 137.8731 243.4074 147.5931]
/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.pglaf.org) >>
>> endobj
153 0 obj <<
/D [172 0 R /XYZ 46.7715 464.7856 null]
>> endobj
171 0 obj <<
/Font << /F16 6 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
181 0 obj <<
/Length 3999
>>
stream
1 0 0 1 93.5434 548.9335 cm
0 g 0 G
1 0 0 1 -93.5434 -548.9335 cm
BT
/F16 10.9091 Tf 93.5434 548.9335 Td[(24Rede,)-170(gehalten)-150(bei)-150(der)-150(Er\303\266ffnung)-150(der)-150(Versammlung)-150(deutscher)-150(Naturforscher)-150(und)-150(\303rzte)-150(in)-150(Berlin,)-170(am)-150(18.)-217(September)-150(1828)]TJ
ET
1 0 0 1 374.1731 548.9335 cm
0 g 0 G
1 0 0 1 -374.1731 -548.9335 cm
BT
/F16 15.7808 Tf 93.5434 518.1751 Td[(Section)-250(4.)]TJ/F16 13.1507 Tf 26.9981 -50.957 Td[(Information)-258(about)-258(Donations)-258(to)-258(the)-259(Project)]TJ 8.107 -17.0958 Td[(Gutenberg)-261(Literary)-260(Archive)-261(Foundation)]TJ/F16 10.9091 Tf -35.1051 -29.4518 Td[(Project)-329(Gutenberg)]TJ/F23 10.9091 Tf 80.5424 0 Td[(")]TJ/F16 10.9091 Tf 14.2806 0 Td[(depends)-329(upon)-329(and)-329(cannot)-329(survive)-329(without)]TJ -94.823 -13.5492 Td[(wide)-217(spread)-217(public)-217(support)-217(and)-217(donations)-217(to)-217(carry)-217(out)-217(its)-217(mission)]TJ 0 -13.5492 Td[(of)-334(increasing)-334(the)-334(number)-334(of)-334(public)-334(domain)-334(and)-334(licensed)-334(works)]TJ 0 -13.5492 Td[(that)-192(can)-193(be)-192(freely)-193(distributed)-192(in)-192(machine)-193(readable)-192(form)-192(accessible)]TJ 0 -13.5492 Td[(by)-261(the)-261(widest)-261(array)-261(of)-261(equipment)-261(including)-261(outdated)-261(equipment.)]TJ 0 -13.5492 Td[(Many)-303(small)-302(donations)-303(\050$1)-303(to)-302($5,000\051)-303(are)-303(particularly)-302(important)]TJ 0 -13.5492 Td[(to)-250(maintaining)-250(tax)-250(exempt)-250(status)-250(with)-250(the)-250(IRS.)]TJ 11.9552 -14.1115 Td[(The)-460(Foundation)-461(is)-460(committed)-461(to)-460(complying)-461(with)-460(the)-461(laws)]TJ -11.9552 -13.5492 Td[(regulating)-352(charities)-353(and)-352(charitable)-353(donations)-352(in)-353(all)-352(50)-353(states)-352(of)]TJ 0 -13.5492 Td[(the)-430(United)-429(States.)-789(Compliance)-430(requirements)-429(are)-430(not)-429(uniform)]TJ 0 -13.5492 Td[(and)-389(it)-389(takes)-389(a)-389(considerable)-389(effort,)-424(much)-389(paperwork)-389(and)-389(many)]TJ 0 -13.5492 Td[(fees)-353(to)-353(meet)-353(and)-353(keep)-354(up)-353(with)-353(these)-353(requirements.)-559(We)-353(do)-353(not)]TJ 0 -13.5492 Td[(solicit)-322(donations)-321(in)-322(locations)-322(where)-322(we)-321(have)-322(not)-322(received)-321(writ-)]TJ 0 -13.5492 Td[(ten)-417(confirmation)-418(of)-417(compliance.)-752(To)-418(SEND)-417(DONATIONS)-417(or)]TJ 0 -13.5492 Td[(determine)-309(the)-310(status)-309(of)-310(compliance)-309(for)-309(any)-310(particular)-309(state)-309(visit)]TJ 0 -13.5492 Td[(http://www.gutenberg.org/fundraising/donate)]TJ 11.9552 -14.1115 Td[(While)-305(we)-304(cannot)-305(and)-304(do)-305(not)-305(solicit)-304(contributions)-305(from)-305(states)]TJ -11.9552 -13.5492 Td[(where)-323(we)-323(have)-322(not)-323(met)-323(the)-323(solicitation)-323(requirements,)-341(we)-322(know)]TJ 0 -13.5492 Td[(of)-366(no)-365(prohibition)-366(against)-366(accepting)-365(unsolicited)-366(donations)-365(from)]TJ 0 -13.5492 Td[(donors)-250(in)-250(such)-250(states)-250(who)-250(approach)-250(us)-250(with)-250(offers)-250(to)-250(donate.)]TJ 11.9552 -14.1115 Td[(International)-237(donations)-237(are)-237(gratefully)-238(accepted,)-239(but)-237(we)-238(cannot)]TJ -11.9552 -13.5492 Td[(make)-327(any)-328(statements)-327(concerning)-327(tax)-328(treatment)-327(of)-327(donations)-327(re-)]TJ 0 -13.5492 Td[(ceived)-326(from)-326(outside)-327(the)-326(United)-326(States.)-479(U.S.)-326(laws)-326(alone)-326(swamp)]TJ 0 -13.5492 Td[(our)-250(small)-250(staff.)]TJ 11.9552 -14.1115 Td[(Please)-413(check)-413(the)-412(Project)-413(Gutenberg)-413(Web)-413(pages)-413(for)-413(current)]TJ -11.9552 -13.5492 Td[(donation)-376(methods)-375(and)-376(addresses.)-627(Donations)-376(are)-376(accepted)-376(in)-375(a)]TJ 0 -13.5492 Td[(number)-396(of)-395(other)-396(ways)-395(including)-396(checks,)-431(online)-396(payments)-395(and)]TJ
ET
1 0 0 1 93.5434 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
180 0 obj <<
/Type /Page
/Contents 181 0 R
/Resources 179 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 150 0 R
/Annots [ 182 0 R ]
>> endobj
182 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5]
/Rect [93.5434 214.492 291.7067 224.212]
/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org/fundraising/donate) >>
>> endobj
151 0 obj <<
/D [180 0 R /XYZ 93.5434 529.134 null]
>> endobj
179 0 obj <<
/Font << /F16 6 0 R /F23 94 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
185 0 obj <<
/Length 3348
>>
stream
1 0 0 1 46.7715 548.9335 cm
0 g 0 G
1 0 0 1 -46.7715 -548.9335 cm
BT
/F16 10.9091 Tf 46.7715 548.9335 Td[(The)-250(Full)-250(Project)-250(Gutenberg)-250(License)-10393(25)]TJ
ET
1 0 0 1 327.4012 548.9335 cm
0 g 0 G
1 0 0 1 -327.4012 -548.9335 cm
BT
/F16 10.9091 Tf 46.7715 518.1751 Td[(credit)-241(card)-241(donations.)-247(To)-241(donate,)-243(please)-241(visit:)-245(http://www.guten-)]TJ 0 -13.5492 Td[(berg.org/fundraising/donate)]TJ/F16 15.7808 Tf 0 -57.0314 Td[(Section)-250(5.)]TJ/F16 13.1507 Tf 12.1577 -55.794 Td[(General)-254(Information)-253(About)-254(Project)-254(Gutenberg)]TJ/F23 13.1507 Tf 243.4267 0 Td[(")]TJ/F16 13.1507 Tf -160.7415 -17.0958 Td[(electronic)-279(works.)]TJ/F16 10.9091 Tf -94.8429 -32.1391 Td[(Professor)-381(Michael)-381(S.)-381(Hart)-382(is)-381(the)-381(originator)-381(of)-381(the)-381(Project)-381(Gu-)]TJ 0 -13.5492 Td[(tenberg)]TJ/F23 10.9091 Tf 32.7163 0 Td[(")]TJ/F16 10.9091 Tf 15.2369 0 Td[(concept)-417(of)-416(a)-417(library)-417(of)-417(electronic)-416(works)-417(that)-417(could)]TJ -47.9532 -13.5492 Td[(be)-436(freely)-436(shared)-436(with)-436(anyone.)-807(For)-436(thirty)-436(years,)-483(he)-435(produced)]TJ 0 -13.5492 Td[(and)-357(distributed)-357(Project)-358(Gutenberg)]TJ/F23 10.9091 Tf 151.0638 0 Td[(")]TJ/F16 10.9091 Tf 14.5874 0 Td[(eBooks)-357(with)-357(only)-358(a)-357(loose)]TJ -165.6512 -13.5492 Td[(network)-250(of)-250(volunteer)-250(support.)]TJ 11.9552 -14.649 Td[(Project)-379(Gutenberg)]TJ/F23 10.9091 Tf 81.0911 0 Td[(")]TJ/F16 10.9091 Tf 14.8294 0 Td[(eBooks)-379(are)-380(often)-379(created)-379(from)-380(several)]TJ -107.8757 -13.5492 Td[(printed)-248(editions,)-248(all)-248(of)-247(which)-248(are)-248(confirmed)-247(as)-248(Public)-248(Domain)-247(in)]TJ 0 -13.5492 Td[(the)-303(U.S.)-302(unless)-303(a)-303(copyright)-303(notice)-302(is)-303(included.)-408(Thus,)-316(we)-303(do)-302(not)]TJ 0 -13.5492 Td[(necessarily)-216(keep)-217(eBooks)-216(in)-216(compliance)-217(with)-216(any)-216(particular)-216(paper)]TJ 0 -13.5492 Td[(edition.)]TJ 11.9552 -14.649 Td[(Each)-356(eBook)-355(is)-356(in)-355(a)-356(subdirectory)-355(of)-356(the)-355(same)-356(number)-355(as)-356(the)]TJ -11.9552 -13.5492 Td[(eBook's)-266(eBook)-266(number,)-269(often)-266(in)-266(several)-266(formats)-266(including)-265(plain)]TJ 0 -13.5492 Td[(vanilla)-250(ASCII,)-250(compressed)-250(\050zipped\051,)-250(HTML)-250(and)-250(others.)]TJ 11.9552 -14.649 Td[(Corrected)]TJ/F20 10.9091 Tf 45.7663 0 Td[(editions)]TJ/F16 10.9091 Tf 37.3009 0 Td[(of)-252(our)-253(eBooks)-252(replace)-252(the)-252(old)-253(file)-252(and)-252(take)]TJ -95.0224 -13.5492 Td[(over)-285(the)-286(old)-285(filename)-286(and)-285(etext)-286(number.)-356(The)-286(replaced)-285(older)-285(file)]TJ 0 -13.5492 Td[(is)-367(renamed.)]TJ/F20 10.9091 Tf 58.1253 0 Td[(Versions)]TJ/F16 10.9091 Tf 42.1858 0 Td[(based)-367(on)-367(separate)-367(sources)-367(are)-367(treated)-367(as)]TJ -100.3111 -13.5492 Td[(new)-250(eBooks)-250(receiving)-250(new)-250(filenames)-250(and)-250(etext)-250(numbers.)]TJ 11.9552 -14.6489 Td[(Most)-416(people)-416(start)-416(at)-416(our)-416(Web)-416(site)-416(which)-416(has)-416(the)-416(main)-416(PG)]TJ -11.9552 -13.5492 Td[(search)-250(facility:)]TJ/F16 9.8629 Tf 19.6364 -28.1389 Td[(http://www.gutenberg.org)]TJ
ET
1 0 0 1 46.7715 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
184 0 obj <<
/Type /Page
/Contents 185 0 R
/Resources 183 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 190 0 R
/Annots [ 186 0 R 187 0 R 189 0 R ]
>> endobj
186 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5]
/Rect [247.0996 515.7969 327.4012 525.5169]
/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org/fundraising/donate) >>
>> endobj
187 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5]
/Rect [46.7715 502.2477 168.2658 511.9677]
/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org/fundraising/donate) >>
>> endobj
189 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5]
/Rect [66.4079 63.9919 168.8641 72.7798]
/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org) >>
>> endobj
188 0 obj <<
/D [184 0 R /XYZ 46.7715 486.9394 null]
>> endobj
183 0 obj <<
/Font << /F16 6 0 R /F23 94 0 R /F20 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
193 0 obj <<
/Length 1151
>>
stream
1 0 0 1 93.5434 548.9335 cm
0 g 0 G
1 0 0 1 -93.5434 -548.9335 cm
BT
/F16 10.9091 Tf 93.5434 548.9335 Td[(26Rede,)-170(gehalten)-150(bei)-150(der)-150(Er\303\266ffnung)-150(der)-150(Versammlung)-150(deutscher)-150(Naturforscher)-150(und)-150(\303rzte)-150(in)-150(Berlin,)-170(am)-150(18.)-217(September)-150(1828)]TJ
ET
1 0 0 1 374.1731 548.9335 cm
0 g 0 G
1 0 0 1 -374.1731 -548.9335 cm
BT
/F16 10.9091 Tf 105.4986 518.1751 Td[(This)-527(Web)-526(site)-527(includes)-527(information)-526(about)-527(Project)-527(Guten-)]TJ -11.9552 -13.5492 Td[(berg)]TJ/F23 10.9091 Tf 19.3854 0 Td[(")]TJ/F16 10.9091 Tf 10.6909 0 Td[(,)-321(including)-307(how)-306(to)-307(make)-307(donations)-306(to)-307(the)-307(Project)-306(Guten-)]TJ -30.0763 -13.5492 Td[(berg)-251(Literary)-251(Archive)-250(Foundation,)-251(how)-251(to)-251(help)-251(produce)-251(our)-250(new)]TJ 0 -13.5492 Td[(eBooks,)-410(and)-378(how)-378(to)-378(subscribe)-378(to)-378(our)-378(email)-378(newsletter)-377(to)-378(hear)]TJ 0 -13.5492 Td[(about)-250(new)-250(eBooks.)]TJ
ET
1 0 0 1 93.5434 436.5638 cm
0 g 0 G
0 g 0 G
0 g 0 G
1 0 0 1 0 -397.7821 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
192 0 obj <<
/Type /Page
/Contents 193 0 R
/Resources 191 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 190 0 R
>> endobj
191 0 obj <<
/Font << /F16 6 0 R /F23 94 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
194 0 obj <<
/Type /Encoding
/Differences [ 0 /uni2100/uni2101/uni2102/centigrade/uni2104/careof/uni2106/uni2107/uni2108/fahrenheit/uni210a/uni210b/uni210c/uni210d/uni210e/uni210f/uni2110/Ifraktur/uni2112/lsquare/uni2114/uni2115/numero/uni2117/weierstrass/uni2119/uni211a/uni211b/Rfraktur/uni211d/prescription/uni211f/uni2120/telephone/trademark/uni2123/uni2124/uni2125/Omega/uni2127/uni2128/uni2129/uni212a/angstrom/uni212c/uni212d/estimated/uni212f/uni2130/uni2131/uni2132/uni2133/uni2134/aleph/uni2136/uni2137/uni2138/uni2139/uni213a/uni213b/uni213c/uni213d/uni213e/uni213f/uni2140/uni2141/uni2142/uni2143/uni2144/uni2145/uni2146/uni2147/uni2148/uni2149/uni214a/uni214b/uni214c/uni214d/uni214e/uni214f/uni2150/uni2151/uni2152/onethird/twothirds/uni2155/uni2156/uni2157/uni2158/uni2159/uni215a/oneeighth/threeeighths/fiveeighths/seveneighths/uni215f/Oneroman/Tworoman/Threeroman/Fourroman/Fiveroman/Sixroman/Sevenroman/Eightroman/Nineroman/Tenroman/Elevenroman/Twelveroman/uni216c/uni216d/uni216e/uni216f/oneroman/tworoman/threeroman/fourroman/fiveroman/sixroman/sevenroman/eightroman/nineroman/tenroman/elevenroman/twelveroman/uni217c/uni217d/uni217e/uni217f/uni2180/uni2181/uni2182/uni2183/uni2184/uni2185/uni2186/uni2187/uni2188/uni2189/uni218a/uni218b/uni218c/uni218d/uni218e/uni218f/arrowleft/arrowup/arrowright/arrowdown/arrowboth/arrowupdn/arrowupleft/arrowupright/arrowdownright/arrowdownleft/uni219a/uni219b/uni219c/uni219d/uni219e/uni219f/uni21a0/uni21a1/uni21a2/uni21a3/uni21a4/uni21a5/uni21a6/uni21a7/arrowupdownbase/uni21a9/uni21aa/uni21ab/uni21ac/uni21ad/uni21ae/uni21af/uni21b0/uni21b1/uni21b2/uni21b3/uni21b4/carriagereturn/uni21b6/uni21b7/uni21b8/uni21b9/uni21ba/uni21bb/harpoonleftbarbup/uni21bd/uni21be/uni21bf/harpoonrightbarbup/uni21c1/uni21c2/uni21c3/arrowrightoverleft/arrowupleftofdown/arrowleftoverright/uni21c7/uni21c8/uni21c9/uni21ca/uni21cb/uni21cc/arrowleftdblstroke/uni21ce/arrowrightdblstroke/arrowleftdbl/arrowdblup/dblarrowright/arrowdbldown/dblarrowleft/uni21d5/uni21d6/uni21d7/uni21d8/uni21d9/uni21da/uni21db/uni21dc/uni21dd/pageup/pagedown/arrowdashleft/arrowdashup/arrowdashright/arrowdashdown/arrowtableft/arrowtabright/arrowleftwhite/arrowupwhite/arrowrightwhite/arrowdownwhite/capslock/uni21eb/uni21ec/uni21ed/uni21ee/uni21ef/uni21f0/uni21f1/uni21f2/uni21f3/uni21f4/uni21f5/uni21f6/uni21f7/uni21f8/uni21f9/uni21fa/uni21fb/uni21fc/uni21fd/uni21fe/uni21ff]
>> endobj
94 0 obj <<
/Type /Font
/Subtype /Type1
/Encoding 194 0 R
/BaseFont /Times-Roman
>> endobj
195 0 obj <<
/Type /Encoding
/Differences [ 0 /uni2000/uni2001/enspace/uni2003/uni2004/uni2005/uni2006/uni2007/uni2008/uni2009/uni200a/zerowidthspace/zerowidthnonjoiner/afii301/afii299/afii300/hyphentwo/uni2011/figuredash/endash/emdash/horizontalbar/dblverticalbar/underscoredbl/quoteleft/quoteright/quotesinglbase/quotereversed/quotedblleft/quotedblright/quotedblbase/uni201f/dagger/daggerdbl/bullet/uni2023/onedotenleader/twodotleader/ellipsis/uni2027/uni2028/uni2029/uni202a/uni202b/afii61573/afii61574/afii61575/uni202f/perthousand/uni2031/minute/second/uni2034/primereversed/uni2036/uni2037/uni2038/guilsinglleft/guilsinglright/referencemark/exclamdbl/uni203d/overline/uni203f/uni2040/uni2041/asterism/uni2043/fraction/uni2045/uni2046/uni2047/uni2048/uni2049/uni204a/uni204b/uni204c/uni204d/uni204e/uni204f/uni2050/uni2051/uni2052/uni2053/uni2054/uni2055/uni2056/uni2057/uni2058/uni2059/uni205a/uni205b/uni205c/uni205d/uni205e/uni205f/uni2060/uni2061/uni2062/uni2063/uni2064/uni2065/uni2066/uni2067/uni2068/uni2069/uni206a/uni206b/uni206c/uni206d/uni206e/uni206f/zerosuperior/uni2071/uni2072/uni2073/foursuperior/fivesuperior/sixsuperior/sevensuperior/eightsuperior/ninesuperior/plussuperior/uni207b/equalsuperior/parenleftsuperior/parenrightsuperior/nsuperior/zeroinferior/oneinferior/twoinferior/threeinferior/fourinferior/fiveinferior/sixinferior/seveninferior/eightinferior/nineinferior/uni208a/uni208b/uni208c/parenleftinferior/parenrightinferior/uni208f/uni2090/uni2091/uni2092/uni2093/uni2094/uni2095/uni2096/uni2097/uni2098/uni2099/uni209a/uni209b/uni209c/uni209d/uni209e/uni209f/uni20a0/colonsign/cruzeiro/franc/lira/uni20a5/uni20a6/peseta/uni20a8/won/sheqelhebrew/dong/euro/uni20ad/uni20ae/uni20af/uni20b0/uni20b1/uni20b2/uni20b3/uni20b4/uni20b5/uni20b6/uni20b7/uni20b8/uni20b9/uni20ba/uni20bb/uni20bc/uni20bd/uni20be/uni20bf/uni20c0/uni20c1/uni20c2/uni20c3/uni20c4/uni20c5/uni20c6/uni20c7/uni20c8/uni20c9/uni20ca/uni20cb/uni20cc/uni20cd/uni20ce/uni20cf/uni20d0/uni20d1/uni20d2/uni20d3/uni20d4/uni20d5/uni20d6/uni20d7/uni20d8/uni20d9/uni20da/uni20db/uni20dc/uni20dd/uni20de/uni20df/uni20e0/uni20e1/uni20e2/uni20e3/uni20e4/uni20e5/uni20e6/uni20e7/uni20e8/uni20e9/uni20ea/uni20eb/uni20ec/uni20ed/uni20ee/uni20ef/uni20f0/uni20f1/uni20f2/uni20f3/uni20f4/uni20f5/uni20f6/uni20f7/uni20f8/uni20f9/uni20fa/uni20fb/uni20fc/uni20fd/uni20fe/uni20ff]
>> endobj
92 0 obj <<
/Type /Font
/Subtype /Type1
/Encoding 195 0 R
/BaseFont /Times-Roman
>> endobj
196 0 obj <<
/Type /Encoding
/Differences [ 0 /uni0000/controlSTX/controlSOT/controlETX/controlEOT/controlENQ/controlACK/controlBEL/controlBS/controlHT/controlLF/controlVT/controlFF/controlCR/controlSO/controlSI/controlDLE/controlDC1/controlDC2/controlDC3/controlDC4/controlNAK/controlSYN/controlETB/controlCAN/controlEM/controlSUB/controlESC/controlFS/controlGS/controlRS/controlUS/spacehackarabic/exclam/quotedbl/numbersign/dollar/percent/ampersand/quotesingle/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/grave/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/verticalbar/braceright/asciitilde/controlDEL/uni0080/uni0081/uni0082/uni0083/uni0084/uni0085/uni0086/uni0087/uni0088/uni0089/uni008a/uni008b/uni008c/uni008d/uni008e/uni008f/uni0090/uni0091/uni0092/uni0093/uni0094/uni0095/uni0096/uni0097/uni0098/uni0099/uni009a/uni009b/uni009c/uni009d/uni009e/uni009f/nonbreakingspace/exclamdown/cent/sterling/currency/yen/brokenbar/section/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/softhyphen/registered/overscore/degree/plusminus/twosuperior/threesuperior/acute/mu1/paragraph/periodcentered/cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis]
>> endobj
45 0 obj <<
/Type /Font
/Subtype /Type1
/Encoding 196 0 R
/BaseFont /Times-Italic
>> endobj
6 0 obj <<
/Type /Font
/Subtype /Type1
/Encoding 196 0 R
/BaseFont /Times-Roman
>> endobj
10 0 obj <<
/Type /Pages
/Count 6
/Parent 197 0 R
/Kids [2 0 R 13 0 R 16 0 R 19 0 R 26 0 R 29 0 R]
>> endobj
36 0 obj <<
/Type /Pages
/Count 6
/Parent 197 0 R
/Kids [32 0 R 38 0 R 42 0 R 48 0 R 52 0 R 56 0 R]
>> endobj
62 0 obj <<
/Type /Pages
/Count 6
/Parent 197 0 R
/Kids [60 0 R 64 0 R 67 0 R 71 0 R 78 0 R 81 0 R]
>> endobj
95 0 obj <<
/Type /Pages
/Count 6
/Parent 197 0 R
/Kids [88 0 R 101 0 R 110 0 R 119 0 R 125 0 R 135 0 R]
>> endobj
150 0 obj <<
/Type /Pages
/Count 6
/Parent 197 0 R
/Kids [142 0 R 155 0 R 161 0 R 167 0 R 172 0 R 180 0 R]
>> endobj
190 0 obj <<
/Type /Pages
/Count 2
/Parent 197 0 R
/Kids [184 0 R 192 0 R]
>> endobj
197 0 obj <<
/Type /Pages
/Count 32
/Kids [10 0 R 36 0 R 62 0 R 95 0 R 150 0 R 190 0 R]
>> endobj
198 0 obj <<
/Type /Outlines
/First 23 0 R
/Last 98 0 R
/Count 4
>> endobj
98 0 obj <<
/Title 99 0 R
/A 96 0 R
/Parent 198 0 R
/Prev 85 0 R
>> endobj
85 0 obj <<
/Title 86 0 R
/A 83 0 R
/Parent 198 0 R
/Prev 75 0 R
/Next 98 0 R
>> endobj
75 0 obj <<
/Title 76 0 R
/A 73 0 R
/Parent 198 0 R
/Prev 23 0 R
/Next 85 0 R
>> endobj
23 0 obj <<
/Title 24 0 R
/A 21 0 R
/Parent 198 0 R
/Next 75 0 R
>> endobj
199 0 obj <<
/Names [(Pg3) 34 0 R (Pg4) 35 0 R (Pg5) 40 0 R (Pg6) 46 0 R (Pg7) 50 0 R (Pg8) 54 0 R (Pg9) 58 0 R (index1) 22 0 R (index2) 74 0 R (index3) 84 0 R (index4) 97 0 R (pgfooter) 69 0 R (pgheader) 4 0 R (pglicense) 11 0 R (pglicense1) 105 0 R (pglicense1A) 106 0 R (pglicense1B) 112 0 R (pglicense1C) 115 0 R (pglicense1D) 116 0 R (pglicense1E) 117 0 R (pglicense1E1) 121 0 R (pglicense1E2) 123 0 R (pglicense1E3) 129 0 R (pglicense1E4) 131 0 R (pglicense1E5) 132 0 R (pglicense1E6) 137 0 R (pglicense1E7) 139 0 R (pglicense1E8) 108 0 R (pglicense1E9) 147 0 R (pglicense1F) 149 0 R (pglicense1F1) 157 0 R (pglicense1F2) 158 0 R (pglicense1F3) 152 0 R (pglicense1F4) 163 0 R (pglicense1F5) 165 0 R (pglicense1F6) 169 0 R (pglicense2) 170 0 R (pglicense3) 153 0 R (pglicense4) 151 0 R (pglicense5) 188 0 R]
/Limits [(Pg3) (pglicense5)]
>> endobj
200 0 obj <<
/Kids [199 0 R]
>> endobj
201 0 obj <<
/Dests 200 0 R
>> endobj
202 0 obj <<
/Type /Catalog
/Pages 197 0 R
/Outlines 198 0 R
/Names 201 0 R
>> endobj
203 0 obj <<
/Producer (pdfeTeX-1.21a)
/Author (Humboldt, Alexander von) /Title (Rede, gehalten bei der Eröffnung der Versammlung deutscher Naturforscher und Ärzte in Berlin, am 18. September 1828)
/Creator (TeX)
/CreationDate (D:20070918083519-07'00')
/PTEX.Fullbanner (This is pdfeTeX using libpoppler, Version 3.141592-1.21a-2.2 (Web2C 7.5.4) kpathsea version 3.5.4)
>> endobj
xref
0 204
0000000005 65535 f
0000002858 00000 n
0000002046 00000 n
0000000009 00000 n
0000002800 00000 n
0000000044 00000 f
0000107485 00000 n
0000002191 00000 n
0000002363 00000 n
0000002582 00000 n
0000107575 00000 n
0000041961 00000 n
0000003237 00000 n
0000003119 00000 n
0000002926 00000 n
0000004068 00000 n
0000003950 00000 n
0000003277 00000 n
0000004448 00000 n
0000004330 00000 n
0000004137 00000 n
0000004488 00000 n
0000004952 00000 n
0000108645 00000 n
0000004531 00000 n
0000005012 00000 n
0000004834 00000 n
0000004558 00000 n
0000005392 00000 n
0000005274 00000 n
0000005081 00000 n
0000010084 00000 n
0000009843 00000 n
0000005432 00000 n
0000009961 00000 n
0000010022 00000 n
0000107684 00000 n
0000014824 00000 n
0000014644 00000 n
0000010153 00000 n
0000014762 00000 n
0000019762 00000 n
0000019582 00000 n
0000014893 00000 n
0000000091 00000 f
0000107393 00000 n
0000019700 00000 n
0000024607 00000 n
0000024428 00000 n
0000019843 00000 n
0000024546 00000 n
0000029310 00000 n
0000029130 00000 n
0000024676 00000 n
0000029248 00000 n
0000034146 00000 n
0000033966 00000 n
0000029379 00000 n
0000034084 00000 n
0000035413 00000 n
0000035295 00000 n
0000034215 00000 n
0000107794 00000 n
0000035793 00000 n
0000035675 00000 n
0000035482 00000 n
0000036636 00000 n
0000036458 00000 n
0000035833 00000 n
0000036576 00000 n
0000037016 00000 n
0000036898 00000 n
0000036705 00000 n
0000037056 00000 n
0000037695 00000 n
0000108557 00000 n
0000037099 00000 n
0000037755 00000 n
0000037577 00000 n
0000037125 00000 n
0000038135 00000 n
0000038017 00000 n
0000037824 00000 n
0000038175 00000 n
0000041901 00000 n
0000108469 00000 n
0000038218 00000 n
0000042022 00000 n
0000041533 00000 n
0000038266 00000 n
0000041670 00000 n
0000000093 00000 f
0000105335 00000 n
0000000000 00000 f
0000102880 00000 n
0000107904 00000 n
0000042127 00000 n
0000046422 00000 n
0000108394 00000 n
0000042170 00000 n
0000046609 00000 n
0000045693 00000 n
0000042223 00000 n
0000045850 00000 n
0000046025 00000 n
0000046483 00000 n
0000046546 00000 n
0000046246 00000 n
0000066378 00000 n
0000052055 00000 n
0000051370 00000 n
0000046715 00000 n
0000051870 00000 n
0000051519 00000 n
0000051696 00000 n
0000051932 00000 n
0000051994 00000 n
0000056246 00000 n
0000056434 00000 n
0000055893 00000 n
0000052149 00000 n
0000056309 00000 n
0000056034 00000 n
0000056372 00000 n
0000061522 00000 n
0000060458 00000 n
0000056528 00000 n
0000060623 00000 n
0000060801 00000 n
0000061333 00000 n
0000060979 00000 n
0000061396 00000 n
0000061459 00000 n
0000061157 00000 n
0000066441 00000 n
0000065748 00000 n
0000061616 00000 n
0000066252 00000 n
0000065897 00000 n
0000066315 00000 n
0000066075 00000 n
0000072017 00000 n
0000071024 00000 n
0000066535 00000 n
0000071190 00000 n
0000071366 00000 n
0000071541 00000 n
0000071893 00000 n
0000071719 00000 n
0000071956 00000 n
0000108019 00000 n
0000094520 00000 n
0000080816 00000 n
0000089958 00000 n
0000076625 00000 n
0000076181 00000 n
0000072111 00000 n
0000076499 00000 n
0000076562 00000 n
0000076323 00000 n
0000081004 00000 n
0000080497 00000 n
0000076719 00000 n
0000080878 00000 n
0000080639 00000 n
0000080941 00000 n
0000085444 00000 n
0000085197 00000 n
0000081086 00000 n
0000085319 00000 n
0000085381 00000 n
0000090021 00000 n
0000088788 00000 n
0000085538 00000 n
0000088962 00000 n
0000089138 00000 n
0000089313 00000 n
0000089521 00000 n
0000089749 00000 n
0000094582 00000 n
0000094149 00000 n
0000090091 00000 n
0000094291 00000 n
0000098965 00000 n
0000098071 00000 n
0000094664 00000 n
0000098229 00000 n
0000098461 00000 n
0000098902 00000 n
0000098692 00000 n
0000108136 00000 n
0000100391 00000 n
0000100269 00000 n
0000099059 00000 n
0000100473 00000 n
0000102971 00000 n
0000105426 00000 n
0000108221 00000 n
0000108319 00000 n
0000108720 00000 n
0000109572 00000 n
0000109611 00000 n
0000109649 00000 n
0000109735 00000 n
trailer
<<
/Size 204
/Root 202 0 R
/Info 203 0 R
/ID [<E0FF57AFD53FF38404141FC828153E9D> <E0FF57AFD53FF38404141FC828153E9D>]
>>
startxref
110119
%%EOF
|