-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRMA00453.xml
executable file
·1214 lines (1204 loc) · 37.8 KB
/
RMA00453.xml
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
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Transformed with v1v2002_4_cornell.xsl -->
<!DOCTYPE ead PUBLIC "+//ISBN 1-931666-00-8//DTD ead.dtd (Encoded Archival Description (EAD) Version 2002)//EN" "../dtds/ead.dtd">
<?xml-stylesheet type="text/xsl" href="../styles/style.xsl" ?>
<ead>
<eadheader repositoryencoding="iso15511" relatedencoding="MARC21" countryencoding="iso3166-1"
scriptencoding="iso15924" dateencoding="iso8601" langencoding="iso639-2b">
<eadid mainagencycode="nic" countrycode="us"
publicid="-//Cornell University::Cornell University Library::Division of Rare and Manuscript Collections//TEXT(US::NIC::RMA00453::Frank a. Pearson papers)//EN"
>RMA00453.xml</eadid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Frank A. Pearson papers, 1923-1965</titleproper>
<titleproper type="sort">Pearson, Frank A. papers, 1923-1965</titleproper>
<author>Compiled by RMC Staff</author>
</titlestmt>
<publicationstmt>
<publisher>Division of Rare and Manuscript Collections, Cornell University
Library</publisher>
<date><?xm-replace_text {date the *electronic file* was published}??></date>
</publicationstmt>
<notestmt>
<note audience="internal">
<p>
<subject>cals</subject>
<subject>agric</subject>
<subject>ncl</subject>
</p>
</note>
</notestmt>
</filedesc>
<profiledesc>
<creation>Finding aid encoded by RMC Staff
<date><?xm-replace_text {date}??></date>
</creation>
</profiledesc>
<revisiondesc>
<change encodinganalog="583">
<date normal="2007-05-29">2007-05-29</date>
<item>converted from EAD 1.0 to EAD 2002 </item>
</change>
</revisiondesc>
</eadheader>
<frontmatter>
<titlepage>
<titleproper>Guide to the Frank A. Pearson Papers,<lb/>1923-1965</titleproper>
<num>Collection Number: 21-10-453</num>
<publisher>Division of Rare and Manuscript Collections <lb/>Cornell University
Library</publisher>
<list type="deflist">
<defitem>
<label>Contact Information:</label>
<item>Division of Rare and Manuscript Collections<lb/> 2B Carl A. Kroch Library<lb/>
Cornell University<lb/> Ithaca, NY 14853<lb/> (607) 255-3530<lb/> Fax: (607) 255-9524<lb/>
<extref href="mailto:[email protected]">[email protected]</extref>
<lb/>
<extref href="http://rmc.library.cornell.edu"
>http://rmc.library.cornell.edu</extref>
<lb/></item>
</defitem>
<defitem>
<label>Compiled by:</label>
<item>RMC Staff</item>
</defitem>
<defitem>
<label>Date completed:</label>
<item><?xm-replace_text {date}??></item>
</defitem>
<defitem>
<label>EAD encoding:</label>
<item>RMC Staff, 2008</item>
</defitem>
</list>
<date>© 2002 Division of Rare and Manuscript Collections, Cornell University Library</date>
</titlepage>
</frontmatter>
<archdesc level="collection">
<did>
<head id="a1">DESCRIPTIVE SUMMARY</head>
<unittitle label="Title:" encodinganalog="MARC 245">Frank a. Pearson papers, <unitdate
type="inclusive" encodinganalog="MARC 245">1923-1965.</unitdate>
</unittitle>
<unitid label="Collection Number:">21-10-453</unitid>
<origination label="Creator:">
<persname encodinganalog="100" normal="Pearson, Frank A.(Frank Ashmore), 1887-">Frank
A.(Frank Ashmore), Pearson 1887-</persname>
</origination>
<physdesc label="Quantity:" encodinganalog="MARC 300">28.4 linear ft.</physdesc>
<physdesc label="Forms of Material:"
>Correspondence, publications, manuscripts, and photographs.</physdesc>
<repository label="Repository:">Division of Rare and Manuscript Collections, Cornell
University Library</repository>
<abstract label="Abstract:">Professional correspondence, manuscripts by
Pearson and Warren; notes; speeches and publications; lecture notes on prices;
research material on cream; statistics; notes and drafts and related correspondence
on world hunger, the price of gold, and foodstuffs. Also, photographs and slides of
Cornell and other scenes and subjects.</abstract>
<langmaterial label="Language:">Collection material in <language encodinganalog="041"
langcode="eng">English</language>
</langmaterial>
</did>
<bioghist encodinganalog="MARC 545">
<head id="a2" altrender="biography">BIOGRAPHICAL NOTE </head>
<p>Professor of Prices and Statistics, New York State College of Agriculture.</p>
</bioghist>
<scopecontent encodinganalog="MARC 520">
<head id="a3">COLLECTION DESCRIPTION</head>
<p>Professional correspondence concerning prices, statistics, and economics; correspondence
and notes on the career of George Frederick Warren; mss. by Pearson and Warren; notes on
a trip to England and other subjects; speeches and publications; lecture notes on
prices; research material on cream; statistics (30 v.); notes and drafts and related
correspondence on world hunger, the price of gold, and foodstuffs. Also, photographs and
slides of Cornell and other scenes and subjects.</p>
</scopecontent>
<controlaccess>
<head id="a7">SUBJECTS</head>
<controlaccess>
<head>Names: </head>
<persname encodinganalog="MARC 100">Pearson, Frank A.1887-</persname>
<persname encodinganalog="MARC 600">Warren, George F.(George Frederick),
1874-1938.</persname>
</controlaccess>
<controlaccess>
<head>Subjects:</head>
<subject encodinganalog="MARC 650">Agriculture--Economic aspects.</subject>
</controlaccess>
<controlaccess>
<head>Form and Genre Terms:</head>
<genreform source="aat" encodinganalog="MARC 655">Photographs.</genreform>
<genreform source="aat" encodinganalog="MARC 655">Color slides.</genreform>
</controlaccess>
</controlaccess>
<descgrp type="admininfo">
<head id="a8">INFORMATION FOR USERS</head>
<prefercite>
<head>Cite As:</head>
<p>Frank a. Pearson papers, #21-10-453. Division of Rare and Manuscript Collections,
Cornell University Library.</p>
</prefercite>
</descgrp>
<relatedmaterial>
<head id="a5">RELATED MATERIALS</head>
<p>Includes collection 21-10-814.</p>
</relatedmaterial>
<dsc type="combined">
<head>CONTAINER LIST</head>
<c01 level="file">
<did>
<container type="box">1</container>
<unittitle>Warren G.F.: gold: News Clippings</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">1</container>
<unittitle>Warren G.F.: biography by F.A. Pearson, all notes and 3 editions of final
manuscript: Farm Economics Article</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">1</container>
<unittitle>Warren G.F.: correspondence with F.A. Pearson only, 1922-1938</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">1</container>
<unittitle>F.A. Pearson correspondence</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">1</container>
<unittitle>James B. Sumner (Nobel Prize Winner) and F.A. Pearson relations,
1954-1955</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">1</container>
<unittitle>F.A. Pearson</unittitle>
</did>
<scopecontent>
<p> Dr. Tucker, General Motors World Index of Wholesale Prices</p>
<p> London trip September 1934, Sir Henry Deterding and Inflation (Shell Oil)</p>
<p> Price Plans</p>
</scopecontent>
</c01>
<c01 level="file">
<did>
<container type="box">2</container>
<unittitle>Warren Correspondence and Notes</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">3</container>
<container type="volume"> 1-5</container>
<unitdate> 1929-1937</unitdate>
<unittitle>Addresses by F.A. Pearson</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">4</container>
<container type="volume"> 6-14</container>
<unitdate> 1936-</unitdate>
<unittitle>Addresses by F.A. Pearson</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">5</container>
<container type="volume"> 15-22</container>
<unittitle>Addresses by F.A. Pearson</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">6</container>
<container type="volume"> 23-31</container>
<unittitle>Addresses by F.A. Pearson</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">7</container>
<unittitle>Warren G.F. and F.A. Pearson: Major Works</unittitle>
</did>
<scopecontent>
<p> Wholesale prices on U.S. for 135 years monthly</p>
<p> Interrelations of supply and price for Bul. 466</p>
<p>Major project curve in fitting to find a curve that was logical and mathematically
correct.</p>
</scopecontent>
</c01>
<c01 level="file">
<did>
<container type="box">8-9</container>
<unittitle>F.A. Pearson's Lecture Notes on Prices: Gold, Cycles, Cycles Combinations,
Cycles-Pepper, Coffee, Cocoa, Livestock</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">10</container>
<unittitle>Correspondence, Farm Economics Speeches</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">11</container>
<unittitle>F.A. Pearson's correspondence with former Warren students about
Warren</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">11</container>
<unittitle> Warren's quips collected by F.A. Pearson</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">11</container>
<unittitle>F.A. Pearson's Tabulation of Warren's articles</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">11</container>
<unittitle>F.A. Pearson's Tabulation of conferences and committees in which Warren
participated, 1912-1938</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">12</container>
<unittitle>F.A. Pearson's Correspondence</unittitle>
</did>
<scopecontent>
<p> Pepper: Correspondence with Thomas W. Phelps of Francis I. Dupont and Co.,
1941-1947</p>
<p> General Motors</p>
<p> Mr. Niece; General Motors</p>
<p> Leffingwell; J. P. Morgan; I. Bennett, John Scoville, Harding Hoover, Kansas, Keith
Murray Ohio Farm Bureau, Frank Platt Paarlberg</p>
</scopecontent>
</c01>
<c01 level="file">
<did>
<container type="box">13</container>
<unittitle> F. A. Pearson's Early Work at the University of Illinois and
Cornell</unittitle>
</did>
<scopecontent>
<p> McHenry County Survey</p>
<p> Illinois Milk Report</p>
</scopecontent>
</c01>
<c01 level="file">
<did>
<container type="box">14</container>
<unitdate> 1933-1957</unitdate>
<unittitle> F. A. Pearson's works at Cornell</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">15</container>
<unitdate> 1923-1938</unitdate>
<unittitle> "Farm Economics", edited by: Warren and Pearson</unittitle>
</did>
<scopecontent>
<p> #1-106=8</p>
</scopecontent>
</c01>
<c01 level="file">
<did>
<container type="box">15</container>
<unitdate> 1928-1957</unitdate>
<unittitle> "Farm Economics", edited by: Pearson and Myers</unittitle>
</did>
<scopecontent>
<p> #107-211=8</p>
</scopecontent>
</c01>
<c01 level="file">
<did>
<container type="box">15</container>
<unittitle> Books By: Warren and Pearson, Pearson and Paarlburg, Pearson and Harper,
Pearson and Vial on World Food Prices</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">15</container>
<unittitle> Pepper; Interstate Commission-Chicago-North Western Railroad Testimony by F.A.
Pearson</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">15</container>
<unitdate> June 1943-October 1945</unitdate>
<unittitle> Wartime Letters of Corporal F.A. Pearson III to his father and
mother</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">16</container>
<unitdate> </unitdate>
<unittitle> Lecture Notes on Prices</unittitle>
</did>
<scopecontent>
<p> Gnats and Prices: 3-legged stool</p>
<p> Index numbers: history: unweights, weighted, old notes</p>
<p> Effect of Prices on Production, Effect of Production on Prices</p>
<p> Cash and future Prices</p>
<p> Function of Price</p>
<p> Value and Price</p>
<p> Commodity Dollar</p>
<p> Farm Supports</p>
<p> Investments</p>
<p> New Theories</p>
</scopecontent>
</c01>
<c01 level="file">
<did>
<container type="box">17</container>
<unittitle> A Study of Prices of All Spices-Never Completed</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">17</container>
<unittitle> German Commission</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">18</container>
<unitdate> 1944-1946</unitdate>
<unittitle> Speeches-F.A. Pearson and Don Paarlberg</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">18</container>
<unitdate> 1917-1919</unitdate>
<unittitle>Hoover Chicago Milk</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">18</container>
<unitdate> June 9, 1970</unitdate>
<unittitle>Stencils- F.A. Pearson</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">19</container>
<unittitle>Published Articles by Warren, Pearson, and both</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">20</container>
<unittitle>Warren Story, 2nd, 3rd, 4th, and 5th editions</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">21</container>
<unittitle>Prices of dairy products- Pearson and E.E. Vial</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">21</container>
<unittitle>The "Bull-Shit" article</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">21</container>
<unitdate> February 24, 1958</unitdate>
<unittitle>F.A Pearson's last address</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">21</container>
<unittitle>Pearson and Paarlberg: Starvation, truths, half truths, and
untruths</unittitle>
</did>
</c01>
<c01 level="series">
<did>
<unittitle>Large Black and White Prints, 11 x 14 inches, mounted 16 x 20
inches</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">24</container>
<unittitle>Coeds A-B</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">25</container>
<unittitle>Coeds C-E</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">26</container>
<unittitle>Coeds F-Hi</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">27</container>
<unittitle>Coeds Ho-J</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">28</container>
<unittitle>Coeds K-L</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">29</container>
<unittitle>Coeds M-O</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">30</container>
<unittitle>Coeds P</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">31</container>
<unittitle>Coeds R</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">32</container>
<unittitle>Coeds S, except Stolp</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">33</container>
<unittitle>Coeds T-V and Stolp</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">34</container>
<unittitle>Coeds W-Z</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">35</container>
<unittitle>Boy-Girl A-D</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">36</container>
<unittitle>Boy-Girl E-H, except Horn, Hurd, Holden</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">37</container>
<unittitle>Boy-Girl H-L, including Horn, Hurd, Holden</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">38</container>
<unittitle>Boy-Girl M-P</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">39</container>
<unittitle>Boy-Girl R-S</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">40</container>
<unittitle>Boy-Girl Sch-V</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">41</container>
<unittitle>Boys A-J</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">42</container>
<unittitle>Boys K-P</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">43</container>
<unittitle>Boys R-Z</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">44</container>
<unittitle>Snow</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">45</container>
<unittitle>Water</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">46</container>
<unittitle>Old Men A-G</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">47</container>
<unittitle>Old Men H-S</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">48</container>
<unittitle>Professors</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">49-50</container>
<unittitle>Babies</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">51</container>
<unittitle>Teenagers</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">52-53</container>
<unittitle>Campus, Summer</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">54</container>
<unittitle>Campus, Winter</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">55-56</container>
<unittitle>Water</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">57</container>
<unittitle>Farm, Summer</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">58</container>
<unittitle>Farm, Winter</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">59</container>
<unittitle>Buildings</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">60</container>
<unittitle>Flowers</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">61</container>
<unittitle>Roads and Tombstones</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">62</container>
<unittitle>Trees and Woods</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">63</container>
<unittitle>Hands and Miscellaneous</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">64</container>
<unittitle>Haze</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">65</container>
<unittitle>Animals and Birds</unittitle>
</did>
</c01>
<c01 level="series">
<did>
<unittitle>Small Black and White Prints and Negatives</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">66</container>
<unitid> Envelope 1</unitid>
<unittitle>Coeds A-B</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">66</container>
<unitid> Envelope 2</unitid>
<unittitle>Coeds D-E</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">66</container>
<unitid> Envelope 3</unitid>
<unittitle>Coeds F-Hi</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">66</container>
<unitid> Envelope 4</unitid>
<unittitle>Coeds Ho-J</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">66</container>
<unitid> Envelope 5</unitid>
<unittitle>Coeds K-L</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">66</container>
<unitid> Envelope 6</unitid>
<unittitle>Coeds M-O</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">66</container>
<unitid> Envelope 7</unitid>
<unittitle>Coeds P</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">66</container>
<unitid> Envelope 8</unitid>
<unittitle>Coeds R</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">66</container>
<unitid> Envelope 9</unitid>
<unittitle>Coeds S, except Stolp</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">66</container>
<unitid> Envelope 10</unitid>
<unittitle>Coeds T-V and Stolp</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">66</container>
<unitid> Envelope 11</unitid>
<unittitle>Coeds W-Z</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">66</container>
<unitid> Envelope 12</unitid>
<unittitle>Boy-Girl A-D</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">66</container>
<unitid> Envelope 13</unitid>
<unittitle>Boy-Girl E-H, except Horn, Hurd, Horreman, and Holder</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">66</container>
<unitid> Envelope 14</unitid>
<unittitle> Boy-Girl H-L</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">66</container>
<unitid> Envelope 15</unitid>
<unittitle> Boy-Girl M-P</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">66</container>
<unitid> Envelope 16 </unitid>
<unittitle>Boy-Girl R-T</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">66</container>
<unitid> Envelope 17</unitid>
<unittitle> Boy-Girl Sch-Z</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">66</container>
<unitid> Envelope 18</unitid>
<unittitle>Boys A-J</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">66</container>
<unitid> Envelope 19 </unitid>
<unittitle>Boys K-P</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">66</container>
<unitid> Envelope 20</unitid>
<unittitle>Boys R-Z</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">66</container>
<unitid> Envelope 21 </unitid>
<unittitle>Students-Snow</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">67</container>
<unitid> Envelope 22 </unitid>
<unittitle>Students-Water</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">67</container>
<unitid> Envelope 23</unitid>
<unittitle>Old Men A-C</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">67</container>
<unitid> Envelope 24</unitid>
<unittitle> Old Men D-S</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">67</container>
<unitid> Envelope 25</unitid>
<unittitle>Professors</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">67</container>
<unitid> Envelope 26</unitid>
<unittitle>Babies-Pearson</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">67</container>
<unitid> Envelope 27 </unitid>
<unittitle>Babies, including some Pearson, Family, and Ladies</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">67</container>
<unitid> Envelope 28 </unitid>
<unittitle> Teenagers</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">67</container>
<unitid> Envelope 31A</unitid>
<unittitle> Campus- Water and Miscellaneous</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">67</container>
<unitid> Envelope 31B </unitid>
<unittitle>Campus-Water and Miscellaneous</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">67</container>
<unitid> Envelope 32</unitid>
<unittitle>Farm-Summer</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">67</container>
<unitid> Envelope 33</unitid>
<unittitle> Farm-Winter</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">67</container>
<unitid> Envelope 34</unitid>
<unittitle>Buildings</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">67</container>
<unitid> Envelope 35 </unitid>
<unittitle>Flowers</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">67</container>
<unitid> Envelope 36</unitid>
<unittitle>Mountains, Roads and Tombstones</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">67</container>
<unitid> Envelope 38</unitid>
<unittitle>Hands and Miscellaneous</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">67</container>
<unitid> Envelope 39</unitid>
<unittitle> Haze</unittitle>
</did>
</c01>
<c01 level="series">
<did>
<unittitle> Small Black and White Prints and Negatives, Not Enlarged</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">68</container>
<unitid> Envelope 1 </unitid>
<unittitle> Coeds A-B</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">68</container>
<unitid> Envelope 2</unitid>
<unittitle>Coeds C-E</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">68</container>
<unitid> Envelope 3 </unitid>
<unittitle>Coeds E-H</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">68</container>
<unitid> Envelope 4 </unitid>
<unittitle>Coeds Ho-J</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">68</container>
<unitid> Envelope 5</unitid>
<unittitle> Coeds K-L</unittitle>
</did>
</c01>
<c01 level="file">
<did>
<container type="box">68</container>
<unitid> Envelope 6 </unitid>
<unittitle>Coeds M-O</unittitle>
</did>