-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path485.xml
2165 lines (2165 loc) · 122 KB
/
485.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"?>
<?xml-model href="https://raw.githubusercontent.com/YaleArchivesSpace/EAD3-to-PDF-UA/master/ead3-yale.sch" type="application/xml" schematypens="http://purl.oclc.org/dsdl/schematron"?>
<?xml-model href="https://raw.githubusercontent.com/SAA-SDT/EAD3/master/ead3.rng"
type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
<ead xmlns="http://ead3.archivists.org/schema/">
<control countryencoding="iso3166-1"
dateencoding="iso8601"
langencoding="iso639-2b"
relatedencoding="marc"
repositoryencoding="iso15511"
scriptencoding="iso15924">
<recordid instanceurl="https://hdl.handle.net/10079/fa/med.ms.0034">med.ms.0034</recordid>
<otherrecordid localtype="BIB">10199720</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Gustaf E. Lindskog Papers
</titleproper>
<titleproper localtype="filing">Lindskog (Gustaf E.) Papers</titleproper>
<author>Finding aid by Toby A. Appel</author>
</titlestmt>
<publicationstmt>
<publisher>Medical Historical Library, Cushing/Whitney Medical Library</publisher>
<address>
<addressline>Yale University</addressline>
<addressline>333 Cedar St.</addressline>
<addressline>New Haven, CT 06520-8014</addressline>
<addressline localtype="telephone">203-737-1192 </addressline>
<addressline localtype="fax">203-785-5636</addressline>
<addressline localtype="email">[email protected]</addressline>
<addressline>
<ref href="http://historical.medicine.yale.edu/"
linktitle="http://historical.medicine.yale.edu/"
show="new">http://historical.medicine.yale.edu/</ref>
</addressline>
</address>
<date>2012</date>
<num>Ms Coll 34</num>
</publicationstmt>
<notestmt>
<controlnote>
<p>This encoded finding aid is compliant with the Yale EAD Best Practice Guidelines, Version 1.0.</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 1-5</p>
</controlnote>
</notestmt>
</filedesc>
<maintenancestatus value="derived"/>
<maintenanceagency countrycode="US">
<agencycode>US-CtY-M</agencycode>
<agencyname>Medical Historical Library, Cushing/Whitney Medical Library</agencyname>
</maintenanceagency>
<languagedeclaration>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
<descriptivenote>
<p>Finding aid written in English.</p>
</descriptivenote>
</languagedeclaration>
<conventiondeclaration>
<abbr>dacs</abbr>
<citation>Describing Archives: A Content Standard</citation>
</conventiondeclaration>
<rightsdeclaration>
<abbr>CC0</abbr>
<citation href="https://creativecommons.org/publicdomain/zero/1.0/"/>
<descriptivenote>
<p>Finding aid description and metadata in Archives at Yale are licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. This means that anyone may copy, modify, and distribute this descriptive metadata without restriction or permission. The CC0 license is explained in full on the Creative Commons website: <ref href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0 Universal (CC0 1.0) Public Domain Dedication</ref>. More information is available on our <ref href="https://archives.yale.edu/help">Help page</ref>.</p>
</descriptivenote>
</rightsdeclaration>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-08T22:01:04-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Wednesday January 8, 2025 at 22:01</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/10/resources/485" level="collection">
<did>
<unittitle>Gustaf E. Lindskog Papers</unittitle>
<unitid>Ms Coll 34</unitid>
<repository>
<corpname>
<part>Medical Historical Library, Cushing/Whitney Medical Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2.5</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">5 boxes</physdesc>
<unitdatestructured altrender="1929-1987" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1929">1929</fromdate>
<todate standarddate="1987">1987</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_2ff1f34c4281f5e7694a7d3e0ed9da40">Thoracic surgeon Gustaf Lindskog was a member of the Department of Surgery from 1933 until his retirement in 1971. He chaired the department from 1948 to 1966. The collection consists primarily of his reports as head of the Thoracic Surgery Service of New Haven Hospital, talks including history of surgery lectures given at Yale, medical illustrations, and reprints. The restricted boxes contain Lindskog's notes on his surgical operations on named patients.</abstract>
<origination label="Creator">
<persname rules="aacr" source="local">
<part localtype="agent_person">Lindskog, Gustaf Elmer, 1903-2002</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_1f3aac9ad671ece8bc0470c8dda6eb3c">
<head>Immediate Source of Acquisition</head>
<p>Gift of Carl Lindskog, 2011. Additional materials belonging to Lindskog, especially his history of surgery lectures, were donated earlier and added to the collection in 2015.</p>
</acqinfo>
<custodhist id="aspace_1ff8426a17ebc86f6e593fbcbfb3b74c">
<head>Custodial History</head>
<p>These materials were owned by Gustaf E. Lindskog.</p>
</custodhist>
<accessrestrict id="aspace_f2262833f29194bfd1ff27f61e35e944">
<head>Conditions Governing Access</head>
<p>Part of this collection is open for research.</p>
<p>Descriptions of operations and correspondence with or about named patients are restricted.</p>
</accessrestrict>
<userestrict id="aspace_e175f41bf19d0b8795bbacc00aff87df">
<head>Conditions Governing Use</head>
<p>Reports in Lindskog's official capacity as professor of surgery and surgeon are the property of Yale University. Yale does not own copyright to other materials.</p>
</userestrict>
<prefercite id="aspace_c8bafb5336e8fd8cf37cacb9595ab522">
<head>Preferred Citation</head>
<p>Gustaf E. Lindskog Papers, Historical Library, Cushing/Whitney Medical Library, Yale University, New Haven, CT</p>
</prefercite>
<bioghist id="aspace_36c9bf6f1d818f321de14a4f17890bba">
<head>Biographical / Historical</head>
<p>Gustaf E. Lindskog, thoracic surgeon at Yale, was born in Boston in 1903. He graduated from the Massachusettts Agricultural College (now University of Massachusetts) in 1923, and received his M.D. from Harvard Medical School in 1928. He interned at Lakeside Hospital in Cleveland. From 1929 to 1932, he was a resident in surgery at Yale. The following year he was a National Research Council Fellow at Massachusetts General Hospital in Boston. In 1933, he returned to Yale as instructor of surgery and rose through the ranks to become the William Carmalt Professor of Surgery in 1948. Lindskog chaired the department from 1948 to 1966. In 1971 he retired but remained active in the Yale community. During World War II, he served for four years as a commander in the Navy Medical Corps and was stationed part of the time at the Philadelphia Naval Yard. In 1943, he worked with Louis S. Goodman and Alfred Gilman on the development of chemotherapy at Yale. They used nitrogen mustard in the treatment of a patient with lymphosarcoma. Lindskog was widely recognized for his contributions to thoracic surgery. He pioneered in the surgical resection of chronic pulmonary abscess. In addition to his many research articles, he was co-author with Averill Liebow and William Glenn on three editions of a major textbook of thoracic surgery, <title localtype="simple" render="italic">
<part>Thoracic and Cardiovascular Surgery with Related Pathology</part>
</title> (1953, 1962, 1975). He died at the age of 99 in 2002.</p>
</bioghist>
<scopecontent id="aspace_ed2723cb42e380ced9f313bb1deac6e8">
<head>Scope and Contents</head>
<p>The collection contains reports of the Thoracic Service at Yale, 1938-1946; statistics of various other surgical operations at Yale; lists of surgical residents; typescripts of lectures before various groups; medical illustrations by Armin Hemberger and others, and photographic illustrations from some of his papers; manuscripts of possibly unpublished papers; other miscellany; and reprints of Lindskog's articles. The restricted boxes contain Lindskog's descriptions of his surgical operations on named patients.</p>
</scopecontent>
<arrangement id="aspace_894020673e7985ac4212400ac25ded36">
<head>Arrangement</head>
<p>Organized in seven series: 1. Yale University School of Medicine Department of Surgery. 2. Lectures before various groups. 3. Medical drawings and photographs for some of Lindskog's publications. 4. Miscellany. 5. Reprints of Lindskog's papers. 6. Notes on surgical operations (restricted). 7. Lindskog's history of surgery lectures at Yale.</p>
</arrangement>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85023143"
source="lcsh">
<part localtype="topical">Chest</part>
<part localtype="topical">Surgery</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85037586"
source="lcsh">
<part localtype="topical">Diaphragmatic hernia</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85078900"
source="lcsh">
<part localtype="topical">Lungs</part>
<part localtype="topical">Cancer</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85083080"
source="lcsh">
<part localtype="topical">Medicine</part>
<part localtype="topical">History</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85095018"
source="lcsh">
<part localtype="topical">Operations, Surgical</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85113135"
source="lcsh">
<part localtype="topical">Residents (Medicine)</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2008112388"
source="lcsh">
<part localtype="topical">Surgery</part>
<part localtype="topical">History</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85138434"
source="lcsh">
<part localtype="topical">Tuberculosis</part>
<part localtype="topical">Surgery</part>
</subject>
<genreform identifier="http://vocab.getty.edu/aat/300026877" source="aat">
<part localtype="genre_form">Correspondence </part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300033973" source="aat">
<part localtype="genre_form">Drawings (visual works)</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300027189" source="aat">
<part localtype="genre_form">Medical records</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300046300" source="aat">
<part localtype="genre_form">Photographs</part>
</genreform>
<occupation source="local">
<part localtype="occupation">Surgeons</part>
<part localtype="geographic">Connecticut</part>
</occupation>
<occupation source="local">
<part localtype="occupation">Thoracic surgeons</part>
<part localtype="geographic">Connecticut</part>
</occupation>
<persname source="local">
<part localtype="agent_person">Harvey, Samuel Clark, 1886-1953</part>
</persname>
<persname source="local">
<part localtype="agent_person">Hemberger, Armin B., 1896-1974</part>
</persname>
<persname rules="aacr" source="local">
<part localtype="agent_person">Lindskog, Gustaf Elmer, 1903-2002</part>
</persname>
<corpname>
<part localtype="agent_corporate_entity">Grace-New Haven Community Hospital</part>
</corpname>
<corpname>
<part localtype="agent_corporate_entity">Harvard Medical School</part>
</corpname>
<corpname>
<part localtype="agent_corporate_entity">New Haven Hospital (New Haven, Conn.)</part>
</corpname>
<corpname source="local">
<part localtype="agent_corporate_entity">Lakeside Hospital (Cleveland, Ohio)</part>
</corpname>
<corpname>
<part localtype="agent_corporate_entity">Yale-New Haven Hospital</part>
</corpname>
<corpname>
<part localtype="agent_corporate_entity">Yale University. Department of Surgery</part>
</corpname>
<corpname>
<part localtype="agent_corporate_entity">Yale University. School of Medicine</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/10/archival_objects/161900"
id="ref11"
level="series">
<did>
<unittitle>Yale University School of Medicine Department of Surgery</unittitle>
<unitid>Series I</unitid>
<unitdatestructured altrender="1938-1968" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1938">1938</fromdate>
<todate standarddate="1968">1968</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_af53d7fec3c0d1111b40e66421aacced">
<head>Scope and Contents</head>
<p>Note: Series 6 (restricted) is related to Series 1.</p>
</scopecontent>
<c altrender="/repositories/10/archival_objects/161901"
id="ref13"
level="file">
<did>
<unittitle>Reports of the Thoracic Service, Department of Surgery, New Haven Hospital</unittitle>
<unitdatestructured altrender="1938-1946" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1938">1938</fromdate>
<todate standarddate="1946">1946</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/15359"
id="aspace_ref13_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref13_c2" localtype="folder" parent="aspace_ref13_c1">1</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/161902"
id="ref14"
level="file">
<did>
<unittitle>Statistics of Hernia-Laparotomy Group, Extra-Abdominal Group, and "Minor operations"</unittitle>
<unitdatestructured altrender="1941-1942" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1941">1941</fromdate>
<todate standarddate="1942">1942</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/15359"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref14_c2" localtype="folder" parent="aspace_ref14_c1">2</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/161903"
id="ref15"
level="file">
<did>
<unittitle>Lists of Residents and Senior Assistant Residents in Surgery</unittitle>
<unitdatestructured altrender="1948-1968" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1948">1948</fromdate>
<todate standarddate="1968">1968</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/15359"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref15_c2" localtype="folder" parent="aspace_ref15_c1">3</container>
</did>
<scopecontent id="aspace_a5c95ed19131fd83b79703f131c32d3e">
<head>Scope and Contents</head>
<p>Also list of members of the "YNHH Society."</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/10/archival_objects/161904"
id="ref18"
level="series">
<did>
<unittitle>Lectures before various groups</unittitle>
<unitid>Series II</unitid>
<unitdatestructured altrender="1946-1987" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1946">1946</fromdate>
<todate standarddate="1987">1987</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_3dd9e0a48b87948ab42e96412dc4e78b">
<head>Scope and Contents</head>
<p>Titles transcribed from Lindskog's original folders. See Box 5 for history of medicine lectures at Yale.</p>
</scopecontent>
<c altrender="/repositories/10/archival_objects/161905"
id="ref19"
level="file">
<did>
<unittitle>"Bronchiogenic Carcinoma," presented at the American Surgical Association</unittitle>
<unitdatestructured altrender="1946 April 2" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1946-04-02">1946 April 2</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/15359"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref19_c2" localtype="folder" parent="aspace_ref19_c1">4</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/161906"
id="ref20"
level="file">
<did>
<unittitle>"Surgical Lesions of the Diaphragm," presented to the Utah Medical Society ("unpublished")</unittitle>
<unitdatestructured altrender="1948 September"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1948-09">1948 September</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/15359"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref20_c2" localtype="folder" parent="aspace_ref20_c1">5</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/161907"
id="ref21"
level="file">
<did>
<unittitle>"Problems and Results of the Surgery of Bronchiectasis," presented at the New England Surgical Society ("unpublished")</unittitle>
<unitdatestructured altrender="1948 October 1"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1948-10-01">1948 October 1</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/15359"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref21_c2" localtype="folder" parent="aspace_ref21_c1">6</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/161908"
id="ref133"
level="file">
<did>
<unittitle>"Collateral Respiration and Collateral Circulation in the Normal and Diseased Lung," presented at the Mayo Foundation</unittitle>
<unitdatestructured altrender="1949 March 17" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1949-03-17">1949 March 17</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/15359"
id="aspace_ref133_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref133_c2" localtype="folder" parent="aspace_ref133_c1">7</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/161909"
id="ref134"
level="file">
<did>
<unittitle>"Collateral Respiration and Collateral Circulation in the Normal and Diseased Lung," presented at the Veterans Administration Hospital, Albuquerque, New Mexico</unittitle>
<unitdatestructured altrender="1950 April 24" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1950-04-24">1950 April 24</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/15359"
id="aspace_ref134_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref134_c2" localtype="folder" parent="aspace_ref134_c1">8</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/161910"
id="ref135"
level="file">
<did>
<unittitle>"Tenth Anniversary Remarks at Resident's Party"</unittitle>
<unitdatestructured altrender="1958" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1958">1958</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/15359"
id="aspace_ref135_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref135_c2" localtype="folder" parent="aspace_ref135_c1">9</container>
</did>
<scopecontent id="aspace_dc11ea5523539cf15823b2e0358108ff">
<head>Scope and Contents</head>
<p>Notes changes since Samuel C. Harvey retired ten years ago.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/161911"
id="ref22"
level="file">
<did>
<unittitle>"A Survey of Acute and Chronic Empyema Thoracis - Diagnosis and Treatment," presented at Medical Department Grand Rounds ("unpublished")</unittitle>
<unitdatestructured altrender="circa 1960" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1960">circa 1960</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/15359"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref22_c2" localtype="folder" parent="aspace_ref22_c1">10</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/161912"
id="ref143"
level="file">
<did>
<unittitle>"Atelectasis: Its Causes and Treatment," American College of Surgeons, Atlantic City, Panel on Nontuberculous Infections of the Lungs and Pleura</unittitle>
<unitdatestructured altrender="1962 October 16"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1962-10-16">1962 October 16</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/15359"
id="aspace_ref143_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref143_c2" localtype="folder" parent="aspace_ref143_c1">11</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/161913"
id="ref23"
level="file">
<did>
<unittitle>"Foreign bodies," Clinical Lecture, Waterbury Hospital</unittitle>
<unitdatestructured altrender="1972 April 15" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1972-04-15">1972 April 15</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/15359"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref23_c2" localtype="folder" parent="aspace_ref23_c1">12</container>
</did>
</c>
</c>
<c altrender="/repositories/10/archival_objects/161914"
id="ref34"
level="series">
<did>
<unittitle>Medical drawings and photographs for some of Lindskog's publications</unittitle>
<unitid>Series III</unitid>
</did>
<scopecontent id="aspace_7faa9bc45869687e49999f81de4c6c64">
<head>Scope and Contents</head>
<p>Illustrations and photographs are of anatomical preparatioins and occasionally of equipment.</p>
</scopecontent>
<c altrender="/repositories/10/archival_objects/161915"
id="ref35"
level="file">
<did>
<unittitle>Drawings by Armin Hemberger for <title localtype="simple" render="italic">
<part>Thoracic and Cardiovascular Surgery & Related Pathology</part>
</title> (1960)</unittitle>
<container altrender="/repositories/10/top_containers/15359"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref35_c2" localtype="folder" parent="aspace_ref35_c1">13</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/161916"
id="ref36"
level="file">
<did>
<unittitle>Original drawing for an undetermined publication</unittitle>
<unitdatestructured altrender="1946" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1946">1946</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/15359"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref36_c2" localtype="folder" parent="aspace_ref36_c1">14</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/161917"
id="ref37"
level="file">
<did>
<unittitle>Photograph for Lindskog and H. H. Bradshaw, "Collateral respiration: the chemical composition and volume of collaterally respired gases"</unittitle>
<unitdatestructured altrender="1934" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1934">1934</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/15359"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref37_c2" localtype="folder" parent="aspace_ref37_c1">15</container>
</did>
<scopecontent id="aspace_480dc55aa39feec56c5f5e9348f93650">
<head>Scope and Contents</head>
<p>Published in <title localtype="simple" render="italic">
<part>American Journal of Physiology</part>
</title>, 108 (1934): 581-582</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/161918"
id="ref39"
level="file">
<did>
<unittitle>Photographs for Lindskog, "The treatment of bronchiectasis by pulmonary lobectomy: summary of ten consecutive cases"</unittitle>
<unitdatestructured altrender="1938" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1938">1938</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/15359"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref39_c2" localtype="folder" parent="aspace_ref39_c1">16</container>
</did>
<scopecontent id="aspace_ac8be954f2737e080419dc3aaf081407">
<head>Scope and Contents</head>
<p>Published in <title localtype="simple" render="italic">
<part>Journal of the Connecticut State Medical Society</part>
</title>, 2 (July 1938): 320-324 plus two unpaginated leaves of photographs.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/161919"
id="ref41"
level="file">
<did>
<unittitle>Chart for Lindskog, "The diagnosis of bronchiogenetic carcinoma"</unittitle>
<unitdatestructured altrender="1939" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1939">1939</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/15359"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref41_c2" localtype="folder" parent="aspace_ref41_c1">17</container>
</did>
<scopecontent id="aspace_8faf3bd2860513501c4574641198af03">
<head>Scope and Contents</head>
<p>Published in <title localtype="simple" render="italic">
<part>Journal of the Connnecticut State Medical Society</part>
</title>, 3 (Nov. 1939): 611-612.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/161920"
id="ref43"
level="file">
<did>
<unittitle>Photograph for Lindskog, "Pulmonary resection in the presence of localized empyema"</unittitle>
<unitdatestructured altrender="1943" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1943">1943</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/15359"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref43_c2" localtype="folder" parent="aspace_ref43_c1">18</container>
</did>
<scopecontent id="aspace_d997a80889a475746803ac01b1cc2d15">
<head>Scope and Contents</head>
<p>Published in <title localtype="simple" render="italic">
<part>Yale Journal of Biology and Medicine</part>
</title>, 15 (Jan. 1943): 495-506 plus 2 pages of illustrations.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/161921"
id="ref45"
level="file">
<did>
<unittitle>Photographs for Lindskog, "The surgical treatment of chronic pulmonary abscess"</unittitle>
<unitdatestructured altrender="1943" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1943">1943</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/15359"
id="aspace_ref45_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref45_c2" localtype="folder" parent="aspace_ref45_c1">19</container>
</did>
<scopecontent id="aspace_736c0b9381f5238751d7df6a817561e6">
<head>Scope and Contents</head>
<p>Presented at the meeting of the Society of University Surgeons, Nashville, Tenn., February 10-14, 1944, and published in <emph render="italic">Surgery</emph>, 15 (May 1944): 783-788. Includes typescript, two photographs, and two negatives.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/161922"
id="ref47"
level="file">
<did>
<unittitle>Photographs for Lindskog and Waltman Waters, "Surgical aspects of amoebic dysentery"</unittitle>
<unitdatestructured altrender="1946" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1946">1946</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/15359"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref47_c2" localtype="folder" parent="aspace_ref47_c1">20</container>
</did>
<scopecontent id="aspace_a29c09c6df3e52f67d949e84c33fbb85">
<head>Scope and Contents</head>
<p>Published in <title localtype="simple" render="italic">
<part>Journal of the American Medical Association</part>
</title>, 131 (May 11, 1946): 92-95.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/161923"
id="ref49"
level="file">
<did>
<unittitle>Illustrations and manuscript of Lindskog, A. A. Liebow, and M. R. Hales, "Bilobectomy - surgical and anatomical considerations..."</unittitle>
<unitdatestructured altrender="1949" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1949">1949</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/15359"
id="aspace_ref49_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref49_c2" localtype="folder" parent="aspace_ref49_c1">21</container>
</did>
<scopecontent id="aspace_c06c377cc3045f57537b4ed34b254d6c">
<head>Scope and Contents</head>
<p>Published in <title localtype="simple" render="italic">
<part>Journal of Thoracic Surgery</part>
</title>, 18 (1949): 616-629. Folder also includes manuscript and some correspondence. List of patients on whom the article was based was moved to Series 6, Box 3.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/161924"
id="ref51"
level="file">
<did>
<unittitle>Photograph and tables for Lindskog and R. D. Alley, "Bilateral bronchiectasis; an analysis of forty-three consecutive cases"</unittitle>
<unitdatestructured altrender="1950" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1950">1950</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/15359"
id="aspace_ref51_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref51_c2" localtype="folder" parent="aspace_ref51_c1">22</container>
</did>
<scopecontent id="aspace_cff2e030062d6c195dc6a8051ae1693d">
<head>Scope and Contents</head>
<p>Published in <title localtype="simple" render="italic">
<part>Archives of Surgery</part>
</title>, 6 (1950): 465-472. Includes manuscript.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/161925"
id="ref53"
level="file">
<did>
<unittitle>Photographs and drawing for Lindskog, A. A. Liebow, H. Kausel, and A. Janzen, "Pulmonary ateriovenous aneurysm"</unittitle>
<unitdatestructured altrender="1950" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1950">1950</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/15359"
id="aspace_ref53_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref53_c2" localtype="folder" parent="aspace_ref53_c1">23</container>
</did>
<scopecontent id="aspace_703bd4972b35b4d07c61ba6d9669fdcf">
<head>Scope and Contents</head>
<p>Published in <title localtype="simple" render="italic">
<part>Annals of Surgery</part>
</title>, 132 (1950): 591-610. Includes manuscript.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/161926"
id="ref55"
level="file">
<did>
<unittitle>Photographs for Averill Liebow, William Hales, Gustaf Liebow, and William Bloomer, "Plastic demonstrations of pulmonary pathology"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d. (after 1946)</unitdate>
<container altrender="/repositories/10/top_containers/15359"
id="aspace_ref55_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref55_c2" localtype="folder" parent="aspace_ref55_c1">24</container>
</did>
<scopecontent id="aspace_de396a5cff10faa56ced6860662b7b95">
<head>Scope and Contents</head>
<p>Photographs show experimental equipment. With mimeograph manuscript. Unpublished?</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/10/archival_objects/161927"
id="ref58"
level="series">
<did>
<unittitle>Miscellany</unittitle>
<unitid>Series IV</unitid>
</did>
<c altrender="/repositories/10/archival_objects/161928"
id="ref59"
level="file">
<did>
<unittitle>Typescript for C. M. Van Allen and G.E. Lindskog, "Obstructive pulmonary atelectasis" and unpublished (?) paper, C.M. Allen, "Obstructive pulmonary emphysema"</unittitle>
<unitdatestructured altrender="1930" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1930">1930</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/15360"
id="aspace_ref59_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref59_c2" localtype="folder" parent="aspace_ref59_c1">1</container>
</did>
<scopecontent id="aspace_f26583c14f2dca6d3e7696119fac0a4f">
<head>Scope and Contents</head>
<p>Allen was working at Peking Union Medical College. Their joint paper was published in <title localtype="simple" render="italic">
<part>Archives of Surgery</part>
</title>, 21 (1930): 1195-1213.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/161929"
id="ref62"
level="file">
<did>
<unittitle>Agreement with Appleton-Century-Crofts for publication of <emph render="italic">Thoracic and Cardiovascular Surgery</emph>, 3rd ed.</unittitle>
<unitdatestructured altrender="1970 July 10" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1970-07-10">1970 July 10</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/15360"
id="aspace_ref62_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref62_c2" localtype="folder" parent="aspace_ref62_c1">2</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/161930"
id="ref63"
level="file">
<did>
<unittitle>Certificate from the American Medical Association recognizing Lindskog's service from 1946 to 1959 on the Editorial Board of <title localtype="simple" render="italic">
<part>Archives of Surgery</part>
</title>
</unittitle>
<unitdatestructured altrender="1959" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1959">1959</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/15360"
id="aspace_ref63_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref63_c2" localtype="folder" parent="aspace_ref63_c1">3</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/161931"
id="ref64"
level="file">
<did>
<unittitle>"Our Hosts, Society of Clinical Surgery," 118th meeting-Durham, N.C. - November 15 & 16, 1968"</unittitle>
<unitdatestructured altrender="1968" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1968">1968</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/15360"
id="aspace_ref64_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref64_c2" localtype="folder" parent="aspace_ref64_c1">4</container>
</did>
<scopecontent id="aspace_a5b243369058165f41ce577439e0cd8b">
<head>Scope and Contents</head>
<p>Two glossy sheets with photographs of surgeons, wives, and possibly women in other roles.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/161932"
id="ref66"
level="file">
<did>
<unittitle>Annotated reprints by others</unittitle>
<unitdatestructured altrender="1935-1979" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1935">1935</fromdate>
<todate standarddate="1979">1979</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/15360"
id="aspace_ref66_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref66_c2" localtype="folder" parent="aspace_ref66_c1">5</container>
</did>
<scopecontent id="aspace_c59d8bcd44a4c6a5e641af47a4afc865">
<head>Scope and Contents</head>
<p>Six reprints by Alfred Blalock, George S. Stevenson, Willard B. Soper, Sherwin B. Nuland, Edward A. Boyden, and William W. L. Glenn. William W. L. Glenn, "Some Reflections on the coronary bypass operation," <emph render="italic">Circulation</emph>, 14 (1972): 869-877, contains a letter from Glenn to Lindskog.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/10/archival_objects/161933"
id="ref68"
level="series">
<did>
<unittitle>Reprints of Lindskog's papers</unittitle>
<unitid>Series V</unitid>
<unitdatestructured altrender="1930-1982" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1930">1930</fromdate>
<todate standarddate="1982">1982</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_98ff74f783ff7d6e6e7378fe7c0f5144">
<head>Scope and Contents</head>
<p>Partial numbering is by Lindskog. Collection is incomplete.</p>
</scopecontent>
<c altrender="/repositories/10/archival_objects/161934"
id="ref69"
level="file">
<did>
<unittitle>Reprints</unittitle>
<unitdatestructured altrender="1930-1931" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1930">1930</fromdate>
<todate standarddate="1931">1931</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/15360"
id="aspace_ref69_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref69_c2" localtype="folder" parent="aspace_ref69_c1">6</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/161935"
id="ref70"
level="file">
<did>
<unittitle>Reprints</unittitle>
<unitdatestructured altrender="1932-1934" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1932">1932</fromdate>
<todate standarddate="1934">1934</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/15360"
id="aspace_ref70_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref70_c2" localtype="folder" parent="aspace_ref70_c1">7</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/161936"
id="ref71"
level="file">
<did>
<unittitle>Reprints</unittitle>
<unitdatestructured altrender="1935-1937" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1935">1935</fromdate>
<todate standarddate="1937">1937</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/15360"
id="aspace_ref71_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref71_c2" localtype="folder" parent="aspace_ref71_c1">8</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/161937"
id="ref72"
level="file">
<did>
<unittitle>Reprints</unittitle>
<unitdatestructured altrender="1938-1940" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1938">1938</fromdate>
<todate standarddate="1940">1940</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/15360"
id="aspace_ref72_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref72_c2" localtype="folder" parent="aspace_ref72_c1">9</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/161938"
id="ref73"
level="file">
<did>
<unittitle>Reprints</unittitle>
<unitdatestructured altrender="1941-1943" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1941">1941</fromdate>
<todate standarddate="1943">1943</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/15360"
id="aspace_ref73_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref73_c2" localtype="folder" parent="aspace_ref73_c1">10</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/161939"
id="ref74"
level="file">
<did>
<unittitle>Reprints</unittitle>
<unitdatestructured altrender="1944-1946" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1944">1944</fromdate>
<todate standarddate="1946">1946</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/15360"
id="aspace_ref74_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref74_c2" localtype="folder" parent="aspace_ref74_c1">11</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/161940"
id="ref75"
level="file">
<did>
<unittitle>Reprints</unittitle>
<unitdatestructured altrender="1947-1949" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1947">1947</fromdate>
<todate standarddate="1949">1949</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/15360"
id="aspace_ref75_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref75_c2" localtype="folder" parent="aspace_ref75_c1">12</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/161941"
id="ref76"
level="file">
<did>
<unittitle>Reprints</unittitle>
<unitdatestructured altrender="1950" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1950">1950</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/15360"
id="aspace_ref76_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref76_c2" localtype="folder" parent="aspace_ref76_c1">13</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/161942"
id="ref77"
level="file">
<did>
<unittitle>Reprints</unittitle>
<unitdatestructured altrender="1951" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1951">1951</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/15360"
id="aspace_ref77_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref77_c2" localtype="folder" parent="aspace_ref77_c1">14</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/161943"
id="ref78"
level="file">
<did>
<unittitle>Reprints</unittitle>