-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathohiou_collection.json
1056 lines (1056 loc) · 39.5 KB
/
ohiou_collection.json
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
{
"@context": "http://iiif.io/api/presentation/2/context.json",
"@id": "https://raw.githubusercontent.com/blalbrit/manuscript_registry/master/ohiou_collection.json",
"@type": "sc:Collection",
"label": "Manuscripts from Ohio University Libraries",
"viewingHint": "top",
"description": "The Mahn Center for Archives and Special Collections at Ohio University Libraries owns over 700 manuscript and printed leaves dating from the 8th to 20th century. The product of 19th and 20th century \"bookbreakers,\" dealers who dismembered historic texts to sell the component pages individually or in portfolios, these leaves reveal techniques and conventions of handmade book production from across the world. The first collection to be added to this digital assemblage comes from Otto F. Ege, a Cleveland-based museum curator and art history professor, who began cutting apart medieval manuscripts in the early-to-mid 20th century in order to distribute examples of fifty pages each to universities around the country. Ohio University owns set no. 5 of a total of 40 produced. These illuminated leaves, all hand-lettered on vellum, come from Western Europe and were produced over a span of 400 years. Future additions to the Manuscripts and Printed Leaves digital collection will include over 500 items from the Gilbert and Ursula Farfel Collection of Inunable and Manuscript Leaves and 154 items from Pages from the Past, a four-volume set of portfolios assembled by the New York-based Society of Foliophiles between 1927 and 1964. . https://media.library.ohio.edu/digital/collection/p15808coll19",
"attribution": "Provided by Ohio University Libraries",
"manifests": [
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/377",
"@type": "sc:Manifest",
"label": "Printed leaf from Commentaries on Boetius, 1512 (2 of 2)"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/179",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a book of hours created in the Netherlands, late 15th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/314",
"@type": "sc:Manifest",
"label": "Printed leaf from The Herball or Generall Historie of Plants by John Gerard, 1633"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/31",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a gradual created in England, early 13th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/143",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a gradual created in Italy, middle 15th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/341",
"@type": "sc:Manifest",
"label": "Printed leaf from Vocabularius Praedicantium sire Variloguus by Johannes Melber, 1488"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/135",
"@type": "sc:Manifest",
"label": "Manuscript leaf from an epistolary created in Italy, middle 15th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/506",
"@type": "sc:Manifest",
"label": "Printed leaf from Symbola Politica, middle 17th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/410",
"@type": "sc:Manifest",
"label": "Printed leaf from Historia de Gentibus Septentrionalibus by Olaus Magnus, 1555"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/371",
"@type": "sc:Manifest",
"label": "Printed leaf from Cassiodorus' In Psalterium Exposito, 1491"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/175",
"@type": "sc:Manifest",
"label": "Manuscript leaf from Dialogues of Gregory the Great, late 15th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/338",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a religious work created in Germany, circa 1450"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/187",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a Vulgate Bible created in Germany, late 15th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/299",
"@type": "sc:Manifest",
"label": "Printed leaf from Tables of Lograithms for All Numbers 1 to 102,100... by William Gardiner, 1742"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/111",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a missal created in Würzburg, early 14th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/115",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a book of hours created in France, middle 15th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/350",
"@type": "sc:Manifest",
"label": "Printed leaf from a Vulgate Bible created in Venice, 1497"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/55",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a Vulgate Bible created in France, late 13th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/171",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a book of hours created in the Netherlands, late 15th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/195",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a book of hours created in the Netherlands, late 15th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/563",
"@type": "sc:Manifest",
"label": "Printed leaf from Constitutiones de Jurejurando by Moses Maimonides, 1690"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/147",
"@type": "sc:Manifest",
"label": "Manuscript leaf from Livy's History of Rome, middle 15th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/245",
"@type": "sc:Manifest",
"label": "Printed leaf from Tabulae Eclypsium by Johannes Winterburger, 1514"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/151",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a missal created in Limoges, middle 15th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/218",
"@type": "sc:Manifest",
"label": "Printed leaf from work containing Horace's Epodes, circa 1500"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/103",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a breviary created in France, middle 14th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/83",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a psalter created in the Netherlands, early 14th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/155",
"@type": "sc:Manifest",
"label": "Manuscript leaf from Thomas Aquinas' Comentary on the Sentences, late 15th century "
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/167",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a book of hours created in France, circa 1535"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/87",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a hymnal created in France, early 14th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/602",
"@type": "sc:Manifest",
"label": "Printed leaf from Icones Veteris Testamenti by William Pickering, 1830"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/290",
"@type": "sc:Manifest",
"label": "Printed leaf from Spieghel der Schriftskonste by Jan van den Velde, 1605"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/123",
"@type": "sc:Manifest",
"label": "Manuscript leaf from the Writings of St. Jerome, middle 15th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/437",
"@type": "sc:Manifest",
"label": "Printed leaf from a Roman missal created in Venice, 1576"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/199",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a psalter created in Germany, 1499"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/527",
"@type": "sc:Manifest",
"label": "Printed leaf from Observations on the Acts of Parliament, made by King James I to King Charles II by Sir George Mackenzie, 1686"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/629",
"@type": "sc:Manifest",
"label": "Printed leaf from a Vulgate Bible printed in Paris, 1558"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/3",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a book of hours created in France, middle 15th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/398",
"@type": "sc:Manifest",
"label": "Printed leaf from a book of hours created in France, 1517"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/356",
"@type": "sc:Manifest",
"label": "Printed leaf from a breviary created in France, circa 1500-1550"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/533",
"@type": "sc:Manifest",
"label": "Printed leaf from an Irish-language Old Testament created in London, 1685"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/248",
"@type": "sc:Manifest",
"label": "Printed leaf from The Twelve Books of the Orations of Quintilian, 1527 (1 of 2)"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/278",
"@type": "sc:Manifest",
"label": "Printed leaf from Plutarch's Lives of the Noble Grecians and Romans translated by Sir Thomas North, 1579"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/569",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a poetical work created in Iran, early 18th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/47",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a Vulgate Bible created in Italy, middle 13th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/251",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a Quran created in Egypt, 16th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/163",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a book of hours created in France, late 15th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/75",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a psalter created in England, late 13th century "
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/329",
"@type": "sc:Manifest",
"label": "Printed leaf from Clementis Alexandrini Opera Quae Extant, 1688"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/79",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a Vulgate Bible created in Italy, early 14th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/139",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a book of hours created in France, middle 15th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/500",
"@type": "sc:Manifest",
"label": "Printed leaf from Coustumes de Touraine, 1661"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/95",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a missal created in Rouen, late 14th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/67",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a breviary created in France, late 13th century "
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/11",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a Vulgate Bible created in France, early 13th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/59",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a Vulgate Bible created in Oxford, middle 13th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/311",
"@type": "sc:Manifest",
"label": "Manuscript leaf from Vitae et Elogia Summorum Pontif... by Dirk Ameyden, middle 17th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/15",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a lectionary created in Italy, middle 13th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/326",
"@type": "sc:Manifest",
"label": "A plate from The Works of Virgil translated by John Dryden, 1697 (2 of 2) "
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/308",
"@type": "sc:Manifest",
"label": "Printed leaf from The New York Mirror and Ladies' Literary Gazette, vol. 7, edited by George Pope Morris, 1829-1830"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/183",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a book of hours created in France, late 15th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/63",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a missal created in Beauvais, late 13th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/191",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a missal created in Germany, early 16th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/23",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a lectionary created in Spain or southern France, middle 12th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/107",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a book of hours created in England, middle 14th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/99",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a psalter created in France, late 14th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/131",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a book of hours created in France, middle 15th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/200",
"@type": "sc:Manifest",
"label": "Title page, Fifty Original Leaves from Medieval Manuscripts"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/71",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a breviary created in France, late 13th century "
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/293",
"@type": "sc:Manifest",
"label": "Printed leaf from a Bible translated by Martin Luther, 1584"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/119",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a psalter created in Italy, middle 15th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/39",
"@type": "sc:Manifest",
"label": "Manuscript leaf from Aurora by Gilles Bourdin and Peter Riga, early 13th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/362",
"@type": "sc:Manifest",
"label": "Printed leaf from Fasciculus Mirre, circa 1500 (1 of 2)"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/374",
"@type": "sc:Manifest",
"label": "Printed leaf from a book of hours created in France, 1525"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/254",
"@type": "sc:Manifest",
"label": "Printed leaf from Cosmographia Universalis by Sebastian Münster, 1559 (1 of 2)"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/212",
"@type": "sc:Manifest",
"label": "Printed leaf from a \"Matthew Bible\" translated by John Rogers, 1551 (1 of 2)"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/91",
"@type": "sc:Manifest",
"label": "Manuscript leaf from an antiphonal created in Italy, early 15th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/233",
"@type": "sc:Manifest",
"label": "Printed leaf from Macrobius' Saturnalia, 1513"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/127",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a missal created in Germany, middle 15th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/7",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a New Testament with glosses by Saints Bede, Jerome, and Gregory created in Switzerland, early 12th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/332",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a psalter created in France, 12th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/239",
"@type": "sc:Manifest",
"label": "Printed leaf from a Latin Bible created in Venice, 1478"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/632",
"@type": "sc:Manifest",
"label": "Plate from An Illustrated History of the Dacian Wars of the Emperor Trajan, 1616"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/344",
"@type": "sc:Manifest",
"label": "Printed leaf from Fasciculus Mirre, circa 1500 (2 of 2)"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/284",
"@type": "sc:Manifest",
"label": "Printed leaf from The Works of Josephus published by Johann Froben, 1554"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/302",
"@type": "sc:Manifest",
"label": "Printed leaf from Mr. William Shakespeare's Comedies, Histories and Tragedies... (4th Folio), 1685"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/578",
"@type": "sc:Manifest",
"label": "Printed leaf from The Confession of Faith, Associate Reformed Church, 1799"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/440",
"@type": "sc:Manifest",
"label": "Printed leaf from The Four Bookes of Husbandry by Conrad Heresbach, 1596"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/242",
"@type": "sc:Manifest",
"label": "Printed leaf from Virgil's Aeneid, 1517"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/236",
"@type": "sc:Manifest",
"label": "Printed leaf from Hortus Sanitatis by Johannes von Cuba, 1517"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/266",
"@type": "sc:Manifest",
"label": "Manuscript leaf from The Shahnameh by Firdawsī, circa 17th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/260",
"@type": "sc:Manifest",
"label": "Printed leaf from The Collected Works of Geoffrey Chaucer edited by Thomas Spegt, 1598"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/224",
"@type": "sc:Manifest",
"label": "Printed leaf from The Cornucopia of Nicholas Perottus, 1513"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/230",
"@type": "sc:Manifest",
"label": "Printed leaf from Chronicarum Supplementum by Jacobus Philippus Bergomensis, 1486"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/35",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a Vulgate Bible created in Paris, middle 13th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/635",
"@type": "sc:Manifest",
"label": "Printed leaf from a digest of civil law by Andreas Torresanus de Asula, 1491"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/596",
"@type": "sc:Manifest",
"label": "Printed leaf from Child Christopher and Goldilind the Fair by William Morris, 1895"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/19",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a Vulgate Bible created in Cambridge, early 13th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/380",
"@type": "sc:Manifest",
"label": "Printed leaf from Nova Legenda Angliae, 1516"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/27",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a psalter created in France, late 12th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/620",
"@type": "sc:Manifest",
"label": "Manuscript leaf from Candidum Puritatis Lilium by Julianus Antonius "
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/347",
"@type": "sc:Manifest",
"label": "Printed leaf from Gemma Vocabulorum, 1495"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/317",
"@type": "sc:Manifest",
"label": "Printed leaf from Natural History Lithography by Ebenezer Emmons, 1851"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/323",
"@type": "sc:Manifest",
"label": "Printed leaf from The New World of Words by Edward Phillips, 1678"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/221",
"@type": "sc:Manifest",
"label": "Printed leaf from The Imitation of Christ by Thomas à Kempis, 1494"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/617",
"@type": "sc:Manifest",
"label": "Printed leaf from The Book of Gems, the Poets and Artists of Great Britain edited by S. C. Hall, 1837"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/159",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a book of hours created in France, late 15th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/638",
"@type": "sc:Manifest",
"label": "Printed leaf from The Luck of the Roaring Camp by Bret Harte, 1872"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/401",
"@type": "sc:Manifest",
"label": "Printed leaf from Arbor Scientiae by Ramon Llull, 1505"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/608",
"@type": "sc:Manifest",
"label": "Printed leaf from Utopia by Sir Thomas More, 1937"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/269",
"@type": "sc:Manifest",
"label": "Printed leaf from Ovid's Metamorphoses, 1565"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/497",
"@type": "sc:Manifest",
"label": "Printed leaf from Ethico Politicorum, 1666"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/662",
"@type": "sc:Manifest",
"label": "Papyrus leaf fragment from Book of the Dead created in Egypt, circa 1500-1100 BCE"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/560",
"@type": "sc:Manifest",
"label": "Printed leaf from a Bible created in Germantown, Pennsylvania, 1776"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/383",
"@type": "sc:Manifest",
"label": "Printed leaf from Commentaries on Boetius, 1512 (1 of 2)"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/467",
"@type": "sc:Manifest",
"label": "Printed leaf from a book of rituals of the Anglican Church, 1639"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/476",
"@type": "sc:Manifest",
"label": "Etching by Jacques Callot, 1621-1631"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/614",
"@type": "sc:Manifest",
"label": "Printed leaf from The Fables of Aesop, with Designs on Wood by Thomas Bewick, 1823"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/43",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a Vulgate Bible created in France, middle 13th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/257",
"@type": "sc:Manifest",
"label": "Printed leaf from Historiae Animalium vol. 4 (De Aquitilibus) by Conrad Gessner, 1555"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/539",
"@type": "sc:Manifest",
"label": "\"The Wandering Nymph,\" a plate from a collection of stipple engravings by C. Taylor, 1786"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/51",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a psalter created in Germany, middle 13th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/275",
"@type": "sc:Manifest",
"label": "Printed leaf from Cosmographia Universalis by Sebastian Münster, 1559 (2 of 2)"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/644",
"@type": "sc:Manifest",
"label": "Printed leaf from the Justinian Code, 1602"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/470",
"@type": "sc:Manifest",
"label": "Printed leaf from a King James Bible, 1612"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/626",
"@type": "sc:Manifest",
"label": "Printed leaf from Portraits et Vies des Hommes Illustres by André Thevet, 1584"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/530",
"@type": "sc:Manifest",
"label": "Printed leaf from Medalische Historie der Republyk van Holland by Pierre Bizot, 1690"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/605",
"@type": "sc:Manifest",
"label": "\"Wilson's Petrel - Mother Carey's Chicken,\" a plate from The Quadrupeds by John James Audubon, 1856"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/548",
"@type": "sc:Manifest",
"label": "Manuscript leaf from Il Malmantile Racquistato by Lorenzo Lippi, 17th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/650",
"@type": "sc:Manifest",
"label": "Manuscript leaf from an antiphonal created in Spain, circa 17th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/518",
"@type": "sc:Manifest",
"label": "\"Matthæi XXVI,\" a plate from a miniature Bible created in Frankfurt, 1664"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/422",
"@type": "sc:Manifest",
"label": "Printed leaf from Commentariorum in Ordinationes Regias Castellae, 1574"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/272",
"@type": "sc:Manifest",
"label": "Printed leaf from A Guide to Tongues by John Minsheu, 1617"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/353",
"@type": "sc:Manifest",
"label": "Printed leaf from Stultefera Navis by Sebastian Brant, 1498"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/623",
"@type": "sc:Manifest",
"label": "Printed leaf from the Nuremberg Chronicle, 1493"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/581",
"@type": "sc:Manifest",
"label": "Printed leaf from a missal created in Paris, 1858"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/335",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a book of hours created in the Netherlands, middle 15th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/434",
"@type": "sc:Manifest",
"label": "Printed leaf from Symolicarum Quaestionum de Universo Genere by Achille Bocchi, 1574"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/206",
"@type": "sc:Manifest",
"label": "Printed leaf from a work containing De Vita Sana by Marsilio Ficino, 1516"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/551",
"@type": "sc:Manifest",
"label": "Printed leaf from Anacreon, Bion, and Moschus, 1791"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/209",
"@type": "sc:Manifest",
"label": "Printed leaf from The Twelve Books of the Orations of Quintilian, 1527 (2 of 2)"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/554",
"@type": "sc:Manifest",
"label": "Printed leaf from The Sonnets of Anton Maria Salvini, 1728"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/452",
"@type": "sc:Manifest",
"label": "Printed leaf from Hieroglyphica by Archibald Simson, 1622-1623"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/653",
"@type": "sc:Manifest",
"label": "\"Aurora Borealis,\" a plate from Physica Sacra by Johann Scheuchzer, 1731"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/389",
"@type": "sc:Manifest",
"label": "Printed leaf from Opus Trivium by John de Bromyarde, 1500"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/677",
"@type": "sc:Manifest",
"label": "Stone cylindrical seal created in Amlash, circa 1700 BCE"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/263",
"@type": "sc:Manifest",
"label": "Printed leaf from The History of His Own Times by Paolo Giovio, 1553"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/575",
"@type": "sc:Manifest",
"label": "Printed leaf from The Iliad, 1810"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/473",
"@type": "sc:Manifest",
"label": "Printed leaf from an English-language New Testament created in Antwerp, 1600"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/287",
"@type": "sc:Manifest",
"label": "Printed leaf from A Catholike and Ecclesiasticall Exposition of the Holy Gospell after S. John, translated by Thomas Tymme, 1575"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/368",
"@type": "sc:Manifest",
"label": "Manuscript leaf from Los Virtuosos Varones, circa 1450"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/590",
"@type": "sc:Manifest",
"label": "Printed leaf from Godey's Ladies Book, 1860"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/425",
"@type": "sc:Manifest",
"label": "Printed leaf from a Latin Bible created in London, 1580"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/641",
"@type": "sc:Manifest",
"label": "Printed leaf from Infortiatum de Tortis, 1495"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/416",
"@type": "sc:Manifest",
"label": "Printed leaf from a work on Euclid by Niccolò Tartaglia, 1565"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/566",
"@type": "sc:Manifest",
"label": "Printed leaf from The Doctrines And Discipline of the Methodist Episcopal Church, 1792"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/395",
"@type": "sc:Manifest",
"label": "Printed leaf from Postille Majores cum Questionibus by Pierre Balli, 1525"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/449",
"@type": "sc:Manifest",
"label": "Printed leaf from Annalles of Elizabeth by William Camden, 1625"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/305",
"@type": "sc:Manifest",
"label": "Printed leaf from The Works of Virgil translated by John Dryden, 1697 (1 of 2)"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/428",
"@type": "sc:Manifest",
"label": "Printed leaf from the Liber Sextus of Pope Boniface VIII, 1572"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/479",
"@type": "sc:Manifest",
"label": "Printed leaf from Statutes of Ireland, 1621"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/572",
"@type": "sc:Manifest",
"label": "Printed leaf from The Lessons of the Protestant Episcopal Church, 1798"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/464",
"@type": "sc:Manifest",
"label": "Printed leaf from Book of European Travels by George Sandys, 1615"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/281",
"@type": "sc:Manifest",
"label": "Printed leaf from Anatome Corporis Humani by Juan Valverde de Amusco, 1556"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/659",
"@type": "sc:Manifest",
"label": "\"Viola tricolor,\" a plate from Flora Londinensis by William Curtis, 1773"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/431",
"@type": "sc:Manifest",
"label": "Printed leaf from the Sermons of John Calvin, translated by Arthur Golding, 1583"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/545",
"@type": "sc:Manifest",
"label": "Printed leaf from Parliamentary Acts Passed During the Reign of William III, circa 1695-1698"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/512",
"@type": "sc:Manifest",
"label": "Printed leaf from The Workes of Benjamin Jonson, 1640"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/593",
"@type": "sc:Manifest",
"label": "Printed leaf from Horace's Opera Omnia, 1828"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/536",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a collection of Persian poets, including Sanāʼī al-Ghaznavī, Niẓāmī Ganjavī, Saʻdī and Hafer, early 19th century"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/443",
"@type": "sc:Manifest",
"label": "Printed leaf from Estatutos Generales de Barcelona, 1585"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/542",
"@type": "sc:Manifest",
"label": "Printed leaf from The Complete Measurer by William Hawney, 1785"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/215",
"@type": "sc:Manifest",
"label": "Printed leaf from a \"Matthew Bible\" translated by John Rogers, 1551 (2 of 2)"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/407",
"@type": "sc:Manifest",
"label": "Printed leaf from a Hebrew Bible created in France, 1544"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/557",
"@type": "sc:Manifest",
"label": "Printed leaf from The Works of Shakespeare, 1796"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/203",
"@type": "sc:Manifest",
"label": "Printed leaf from Fasciculus Temporum by Werner Rollewinck, 1485"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/656",
"@type": "sc:Manifest",
"label": "Printed leaf from the Commentaries of Bartolus de Saxoferrato, 1521"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/491",
"@type": "sc:Manifest",
"label": "Printed leaf from a Torah created in Switzerland, 1617-8"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/392",
"@type": "sc:Manifest",
"label": "Printed leaf from The Chronicon of Sigebert of Gembloux, 1513"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/227",
"@type": "sc:Manifest",
"label": "Printed leaf from Postilla Super Psalterium by Hugh of Saint-Cher, 1498"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/584",
"@type": "sc:Manifest",
"label": "Printed leaf from The Book of Wisdom and Lies by Oiver Wardrop, 1894"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/515",
"@type": "sc:Manifest",
"label": "Printed leaf from an Increase Mather sermon, 1685"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/647",
"@type": "sc:Manifest",
"label": "Manuscript leaf from a Paritta created in Myanmar, September, 1875"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/359",
"@type": "sc:Manifest",
"label": "Printed leaf from Propositiones ex Omnibus Libris Aristotelis Collectae edited by Teofilo da Cremona, 1493"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/320",
"@type": "sc:Manifest",
"label": "Printed leaf from De Indiae Utriusque re Naturali et Medica by Willem Piso, 1658"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/413",
"@type": "sc:Manifest",
"label": "Printed leaf from a Salisbury Cathedral portiforium, 1555"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/599",
"@type": "sc:Manifest",
"label": "Printed leaf from Gallery of English and American Poets, 1859"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/455",
"@type": "sc:Manifest",
"label": "Printed leaf from A Display of Heraldrie by John Guillim, 1638"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/509",
"@type": "sc:Manifest",
"label": "Printed leaf from Numisatumantiquorum by Ezechiel Spanheim, 1671"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/488",
"@type": "sc:Manifest",
"label": "Printed leaf from The Life of Jesus Christ, translated by Ludolf von Sachsen, 1618"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/386",
"@type": "sc:Manifest",
"label": "Printed leaf from an illustrated Bible created in France, 1540"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/611",
"@type": "sc:Manifest",
"label": "Plate from Tales Founded on the Plays of Shakespeare by Charles and Mary Lamb, 1909"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/503",
"@type": "sc:Manifest",
"label": "Printed leaf from Iconologia of Cesare Ripa of Perugia, 1669"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/587",
"@type": "sc:Manifest",
"label": "Printed leaf from Murray's English Grammar by Lindley Murray, 1856"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/296",
"@type": "sc:Manifest",
"label": "Printed leaf from Lucan's Pharsalia, 1760"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/494",
"@type": "sc:Manifest",
"label": "Printed leaf from a Vulgate Bible created in Venice, 1669"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/482",
"@type": "sc:Manifest",
"label": "Printed leaf from a Vulgate Bible created in Antwerp, 1628"
},
{
"@id": "https://media.library.ohio.edu/digital/iiif-info/p15808coll19/461",
"@type": "sc:Manifest",
"label": "Printed leaf from Anatomy of Melancholy by Robert Burton, 1632"
},
{