-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path13493.xml
3203 lines (3203 loc) · 191 KB
/
13493.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/beinecke.mountaindreamportraits">beinecke.mountaindreamportraits</recordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Bea Nettles, Photographic Portraits for Mountain Dream Tarot </titleproper>
<titleproper localtype="filing">Nettles (Bea), Photographic Portraits for Mountain Dream Tarot</titleproper>
<author>Matthew Daniel Mason</author>
</titlestmt>
<publicationstmt>
<publisher>Beinecke Rare Book and Manuscript Library</publisher>
<address>
<addressline>P. O. Box 208330</addressline>
<addressline>New Haven, CT 06520-8330</addressline>
<addressline localtype="telephone">(203) 432-2977 </addressline>
<addressline localtype="email">[email protected]</addressline>
<addressline>
<ref href="http://beinecke.library.yale.edu/"
linktitle="http://beinecke.library.yale.edu/"
show="new">http://beinecke.library.yale.edu/</ref>
</addressline>
</address>
<date>April 2024</date>
<num>GEN MSS 2136</num>
</publicationstmt>
<notestmt>
<controlnote localtype="offsite">
<p>Box: 1</p>
</controlnote>
</notestmt>
</filedesc>
<maintenancestatus value="derived"/>
<maintenanceagency countrycode="US">
<agencycode>US-CtY-BR</agencycode>
<agencyname>Beinecke Rare Book and Manuscript 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>
<localcontrol localtype="findaidstatus">
<term>in_progress</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-08T23:26:20-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 23:26</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/13493" level="collection">
<did>
<unittitle>Bea Nettles, Photographic Portraits for Mountain Dream Tarot</unittitle>
<unitid>GEN MSS 2136</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="materialtype">
<quantity>82</quantity>
<unittype>Photographic Prints</unittype>
<physfacet>gelatin silver prints</physfacet>
<dimensions> ; 13.7 x 8.8 cm and smaller</dimensions>
</physdescstructured>
<physdesc localtype="container_summary">1 Box</physdesc>
<unitdatestructured altrender="1970-2001" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970">1970</fromdate>
<todate standarddate="2001">2001</todate>
</daterange>
</unitdatestructured>
<unitdatestructured altrender="1970-1975" label="creation" unitdatetype="bulk">
<daterange>
<fromdate standarddate="1970">1970</fromdate>
<todate standarddate="1975">1975</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_b2915de1232fd3516761e83149c8fcec">Composite photographic prints with hand painting created between 1970 and 1975 by Bea Nettles as images for <title>
<part>Mountain Dream Tarot</part>
</title>, published approximately 1975 and distributed by the Light Impressions Corporation. The collection also includes three photographic prints of her children and a student created in 2000. The composite photographic portraits depict the subjects as tarot cards based on the Rider-Waite Tarot published by the Rider Company in 1909 based on the instructions of academic and mystic Arthur Edward Waite (1857-1942) and illustrated by Pamela Colman Smith (1878-1951). The portraits document artists and students at the Penland School of Craft in Penland, North Carolina, created primarily during residencies by Nettles, as well as portraits of friends created in Rochester, New York, and portraits of family members likely created in Gainesville, Florida, and Rochester, New York, as well as self-portraits of Nettles.</abstract>
<origination label="Creator">
<persname relator="pht" rules="aacr" source="local">
<part localtype="agent_person">Nettles, Bea, 1946-</part>
</persname>
</origination>
<origination label="Source">
<persname relator="bsl" rules="aacr" source="local">
<part localtype="agent_person">Nettles, Bea, 1946-</part>
</persname>
</origination>
</did>
<userestrict id="aspace_799cfa59d78626e4e9a73d1596478c86">
<head>Conditions Governing Use</head>
<p>This collection is open for research.</p>
</userestrict>
<acqinfo id="aspace_8b0f1a6d0712026004ddec83888bc211">
<head>Immediate Source of Acquisition</head>
<p>Purchased from Bea Nettles on the Mary Flagler Cary Fund, 2013.</p>
</acqinfo>
<arrangement id="aspace_bd28813cb6b790e57a3e7f2d06da7e3b">
<head>Arrangement</head>
<p>Organized into six series: I. Major Arcana, 1970-1975. II. Minor Arcana - Cups, 1970-2001. III. Minor Arcana - Pentacles, 1970-1975. IV. Minor Arcana - Swords, 1970-2001. V. Minor Arcana - Wands, 1970-2001. VI. Box Cover Art, 1970-1975.</p>
</arrangement>
<bioghist id="aspace_fbfe3eab6b0acfcc7529dda2c2bca58f">
<head>Bea Nettles (born 1946) </head>
<p>Bea Nettles is a fine art photographer and author. She studied painting and printmaking as an undergraduate at the University of Florida and earned a master's degree in painting from the University of Illinois at Urbana-Champaign in 1970. Nettles taught photography and artists' books from 1970-2007 at Rochester Institute of Technology, Tyler School of Art, and the University of Illinois. She creates semi-autobiographical works with themes related family relationships woven together with mythology and natural history, and often in dream-like juxtapositions.</p>
</bioghist>
<prefercite id="aspace_3a1377534aa7ad900e092bdd51667320">
<head>Preferred Citation</head>
<p>Bea Nettles, Photographic Portraits for <title>
<part>Mountain Dream Tarot</part>
</title>. General Collection, Beinecke Rare Book and Manuscript Library, Yale University.</p>
</prefercite>
<processinfo id="aspace_38904b714a1641810886de1b0cbea850">
<head>Processing Information</head>
<p>Collections are processed to a variety of levels, depending on the work necessary to make them usable, their perceived research value, the availability of staff, competing priorities, and whether or not further accruals are expected. The library attempts to provide a basic level of preservation and access for all collections, and does more extensive processing of higher priority collections as time and resources permit.</p>
<p>Descriptions of subjects derive from identifications provided by Nettles about the subject and location of the image as well as the residence of the subject in 1970 and 2013 when applicable. Single year dates for prints derive from a memoir by Nettles collected for the Jane Kessler Memorial Archives at the Penland School of Craft in Penland, North Carolina.</p>
</processinfo>
<scopecontent id="aspace_efddac8dc01c6c932eb002e76c50b37d">
<head>Scope and Contents</head>
<p>Composite photographic prints with hand painting created between 1970 and 1975 by Bea Nettles as images for <title>
<part>Mountain Dream Tarot</part>
</title>, published approximately 1975 and distributed by the Light Impressions Corporation. The collection also includes three photographic prints of her children and a student created in 2001. The composite photographic portraits depict the subjects as tarot cards based on the Rider-Waite Tarot published by the Rider Company in 1909 based on the instructions of academic and mystic Arthur Edward Waite (1857-1942) and illustrated by Pamela Colman Smith (1878-1951). The portraits document artists and students at the Penland School of Craft in Penland, North Carolina, created primarily during residencies by Nettles, as well as portraits of friends created in Rochester, New York, and portraits of family members likely created in Gainesville, Florida, and Rochester, New York, as well as self-portraits of Nettles.</p>
<p>Portraits of artists and students at the Penland School of Craft in Penland, North Carolina, 1970-1975, include Garret Bomen, Jerry Brown, Bill Brown, Sr., Bill Brown, Jr., David M. Dale, Peter Desmond, Don Drumm, Robert Forsythe, John B. Garcia, Ronald Lee Garfinkle, Melissa Fay Johnson Garfinkle, Thomas Gentille, John Parker Glick, Gary Swaffield Griffin, Patricia Janel Melott Griffin, Keith Allen Hatcher, Mary Flo Hecko Hatcher, Roland K. Jahn, True Kelly, David W. Herman, Mary Law, Austin Lowrey, John McDail, Catherine Morony, Jane Goslin Peiser, Mark Peiser, Ron Propst, Tamara Propst, Geraldine Scalone, Randall Ashton Scherr, Peter Spider, Robert Townsend, Albert Sinclair Vrana, Marie Johanna Van Rennes Vrana, Susan Louise Vrana-Brogan, and Sue Williams. There is also a portrait of Jason Weidemier in 2001.</p>
<p>Portraits of friends at Rochester, New York, 1971-1975, include Stephanie Smart Button, Kimberly Smart Dudley, Steve Kahn, Thomas Kekic, David K. Smart, and Nancy Ann Wise Smart.</p>
<p>Portraits of Bea Nettles' family created in Gainesville, Florida, and Rochester, New York, 1970-1975, include her spouse Lionel Suntop, her parents Grace Noble Nettles and Victor Fleetwood Nettles, Sr., her sister Elizabeth Grace Nettles Clark and spouse John Eastham Clark, her sister Constance Louise Nettles Scott, and her brothers John Robert Nettles and Victor Fleetwood Nettles, Jr. Portraits of Bea Nettles' children created in 2001 include Rachel Starr Suntop and Gavin Lazar Suntop.</p>
</scopecontent>
<userestrict id="aspace_8b4c7239cd489f9436f4b0835604a47a">
<head>Conditions Governing Use</head>
<p>The Bea Nettles, Photographic Portraits for <title>
<part>Mountain Dream Tarot</part>
</title>, is the physical property of the Beinecke Rare Book and Manuscript Library, Yale University. Literary rights, including copyright, belong to the authors or their legal heirs and assigns. For further information, consult the appropriate curator.</p>
</userestrict>
<controlaccess>
<title source="local_beinecke">
<part localtype="uniform_title">Rider-Waite tarot</part>
<part localtype="genre_form">Pictorial works</part>
</title>
<subject source="local_beinecke">
<part localtype="topical">Artists</part>
<part localtype="genre_form">Portraits</part>
</subject>
<subject source="local_beinecke">
<part localtype="topical">Divination cards</part>
<part localtype="genre_form">Pictorial works</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85101269"
source="lcsh">
<part localtype="topical">Photography, Artistic</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85119780"
source="lcsh">
<part localtype="topical">Self-portraits</part>
</subject>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh2008115047"
source="lcsh">
<part localtype="geographic">Florida</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<geogname source="local_beinecke">
<part localtype="geographic">Gainesville (Fla.)</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh2010103459"
source="lcsh">
<part localtype="geographic">New York (State)</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<geogname source="local">
<part localtype="geographic">North Carolina</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<geogname source="local_beinecke">
<part localtype="geographic">Penland (N.C.)</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<geogname source="local_beinecke">
<part localtype="geographic">Rochester (N.Y.)</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<genreform identifier="http://vocab.getty.edu/aat/300128695" source="aat">
<part localtype="genre_form">Gelatin silver prints</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300127104" source="aat">
<part localtype="genre_form">Photographic prints</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300046300" source="aat">
<part localtype="genre_form">Photographs</part>
</genreform>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/3775196"
id="aspace_7255c7abfcd57c2e57ed370d30e0483e"
level="series">
<did>
<unittitle>Major Arcana</unittitle>
<unitid>Series I</unitid>
<unitdatestructured altrender="1970-1975" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970">1970</fromdate>
<todate standarddate="1975">1975</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_a7b14e7b0cb5e934c148206f359fdd8d">
<head>Scope and Contents</head>
<p>Composite photographic portraits with hand painting by Bea Nettles that depict the subjects as Major Arcana based on the Rider-Waite Tarot published by the Rider Company in 1909 based on the instructions of academic and mystic Arthur Edward Waite (1857-1942) and illustrated by Pamela Colman Smith (1878-1951).</p>
<p>The Major Arcana are numbered and named cards in a divination tarot pack, and the name originally given by occultists to the trump cards of a normal tarot pack used for playing card games typically numbered from 0 to 21.</p>
<p>The subjects of the portraits document artists at the Penland School of Craft in Penland, North Carolina, created primarily during residencies by Nettles, as well as portraits of friends created in Rochester, New York, and portraits of family members likely created in Gainesville, Florida, and Rochester, New York.</p>
</scopecontent>
<arrangement id="aspace_e50c6f163ba59cc173dd5d1c3f351d93">
<head>Arrangement</head>
<p>Arranged sequentially by the leading number associated with each card</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/3775202"
id="aspace_47f345c8559904ce31cd723f8e15e659"
level="file">
<did>
<unittitle>0 - <title>
<part>Fool</part>
</title>
</unittitle>
<unitdatestructured altrender="1970–1975" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970">1970</fromdate>
<todate standarddate="1975">1975</todate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_20f3d09ad335eab749e1a05852308615">1 gelatin silver print, 12.7 x 10.2 cm</physdesc>
<container altrender="/repositories/11/top_containers/404599 /locations/9"
containerid="39002092808618"
encodinganalog="card box (6d 5h 8w)"
id="aspace_47f345c8559904ce31cd723f8e15e659_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_47f345c8559904ce31cd723f8e15e659_c2"
localtype="folder"
parent="aspace_47f345c8559904ce31cd723f8e15e659_c1">1</container>
</did>
<bioghist id="aspace_997a6974d8602f89fb90ac6966a077c9">
<head>Biographical / Historical</head>
<p>David W. Herman was a student at the Penland School of Craft.</p>
</bioghist>
<scopecontent id="aspace_75cc551e2eb200f689cba3865a59d6c1">
<head>Scope and Contents</head>
<p>Portrait of David W. Herman from North Bennington, Vermont; photographed at the Loom House at the Penland School of Craft, Penland, North Carolina</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3775203"
id="aspace_8efa5c5efdd886cf50ab41186628ca90"
level="file">
<did>
<unittitle>I - <title>
<part>Magician</part>
</title>
</unittitle>
<unitdatestructured altrender="1970 July" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970-07">1970 July</fromdate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_a0a12b6283f6f1015871e891c494a573">1 gelatin silver print, 12.7 x 10.1 cm</physdesc>
<container altrender="/repositories/11/top_containers/404599 /locations/9"
containerid="39002092808618"
encodinganalog="card box (6d 5h 8w)"
id="aspace_8efa5c5efdd886cf50ab41186628ca90_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_8efa5c5efdd886cf50ab41186628ca90_c2"
localtype="folder"
parent="aspace_8efa5c5efdd886cf50ab41186628ca90_c1">2</container>
</did>
<bioghist id="aspace_53d7de2dac153a500a1064f7ca11a60b">
<head>Biographical / Historical</head>
<p>Thomas Gentille (born 1936) is a jeweler and educator as well as a metals instructor at the Penland School of Craft.</p>
</bioghist>
<scopecontent id="aspace_7c1491bace97094c094a590d9143ac75">
<head>Scope and Contents</head>
<p>Portrait of Thomas Gentille from New York City; photographed in front of Horner Hall at the Penland School of Craft, Penland, North Carolina</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3775204"
id="aspace_9c4a1ee2e864fbcb54f512ba9f99b4f5"
level="file">
<did>
<unittitle>II -<title>
<part>High Priestess</part>
</title>
</unittitle>
<unitdatestructured altrender="1970 June-July"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970-06">1970 June</fromdate>
<todate standarddate="1970-07">1970 July</todate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_17c9a35b64b7d264cb010fb045a90e75">1 gelatin silver print, 12.7 x 10.2 cm</physdesc>
<container altrender="/repositories/11/top_containers/404599 /locations/9"
containerid="39002092808618"
encodinganalog="card box (6d 5h 8w)"
id="aspace_9c4a1ee2e864fbcb54f512ba9f99b4f5_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_9c4a1ee2e864fbcb54f512ba9f99b4f5_c2"
localtype="folder"
parent="aspace_9c4a1ee2e864fbcb54f512ba9f99b4f5_c1">3</container>
</did>
<bioghist id="aspace_58021ff6e1874c83783947cc5b4b2c2b">
<head>Biographical / Historical</head>
<p>True Kelly (born 1936) is an art teacher, a photographer</p>
</bioghist>
<scopecontent id="aspace_8ec9b46fb3c7459b7492df0dc17cf41d">
<head>Scope and Contents</head>
<p>Portrait of True Kelly from Penland, North Carolina; photographed at Horner Hall at the Penland School of Craft, Penland, North Carolina</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3775205"
id="aspace_749c8a1e51117a4675c7f29f2c42816a"
level="file">
<did>
<unittitle>III - <title>
<part>Empress</part>
</title>
</unittitle>
<unitdatestructured altrender="1970–1975" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970">1970</fromdate>
<todate standarddate="1975">1975</todate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_ef080b5b6f74f78332ceaa08f47e80e1">1 gelatin silver print, 12.5 x 10.1 cm</physdesc>
<container altrender="/repositories/11/top_containers/404599 /locations/9"
containerid="39002092808618"
encodinganalog="card box (6d 5h 8w)"
id="aspace_749c8a1e51117a4675c7f29f2c42816a_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_749c8a1e51117a4675c7f29f2c42816a_c2"
localtype="folder"
parent="aspace_749c8a1e51117a4675c7f29f2c42816a_c1">4</container>
</did>
<bioghist id="aspace_fff33fb71ef8544b843fed5454bb738d">
<head>Biographical / Historical</head>
<p>Grace Noble Nettles (1919-2007) was a poet and an English instructor at Santa Fe College, Gainesville, Florida, as well as mother of Bea Nettles.</p>
</bioghist>
<scopecontent id="aspace_27961be3b77b70d534e869fd789fcdb2">
<head>Scope and Contents</head>
<p>Portrait of Grace Noble Nettles from Gainesville, Florida</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3775206"
id="aspace_b146ce441bb20cb3e8823593e1e09f74"
level="file">
<did>
<unittitle>IV - <title>
<part>Emperor</part>
</title>
</unittitle>
<unitdatestructured altrender="1970–1975" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970">1970</fromdate>
<todate standarddate="1975">1975</todate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_b5d35ea70964fe5fb8e0ed073e6832c7">1 gelatin silver print, 12.7 x 10.1 cm</physdesc>
<container altrender="/repositories/11/top_containers/404599 /locations/9"
containerid="39002092808618"
encodinganalog="card box (6d 5h 8w)"
id="aspace_b146ce441bb20cb3e8823593e1e09f74_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_b146ce441bb20cb3e8823593e1e09f74_c2"
localtype="folder"
parent="aspace_b146ce441bb20cb3e8823593e1e09f74_c1">5</container>
</did>
<bioghist id="aspace_b26cf3d0e82ec5ffdae5e79529dada20">
<head>Biographical / Historical</head>
<p>Victor Fleetwood Nettles (1914-2002) was a professor of horticulture at the University of Florida and the father of Bea Nettles. He also served as a lieutenant colonel in the United States Army during World War II and awarded the Bronze Star.</p>
</bioghist>
<scopecontent id="aspace_3f93dd16342848fa6eb9705c7a0202b6">
<head>Scope and Contents</head>
<p>Portrait of Victor Fleetwood Nettles from Gainesville, Florida</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3775207"
id="aspace_f14d56a7e9074e7d504b0ff98f90ec51"
level="file">
<did>
<unittitle>V - <title>
<part>Hierophant</part>
</title>
</unittitle>
<unitdatestructured altrender="1970 July" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970-07">1970 July</fromdate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_0e4413522d06f27d9ce1197d697b960e">1 gelatin silver print, 12.5 x 10.1 cm</physdesc>
<container altrender="/repositories/11/top_containers/404599 /locations/9"
containerid="39002092808618"
encodinganalog="card box (6d 5h 8w)"
id="aspace_f14d56a7e9074e7d504b0ff98f90ec51_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_f14d56a7e9074e7d504b0ff98f90ec51_c2"
localtype="folder"
parent="aspace_f14d56a7e9074e7d504b0ff98f90ec51_c1">6</container>
</did>
<bioghist id="aspace_1031091544f91cdf6adbbecaa1832192">
<head>Biographical / Historical</head>
<p>Keith Allen Hatcher (1934-2017) was a printmaker, watercolor painter and basket maker as professor of art at Southern Connecticut State University.</p>
</bioghist>
<scopecontent id="aspace_f94b4c071db440feafcd067e5f2cd717">
<head>Scope and Contents</head>
<p>Portrait of Keith Allen Hatcher from New Haven, Connecticut; photographed at Horner Hall at the Penland School of Craft, Penland, North Carolina</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3775208"
id="aspace_41e23fb8e67daf71c16eb1597a11aab9"
level="file">
<did>
<unittitle>VI - <title>
<part>Lovers</part>
</title>
</unittitle>
<unitdatestructured altrender="1970 July" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970-07">1970 July</fromdate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_7df2761d4e4ecf215c1ab847a1cd2e11">1 gelatin silver print, 12.5 x 10.2 cm</physdesc>
<container altrender="/repositories/11/top_containers/404599 /locations/9"
containerid="39002092808618"
encodinganalog="card box (6d 5h 8w)"
id="aspace_41e23fb8e67daf71c16eb1597a11aab9_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_41e23fb8e67daf71c16eb1597a11aab9_c2"
localtype="folder"
parent="aspace_41e23fb8e67daf71c16eb1597a11aab9_c1">7</container>
</did>
<bioghist id="aspace_3d356724c7bd76a1f925442b82e5a812">
<head>Biographical / Historical</head>
<p>Ron Propst (born 1944) is a studio potter and Tamara Propst (born 1946) is a weaver. They established The Other Half gallery in Winston-Salem, North Carolina, in 1983.</p>
</bioghist>
<scopecontent id="aspace_a43e11175c95d54f461624749f23be55">
<head>Scope and Contents</head>
<p>Portrait of Ron Propst and Tamara Propst from Penland, North Carolina; photographed at Penland, North Carolina</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3775209"
id="aspace_1729e81362d055b8f9828ed312dad8cd"
level="file">
<did>
<unittitle>VII - <title>
<part>Chariot</part>
</title>
</unittitle>
<unitdatestructured altrender="1970 June-July"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970-06">1970 June</fromdate>
<todate standarddate="1970-07">1970 July</todate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_95145f0773780ff43634ba288466c742">1 gelatin silver print, 12.5 x 10.2 cm</physdesc>
<container altrender="/repositories/11/top_containers/404599 /locations/9"
containerid="39002092808618"
encodinganalog="card box (6d 5h 8w)"
id="aspace_1729e81362d055b8f9828ed312dad8cd_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_1729e81362d055b8f9828ed312dad8cd_c2"
localtype="folder"
parent="aspace_1729e81362d055b8f9828ed312dad8cd_c1">8</container>
</did>
<bioghist id="aspace_3d528d544b126145534dbd0f228df562">
<head>Biographical / Historical</head>
<p>Thomas Kekic (1943-1986) was a glass artist as well as the owner and operator of Bristol Glassworks in Canandaigua, New York.</p>
</bioghist>
<scopecontent id="aspace_7b785c924d4f6ff73155c3465c266c6f">
<head>Scope and Contents</head>
<p>Portrait of Tom Kekic from Rochester, New York; photographed at Penland, North Carolina; affixed photographic print on recto of sculptures, 6 x 6.8 cm</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3775210"
id="aspace_d2a915989de8c0c91c9704da5b79ff93"
level="file">
<did>
<unittitle>VIII - <title>
<part>Strength</part>
</title>
</unittitle>
<unitdatestructured altrender="1970 June-July"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970-06">1970 June</fromdate>
<todate standarddate="1970-07">1970 July</todate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_d18da430f9a36c909e2ff502e1a269a5">1 gelatin silver print, 12.7 x 10 cm</physdesc>
<container altrender="/repositories/11/top_containers/404599 /locations/9"
containerid="39002092808618"
encodinganalog="card box (6d 5h 8w)"
id="aspace_d2a915989de8c0c91c9704da5b79ff93_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_d2a915989de8c0c91c9704da5b79ff93_c2"
localtype="folder"
parent="aspace_d2a915989de8c0c91c9704da5b79ff93_c1">9</container>
</did>
<bioghist id="aspace_553a9dc674c7494641a98feaae702331">
<head>Biographical / Historical</head>
<p>Catherine Morony was a resident artist at the Penland School of Craft in Penland, North Carolina, and specialized in natural textile dyes.</p>
</bioghist>
<scopecontent id="aspace_890503c864e836ae4b3de7ba0158d824">
<head>Scope and Contents</head>
<p>Portrait of Catherine Morony from Penland, North Carolina; photographed at Penland, North Carolina</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3775211"
id="aspace_bc4a9a4e24a3e609cd2867a55747f04a"
level="file">
<did>
<unittitle>IX - <title>
<part>Hermit</part>
</title>
</unittitle>
<unitdatestructured altrender="1970 June" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970-06">1970 June</fromdate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_e14319be9be092d748359d46c1e58717">1 gelatin silver print, 12.5 x 10 cm</physdesc>
<container altrender="/repositories/11/top_containers/404599 /locations/9"
containerid="39002092808618"
encodinganalog="card box (6d 5h 8w)"
id="aspace_bc4a9a4e24a3e609cd2867a55747f04a_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_bc4a9a4e24a3e609cd2867a55747f04a_c2"
localtype="folder"
parent="aspace_bc4a9a4e24a3e609cd2867a55747f04a_c1">10</container>
</did>
<bioghist id="aspace_d4db18667ac6540b5fc151c4b769a396">
<head>Biographical / Historical</head>
<p>Roland K. Jahn (1934-2023) was a German American studio glass artist.</p>
</bioghist>
<scopecontent id="aspace_2c3d5b5c3f1164745212090116427489">
<head>Scope and Contents</head>
<p>Portrait of Roland K. Jahn from Philadelphia, Pennsylvania; photographed at Penland, North Carolina</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3775212"
id="aspace_66b2c95e929fca6ca20ff2593b006ab4"
level="file">
<did>
<unittitle>X - <title>
<part>Wheel of Fortune</part>
</title>
</unittitle>
<unitdatestructured altrender="1970–1975" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970">1970</fromdate>
<todate standarddate="1975">1975</todate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_f7c8b81168ab71a5ee9c40b8d09b30ea">1 gelatin silver print, 12.7 x 10.1 cm</physdesc>
<container altrender="/repositories/11/top_containers/404599 /locations/9"
containerid="39002092808618"
encodinganalog="card box (6d 5h 8w)"
id="aspace_66b2c95e929fca6ca20ff2593b006ab4_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_66b2c95e929fca6ca20ff2593b006ab4_c2"
localtype="folder"
parent="aspace_66b2c95e929fca6ca20ff2593b006ab4_c1">11</container>
</did>
<bioghist id="aspace_28a3e0c8bdec47336220e6d13441cde9">
<head>Biographical / Historical</head>
<p>John Robert Nettles (born 1948) is a lawyer and brother of Bea Nettles.</p>
</bioghist>
<scopecontent id="aspace_09532b91ce7e711c107314a35b2cf611">
<head>Scope and Contents</head>
<p>Portrait of John Robert Nettles from Gainesville, Florida; image includes portraits of a bull, eagle, and lion</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3775213"
id="aspace_2a696db13bb77b13d721fb6caebffccb"
level="file">
<did>
<unittitle>XI - <title>
<part>Justice</part>
</title>
</unittitle>
<unitdatestructured altrender="1971 July" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1971-07">1971 July</fromdate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_ce019ad404518a1dbc80274235e2adec">1 gelatin silver print, 12.7 x 10.1 cm</physdesc>
<container altrender="/repositories/11/top_containers/404599 /locations/9"
containerid="39002092808618"
encodinganalog="card box (6d 5h 8w)"
id="aspace_2a696db13bb77b13d721fb6caebffccb_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_2a696db13bb77b13d721fb6caebffccb_c2"
localtype="folder"
parent="aspace_2a696db13bb77b13d721fb6caebffccb_c1">12</container>
</did>
<bioghist id="aspace_88d819dbf2ebd44350f828b3edacd3ea">
<head>Biographical / Historical</head>
<p>Mary Flo Hecko Hatcher (born 1937), known as Flo Hatcher, is a print maker and widow of Keith Allen Hatcher (1934-2017).</p>
</bioghist>
<scopecontent id="aspace_75dfd5dae1e8b9e6add35319d5c57d00">
<head>Scope and Contents</head>
<p>Portrait of Mary Flo Hecko Hatcher from New Haven, Connecticut; photographed at Horner Hall at the Penland School of Craft, Penland, North Carolina</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3775214"
id="aspace_260d744d352c68bdf298cb76c3864b15"
level="file">
<did>
<unittitle>XII - <title>
<part>Hanged Man</part>
</title>
</unittitle>
<unitdatestructured altrender="1970–1975" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970">1970</fromdate>
<todate standarddate="1975">1975</todate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_02bff56254d8db2d2ff7798d094cba7c">1 gelatin silver print, 12.7 x 10.1 cm</physdesc>
<container altrender="/repositories/11/top_containers/404599 /locations/9"
containerid="39002092808618"
encodinganalog="card box (6d 5h 8w)"
id="aspace_260d744d352c68bdf298cb76c3864b15_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_260d744d352c68bdf298cb76c3864b15_c2"
localtype="folder"
parent="aspace_260d744d352c68bdf298cb76c3864b15_c1">13</container>
</did>
<bioghist id="aspace_33cd28f1ba93393a81e1e10cab6065f1">
<head>Biographical / Historical</head>
<p>John Robert Nettles (born 1948) is a lawyer and brother of Bea Nettles.</p>
</bioghist>
<scopecontent id="aspace_84cb83dd27fe73c8c66a2ebed3abb948">
<head>Scope and Contents</head>
<p>Portrait of John Robert Nettles from Gainesville, Florida</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3775215"
id="aspace_32aadc72397cfdbe3d54ed633efeb1cd"
level="file">
<did>
<unittitle>XIII - <title>
<part>Death</part>
</title>
</unittitle>
<unitdatestructured altrender="1970–1975" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970">1970</fromdate>
<todate standarddate="1975">1975</todate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_0c737cb6feeeedf4225326b1b7bdd256">1 gelatin silver print, 12.7 x 10.1 cm</physdesc>
<container altrender="/repositories/11/top_containers/404599 /locations/9"
containerid="39002092808618"
encodinganalog="card box (6d 5h 8w)"
id="aspace_32aadc72397cfdbe3d54ed633efeb1cd_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_32aadc72397cfdbe3d54ed633efeb1cd_c2"
localtype="folder"
parent="aspace_32aadc72397cfdbe3d54ed633efeb1cd_c1">14</container>
</did>
<scopecontent id="aspace_34d32f89f2656267f27ad34aaf766b1a">
<head>Scope and Contents</head>
<p>Street portrait of a dancer in Mexico; subject may be Peruvian performing the danza de las tijeras, or scissors dance, is a traditional dance from the Andes.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3775216"
id="aspace_4e54bd2f30224bb7df72435161034e7e"
level="file">
<did>
<unittitle>XIV - <title>
<part>Temperance</part>
</title>
</unittitle>
<unitdatestructured altrender="1970–1975" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970">1970</fromdate>
<todate standarddate="1975">1975</todate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_87917fcaab8f73927db964e9d5d321b1">1 gelatin silver print, 12.7 x 10.1 cm</physdesc>
<container altrender="/repositories/11/top_containers/404599 /locations/9"
containerid="39002092808618"
encodinganalog="card box (6d 5h 8w)"
id="aspace_4e54bd2f30224bb7df72435161034e7e_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_4e54bd2f30224bb7df72435161034e7e_c2"
localtype="folder"
parent="aspace_4e54bd2f30224bb7df72435161034e7e_c1">15</container>
</did>
<bioghist id="aspace_d35ac5f58c92200788fdf8d27c3a8d36">
<head>Biographical / Historical</head>
<p>Elizabeth Grace Nettles Clark (born 1953) is a sister of Bea Nettles.</p>
</bioghist>
<scopecontent id="aspace_7a519935ead7e9de473793c2a395c5d3">
<head>Scope and Contents</head>
<p>Portrait of Elizabeth Grace Nettles Clark from Gainesville, Florida</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3775217"
id="aspace_155edf9deb3b1bb2b3cf1b5db1323e5b"
level="file">
<did>
<unittitle>XV - <title>
<part>Devil</part>
</title>
</unittitle>
<unitdatestructured altrender="1970–1975" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970">1970</fromdate>
<todate standarddate="1975">1975</todate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_5284d38610b0b1e936de9ae66579b697">1 gelatin silver print, 12.7 x 10.2 cm</physdesc>
<container altrender="/repositories/11/top_containers/404599 /locations/9"
containerid="39002092808618"
encodinganalog="card box (6d 5h 8w)"
id="aspace_155edf9deb3b1bb2b3cf1b5db1323e5b_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_155edf9deb3b1bb2b3cf1b5db1323e5b_c2"
localtype="folder"
parent="aspace_155edf9deb3b1bb2b3cf1b5db1323e5b_c1">16</container>
</did>
<bioghist id="aspace_6fa11369e60e8cdce170fb2e3bb13d47">
<head>Biographical / Historical</head>
<p>Roland K. Jahn (1934-2023) was a German American studio glass artist.</p>
</bioghist>
<scopecontent id="aspace_1148253a64c5a414c18c3f62c14564e1">
<head>Scope and Contents</head>
<p>Portrait of Roland K. Jahn, From Philadelphia, Pennsylvania; photographed at Penland, North Carolina</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3775218"
id="aspace_1399884db13e18a5408848248fedb606"
level="file">
<did>
<unittitle>XVI - <title>
<part>Tower</part>
</title>
</unittitle>
<unitdatestructured altrender="1970–1975" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970">1970</fromdate>
<todate standarddate="1975">1975</todate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_f6dfc3c06c22fabe44ba03c254fcf58c">1 gelatin silver print, 12.6 x 10.2 cm</physdesc>
<container altrender="/repositories/11/top_containers/404599 /locations/9"
containerid="39002092808618"
encodinganalog="card box (6d 5h 8w)"
id="aspace_1399884db13e18a5408848248fedb606_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_1399884db13e18a5408848248fedb606_c2"
localtype="folder"
parent="aspace_1399884db13e18a5408848248fedb606_c1">17</container>
</did>
<bioghist id="aspace_050b2393a81b646e4632497fdcd82c05">
<head>Biographical / Historical</head>
<p>John Eastham Clark (born 1952) is a medical doctor specializing in sports medicine married to Elizabeth Grace Nettle Clark, and a brother-in-law of Bea Nettles.</p>
</bioghist>
<scopecontent id="aspace_98406d95db8859f534f4d5a0ee1240fb">
<head>Scope and Contents</head>
<p>Portrait of John Eastham Clark from Gainesville, Florida</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3775219"
id="aspace_2b7c46e77eb220d38a85f55425c7b6e5"
level="file">
<did>
<unittitle>XVII - <title>
<part>Star</part>
</title>
</unittitle>
<unitdatestructured altrender="1971 July" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1971-07">1971 July</fromdate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_45380f3e4b0d9d2830bff5836e50c2f2">1 gelatin silver print, 12.5 x 10.1 cm</physdesc>
<container altrender="/repositories/11/top_containers/404599 /locations/9"
containerid="39002092808618"
encodinganalog="card box (6d 5h 8w)"
id="aspace_2b7c46e77eb220d38a85f55425c7b6e5_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_2b7c46e77eb220d38a85f55425c7b6e5_c2"
localtype="folder"
parent="aspace_2b7c46e77eb220d38a85f55425c7b6e5_c1">18</container>
</did>
<bioghist id="aspace_56e0bdf2bcf4106e3ea169865df1fab1">
<head>Biographical / Historical</head>
<p>Sue Williams was a ceramics student at the Penland School of Craft.</p>
</bioghist>
<scopecontent id="aspace_38303df491287d291cac96bb0c6226bb">
<head>Scope and Contents</head>
<p>Portrait of Sue Williams from Florida; photographed at Penland, North Carolina</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3775220"
id="aspace_303679010dd05a62688972ea64632809"
level="file">
<did>
<unittitle>XVIII - <title>
<part>Moon</part>
</title>
</unittitle>
<unitdatestructured altrender="1970–1975" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970">1970</fromdate>
<todate standarddate="1975">1975</todate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_bf397471c0349d0709bc7512890223de">1 gelatin silver print, 12.7 x 10.1 cm</physdesc>
<container altrender="/repositories/11/top_containers/404599 /locations/9"
containerid="39002092808618"
encodinganalog="card box (6d 5h 8w)"
id="aspace_303679010dd05a62688972ea64632809_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_303679010dd05a62688972ea64632809_c2"
localtype="folder"
parent="aspace_303679010dd05a62688972ea64632809_c1">19</container>
</did>
<bioghist id="aspace_bfc501c315a22f1f038803486e40f3ff">
<head>Biographical / Historical</head>
<p>Geraldine Scalone (born 1941) taught weaving the Penland School of Craft.</p>
</bioghist>
<scopecontent id="aspace_81296a1a19b45b0e14b12a23bb78b912">
<head>Scope and Contents</head>
<p>Portrait of Geraldine Scalone from Mystic, Connecticut; photographed at Penland, North Carolina</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3775221"
id="aspace_c6ea69721b725bc6b0d8ded477a94cb7"
level="file">
<did>
<unittitle>XIX - <title>
<part>Sun</part>
</title>
</unittitle>
<unitdatestructured altrender="1971 July" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1971-07">1971 July</fromdate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_41dee92276b66976a63b238b761d5d04">1 gelatin silver print, 12.6 x 10.2 cm</physdesc>
<container altrender="/repositories/11/top_containers/404599 /locations/9"
containerid="39002092808618"
encodinganalog="card box (6d 5h 8w)"
id="aspace_c6ea69721b725bc6b0d8ded477a94cb7_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_c6ea69721b725bc6b0d8ded477a94cb7_c2"
localtype="folder"
parent="aspace_c6ea69721b725bc6b0d8ded477a94cb7_c1">20</container>
</did>
<bioghist id="aspace_46770edfff157a63f6aca549860ad7ac">
<head>Biographical / Historical</head>
<p>Mary Law was a ceramics student at the Penland School of Craft. Portia Propst Bodenheimer (born approximately 1968) is a daughter of Ron Propst (born 1944) and Tamara Propst (born 1946).</p>
</bioghist>
<scopecontent id="aspace_eaeba5211b17c109ba1f59a74108897d">
<head>Scope and Contents</head>
<p>Portrait of Mary Law from Berkeley, California as the sun and Portia Propst riding a horse; Law photographed outside the clay pottery studio at the Penland School of Craft, Penland, North Carolina</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3775222"
id="aspace_6a04485f513c5c0dd7b0ff62da0a4c50"
level="file">
<did>
<unittitle>XX - <title>
<part>Judgement</part>
</title>
</unittitle>
<unitdatestructured altrender="1971 July" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1971-07">1971 July</fromdate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_0218e1d8669609a365815f2dcd1e6c5d">1 gelatin silver print, 12.6 x 10.2 cm</physdesc>
<container altrender="/repositories/11/top_containers/404599 /locations/9"
containerid="39002092808618"
encodinganalog="card box (6d 5h 8w)"
id="aspace_6a04485f513c5c0dd7b0ff62da0a4c50_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_6a04485f513c5c0dd7b0ff62da0a4c50_c2"
localtype="folder"
parent="aspace_6a04485f513c5c0dd7b0ff62da0a4c50_c1">21</container>
</did>
<bioghist id="aspace_e26388e4d46065d49e0a4321c0c15262">
<head>Biographical / Historical</head>
<p>Elizabeth Grace Nettles Clark (born 1953) is a sister of Bea Nettles. Eric Norman Shurtleff (born 1954) is a son of Byron Parker Shurtleff (1929-1999).</p>
</bioghist>
<scopecontent id="aspace_c0b54954d78c61faa240bc16ee07de20">
<head>Scope and Contents</head>
<p>Portrait of Elizabeth Grace Nettles Clark from Gainesville, Florida, as the angel, and Eric Norman Shurtleff is the spirit photographed at the cemetery at Penland, North Carolina</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3775223"
id="aspace_d9205b22ce1d2e91a74803c7abe59929"
level="file">
<did>
<unittitle>XXI - <title>
<part>World</part>
</title>
</unittitle>
<unitdatestructured altrender="1970–1975" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970">1970</fromdate>
<todate standarddate="1975">1975</todate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_3d8758b8ae841fdecde695a7f4746d0d">1 gelatin silver print, 12.7 x 10.1 cm</physdesc>
<container altrender="/repositories/11/top_containers/404599 /locations/9"
containerid="39002092808618"
encodinganalog="card box (6d 5h 8w)"
id="aspace_d9205b22ce1d2e91a74803c7abe59929_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_d9205b22ce1d2e91a74803c7abe59929_c2"
localtype="folder"
parent="aspace_d9205b22ce1d2e91a74803c7abe59929_c1">22</container>
</did>
<scopecontent id="aspace_a6006987c0c2fe9d71388275813213f4">
<head>Scope and Contents</head>
<p>Self-portrait of Bea Nettles; likely photographed at Penland, North Carolina; photograph affixed to recto replicates the imagery for <title>
<part>Wheel</part>
</title>, which includes a portrait of John Robert Nettles as well as a bull, eagle, and lion</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/3775197"
id="aspace_ed93c6895fce4f51977afe4d915337a9"
level="series">
<did>
<unittitle>Minor Arcana - Cups</unittitle>
<unitid>Series II</unitid>
<unitdatestructured altrender="1970-2001" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970">1970</fromdate>
<todate standarddate="2001">2001</todate>
</daterange>
</unitdatestructured>
<unitdatestructured altrender="bulk 1970-1975" label="creation" unitdatetype="bulk">
<daterange>
<fromdate standarddate="1970">1970</fromdate>