-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtaxonomy.xml
1952 lines (1950 loc) · 110 KB
/
taxonomy.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"?>
<classDecl xmlns="http://www.tei-c.org/ns/1.0">
<taxonomy xml:id="ethioauthlist">
<category>
<desc>Types of Inscriptions</desc>
<category xml:id="Royal" corresp="https://betamasaheft.eu/authority-files/Royal/main">
<catDesc>Royal inscription</catDesc>
</category>
</category>
<category>
<desc>Special Manuscripts</desc>
<category xml:id="GoldenGospel" corresp="https://betamasaheft.eu/authority-files/GoldenGospel/main">
<catDesc>Golden Gospel</catDesc>
</category>
<category xml:id="miniatureCollection" corresp="https://betamasaheft.eu/authority-files/miniatureCollection/main">
<catDesc>Miniature Collection</catDesc>
</category>
</category>
<category>
<desc>Objects of Veneration</desc>
<category xml:id="TrueCross" corresp="https://betamasaheft.eu/authority-files/TrueCross/main">
<catDesc>True Cross</catDesc>
</category>
<category xml:id="CovenantMercy" corresp="https://betamasaheft.eu/authority-files/CovenantMercy/main">
<catDesc>Kidāna Mǝḥrat</catDesc>
</category>
</category>
<category>
<desc>Binding Description</desc>
<category>
<desc>Turn-ins and Cover</desc>
<category xml:id="overCover" corresp="https://betamasaheft.eu/authority-files/overCover/main">
<catDesc>over-cover</catDesc>
</category>
<category xml:id="overlappingCornerFO" corresp="https://betamasaheft.eu/authority-files/overlappingCornerFO/main">
<catDesc>overlapping corner foredge over</catDesc>
</category>
<category xml:id="overlappingCornerHTO" corresp="https://betamasaheft.eu/authority-files/overlappingCornerHTO/main">
<catDesc>overlapping corner head/tail over</catDesc>
</category>
<category xml:id="tonguedCorner" corresp="https://betamasaheft.eu/authority-files/tonguedCorner/main">
<catDesc>tongued corner</catDesc>
</category>
<category xml:id="stitchedCorner" corresp="https://betamasaheft.eu/authority-files/stitchedCorner/main">
<catDesc>stitched corner</catDesc>
</category>
<category xml:id="mitredCorner" corresp="https://betamasaheft.eu/authority-files/mitredCorner/main">
<catDesc>mitred corner</catDesc>
</category>
<category xml:id="openMitredCorner" corresp="https://betamasaheft.eu/authority-files/openMitredCorner/main">
<catDesc>open mitred corner</catDesc>
</category>
</category>
<category>
<desc>Inlays</desc>
<category xml:id="inlay" corresp="https://betamasaheft.eu/authority-files/inlay/main">
<catDesc>inlay</catDesc>
</category>
<category xml:id="paperInlay" corresp="https://betamasaheft.eu/authority-files/paperInlay/main">
<catDesc>paper inlay</catDesc>
</category>
<category xml:id="parchmentInlay" corresp="https://betamasaheft.eu/authority-files/parchmentInlay/main">
<catDesc>parchment inlay</catDesc>
</category>
<category xml:id="textileInlay" corresp="https://betamasaheft.eu/authority-files/textileInlay/main">
<catDesc>textile inlay</catDesc>
</category>
</category>
<category>
<desc>Guards</desc>
<category xml:id="guard" corresp="https://betamasaheft.eu/authority-files/guard/main">
<catDesc>Guard</catDesc>
</category>
<category xml:id="centerfold" corresp="https://betamasaheft.eu/authority-files/centerfold/main">
<catDesc>Centerfold</catDesc>
</category>
<category xml:id="spinefold" corresp="https://betamasaheft.eu/authority-files/spinefold/main">
<catDesc>Spine fold</catDesc>
</category>
<category xml:id="sidestitches" corresp="https://betamasaheft.eu/authority-files/sidestitches/main">
<catDesc>Side stitches</catDesc>
</category>
<category xml:id="mainSewing" corresp="https://betamasaheft.eu/authority-files/mainSewing/main">
<catDesc>Main sewing</catDesc>
</category>
</category>
<category>
<desc>Bookmarks</desc>
<category xml:id="leafStringMark" corresp="https://betamasaheft.eu/authority-files/leafStringMark/main">
<catDesc>Leaf string marker</catDesc>
</category>
<category xml:id="leafTabMark" corresp="https://betamasaheft.eu/authority-files/leafTabMark/main">
<catDesc>Leaf tab marker</catDesc>
</category>
</category>
<category>
<desc>Endband Type</desc>
<category xml:id="slitBraid" corresp="https://betamasaheft.eu/authority-files/slitBraid/main">
<catDesc>Slit-braid</catDesc>
</category>
<category xml:id="linkStitch" corresp="https://betamasaheft.eu/authority-files/linkStitch/main">
<catDesc>Link-stitch</catDesc>
</category>
</category>
<category>
<desc>Board Lining</desc>
<category xml:id="textile" corresp="https://betamasaheft.eu/authority-files/textile/main">
<catDesc>Textile</catDesc>
</category>
<category xml:id="mirror" corresp="https://betamasaheft.eu/authority-files/mirror/main">
<catDesc>Mirror</catDesc>
</category>
<category xml:id="additionalLeatherPatch" corresp="https://betamasaheft.eu/authority-files/additionalLeatherPatch/main">
<catDesc>Additional leather patch</catDesc>
</category>
</category>
<category>
<desc>Wood Type</desc>
<category xml:id="cordiaAfricana" corresp="https://betamasaheft.eu/authority-files/cordiaAfricana/main">
<catDesc>Cordia africana</catDesc>
</category>
<category xml:id="oleaAfricana" corresp="https://betamasaheft.eu/authority-files/oleaAfricana/main">
<catDesc>Olea africana</catDesc>
</category>
<category xml:id="cedar" corresp="https://betamasaheft.eu/authority-files/cedar/main">
<catDesc>Cedar</catDesc>
</category>
<category xml:id="eucalyptus" corresp="https://betamasaheft.eu/authority-files/eucalyptus/main">
<catDesc>Eucalyptus</catDesc>
</category>
<category xml:id="juniper" corresp="https://betamasaheft.eu/authority-files/juniper/main">
<catDesc>Juniper</catDesc>
</category>
<category xml:id="hageniaAbyssinica" corresp="https://betamasaheft.eu/authority-files/hageniaAbyssinica/main">
<catDesc>Hagenia abyssinica</catDesc>
</category>
<category xml:id="acacia" corresp="https://betamasaheft.eu/authority-files/acacia/main">
<catDesc>Acacia</catDesc>
</category>
<category xml:id="ficus" corresp="https://betamasaheft.eu/authority-files/ficus/main">
<catDesc>Ficus</catDesc>
</category>
<category xml:id="crotonMacrostachyus" corresp="https://betamasaheft.eu/authority-files/crotonMacrostachyus/main">
<catDesc>Croton macrostachyus</catDesc>
</category>
<category xml:id="euphorbia" corresp="https://betamasaheft.eu/authority-files/euphorbia/main">
<catDesc>Euphorbia</catDesc>
</category>
<category xml:id="ekebergia" corresp="https://betamasaheft.eu/authority-files/ekebergia/main">
<catDesc>Ekebergia capensis</catDesc>
</category>
<category xml:id="podocarpus" corresp="https://betamasaheft.eu/authority-files/podocarpus/main">
<catDesc>Podocarpus gracilior</catDesc>
</category>
<category xml:id="plywood" corresp="https://betamasaheft.eu/authority-files/plywood/main">
<catDesc>Plywood</catDesc>
</category>
</category>
<category>
<desc>Sewing Pattern</desc>
<category xml:id="patternA" corresp="https://betamasaheft.eu/authority-files/patternA/main">
<catDesc>Pattern A</catDesc>
</category>
<category xml:id="patternA1" corresp="https://betamasaheft.eu/authority-files/patternA1/main">
<catDesc>Pattern A1</catDesc>
</category>
<category xml:id="patternA2" corresp="https://betamasaheft.eu/authority-files/patternA2/main">
<catDesc>Pattern A2</catDesc>
</category>
<category xml:id="patternA3" corresp="https://betamasaheft.eu/authority-files/patternA3/main">
<catDesc>Pattern A3</catDesc>
</category>
<category xml:id="patternA4" corresp="https://betamasaheft.eu/authority-files/patternA4/main">
<catDesc>Pattern A4</catDesc>
</category>
<category xml:id="patternA5" corresp="https://betamasaheft.eu/authority-files/patternA5/main">
<catDesc>Pattern A5</catDesc>
</category>
<category xml:id="patternA6" corresp="https://betamasaheft.eu/authority-files/patternA6/main">
<catDesc>Pattern A6</catDesc>
</category>
<category xml:id="patternA7" corresp="https://betamasaheft.eu/authority-files/patternA7/main">
<catDesc>Pattern A7</catDesc>
</category>
<category xml:id="patternB" corresp="https://betamasaheft.eu/authority-files/patternB/main">
<catDesc>Pattern B</catDesc>
</category>
<category xml:id="patternC" corresp="https://betamasaheft.eu/authority-files/patternC/main">
<catDesc>Pattern C</catDesc>
</category>
<category xml:id="patternC1" corresp="https://betamasaheft.eu/authority-files/patternC1/main">
<catDesc>Pattern C1</catDesc>
</category>
</category>
<category>
<desc>Decoration Motives</desc>
<category xml:id="tripleStraightLine" corresp="https://betamasaheft.eu/authority-files/tripleStraightLine/main">
<catDesc>Triple straight line</catDesc>
</category>
<category xml:id="doubleStraightLine" corresp="https://betamasaheft.eu/authority-files/doubleStraightLine/main">
<catDesc>Double straight Line</catDesc>
</category>
<category xml:id="singleStraightLine" corresp="https://betamasaheft.eu/authority-files/singleStraightLine/main">
<catDesc>Single straight line</catDesc>
</category>
<category xml:id="crissCross" corresp="https://betamasaheft.eu/authority-files/crissCross/main">
<catDesc>Criss-cross</catDesc>
</category>
<category xml:id="doubleCircle" corresp="https://betamasaheft.eu/authority-files/doubleCircle/main">
<catDesc>Double circle</catDesc>
</category>
<category xml:id="singleCircle" corresp="https://betamasaheft.eu/authority-files/singleCircle/main">
<catDesc>Single circle</catDesc>
</category>
<category xml:id="crescent" corresp="https://betamasaheft.eu/authority-files/crescent/main">
<catDesc>Crescent</catDesc>
</category>
<category xml:id="XForm" corresp="https://betamasaheft.eu/authority-files/XForm/main">
<catDesc>X-Form</catDesc>
</category>
<category xml:id="palmShape" corresp="https://betamasaheft.eu/authority-files/palmShape/main">
<catDesc>Palm shape</catDesc>
</category>
<category xml:id="rosette" corresp="https://betamasaheft.eu/authority-files/rosette/main">
<catDesc>Rosette</catDesc>
</category>
<category xml:id="corniForm" corresp="https://betamasaheft.eu/authority-files/corniForm/main">
<catDesc>Corni-form</catDesc>
</category>
<category xml:id="grid" corresp="https://betamasaheft.eu/authority-files/grid/main">
<catDesc>Grid</catDesc>
</category>
<category xml:id="VForm" corresp="https://betamasaheft.eu/authority-files/VForm/main">
<catDesc>V-form</catDesc>
</category>
<category xml:id="wavyLine" corresp="https://betamasaheft.eu/authority-files/wavyLine/main">
<catDesc>Wavy line</catDesc>
</category>
<category xml:id="zigZag" corresp="https://betamasaheft.eu/authority-files/zigZag/main">
<catDesc>Zig-zag</catDesc>
</category>
<category xml:id="motherOfWater" corresp="https://betamasaheft.eu/authority-files/motherOfWater/main">
<catDesc>Mother of water</catDesc>
</category>
<category xml:id="straightStrapwork" corresp="https://betamasaheft.eu/authority-files/straightStrapwork/main">
<catDesc>Straight strapwork element</catDesc>
</category>
<category xml:id="curveStrapwork" corresp="https://betamasaheft.eu/authority-files/curveStrapwork/main">
<catDesc>Curve strapwork element</catDesc>
</category>
</category>
<category>
<desc>Thread Material</desc>
<category xml:id="animalThread" corresp="https://betamasaheft.eu/authority-files/animalThread/main">
<catDesc>Animal thread</catDesc>
</category>
<category xml:id="vegetalThread" corresp="https://betamasaheft.eu/authority-files/vegetalThread/main">
<catDesc>Vegetal thread</catDesc>
</category>
<category xml:id="syntheticThread" corresp="https://betamasaheft.eu/authority-files/syntheticThread/main">
<catDesc>Synthetic thread</catDesc>
</category>
<category xml:id="tannedSkin" corresp="https://betamasaheft.eu/authority-files/tannedSkin/main">
<catDesc>Tanned skin</catDesc>
</category>
</category>
</category>
<category>
<desc>Occupation</desc>
<category xml:id="ruler" corresp="https://betamasaheft.eu/authority-files/ruler/main">
<catDesc>Ruler</catDesc>
</category>
<category xml:id="military" corresp="https://betamasaheft.eu/authority-files/military/main">
<catDesc>Military</catDesc>
</category>
<category xml:id="academic" corresp="https://betamasaheft.eu/authority-files/academic/main">
<catDesc>Academic</catDesc>
</category>
<category xml:id="political" corresp="https://betamasaheft.eu/authority-files/political/main">
<catDesc>Political</catDesc>
</category>
<category xml:id="literary" corresp="https://betamasaheft.eu/authority-files/literary/main">
<catDesc>Literary</catDesc>
</category>
<category xml:id="ecclesiastic" corresp="https://betamasaheft.eu/authority-files/ecclesiastic/main">
<catDesc>Ecclesiastic</catDesc>
</category>
<category xml:id="medical" corresp="https://betamasaheft.eu/authority-files/medical/main">
<catDesc>Medical</catDesc>
</category>
<category xml:id="art" corresp="https://betamasaheft.eu/authority-files/art/main">
<catDesc>Art</catDesc>
</category>
<category xml:id="Other" corresp="https://betamasaheft.eu/authority-files/Other/main">
<catDesc>Other</catDesc>
</category>
</category>
<category>
<desc>Person Types</desc>
<category xml:id="saint" corresp="https://betamasaheft.eu/authority-files/saint/main">
<catDesc>Saint</catDesc>
</category>
<category xml:id="biblical" corresp="https://betamasaheft.eu/authority-files/biblical/main">
<catDesc>Biblical</catDesc>
</category>
<category xml:id="prophet" corresp="https://betamasaheft.eu/authority-files/prophet/main">
<catDesc>Prophet</catDesc>
</category>
<category xml:id="angel" corresp="https://betamasaheft.eu/authority-files/angel/main">
<catDesc>angel</catDesc>
</category>
<category xml:id="martyr" corresp="https://betamasaheft.eu/authority-files/martyr/main">
<catDesc>Martyr</catDesc>
</category>
</category>
<category>
<desc>Periods</desc>
<category xml:id="PreAks" corresp="https://betamasaheft.eu/authority-files/PreAks/main">
<catDesc>South-Arabian, Pre-Aksumite and Proto-Aksumite</catDesc>
</category>
<category xml:id="Eaks" corresp="https://betamasaheft.eu/authority-files/Eaks/main">
<catDesc>Early Aksumite</catDesc>
</category>
<category xml:id="Aks" corresp="https://betamasaheft.eu/authority-files/Aks/main">
<catDesc>Aksumite</catDesc>
</category>
<category xml:id="Paks1" corresp="https://betamasaheft.eu/authority-files/Paks1/main">
<catDesc>Postaksumite I</catDesc>
</category>
<category xml:id="Paks2" corresp="https://betamasaheft.eu/authority-files/Paks2/main">
<catDesc> Postaksumite II</catDesc>
</category>
<category xml:id="Gon" corresp="https://betamasaheft.eu/authority-files/Gon/main">
<catDesc>Gondarine</catDesc>
</category>
<category xml:id="ZaMa" corresp="https://betamasaheft.eu/authority-files/ZaMa/main">
<catDesc>Zamana Masāfǝnt</catDesc>
</category>
<category xml:id="MoPe" corresp="https://betamasaheft.eu/authority-files/MoPe/main">
<catDesc>Modern Period</catDesc>
</category>
</category>
<category>
<desc>Chant Modes</desc>
<category xml:id="ArarayMode" corresp="https://betamasaheft.eu/authority-files/ArarayMode/main">
<catDesc>ʾArārāy Mode</catDesc>
</category>
<category xml:id="EzelMode" corresp="https://betamasaheft.eu/authority-files/EzelMode/main">
<catDesc>ʿƎzǝl Mode</catDesc>
</category>
<category xml:id="GeezMode" corresp="https://betamasaheft.eu/authority-files/GeezMode/main">
<catDesc>Gǝʿǝz Mode</catDesc>
</category>
</category>
<category>
<desc>Qəne Types</desc>
<category xml:id="EtanaMogar" corresp="https://betamasaheft.eu/authority-files/EtanaMogar/main">
<catDesc>ʿƎṭāna mogar</catDesc>
</category>
<category xml:id="Mawaddes" corresp="https://betamasaheft.eu/authority-files/Mawaddes/main">
<catDesc>Mawaddǝs</catDesc>
</category>
<category xml:id="KebrYeeti" corresp="https://betamasaheft.eu/authority-files/KebrYeeti/main">
<catDesc>Kǝbr yǝʾǝti</catDesc>
</category>
<category xml:id="Sellase" corresp="https://betamasaheft.eu/authority-files/Sellase/main">
<catDesc>Śǝllase</catDesc>
</category>
<category xml:id="Zayeeze" corresp="https://betamasaheft.eu/authority-files/Zayeeze/main">
<catDesc>Za-yǝʾǝze</catDesc>
</category>
<category xml:id="Kwellekomu" corresp="https://betamasaheft.eu/authority-files/Kwellekomu/main">
<catDesc>Kʷǝllǝkǝmu gǝʿǝz</catDesc>
</category>
<category xml:id="Wazema" corresp="https://betamasaheft.eu/authority-files/Wazema/main">
<catDesc>Wāzemā</catDesc>
</category>
<category xml:id="GubaeQana" corresp="https://betamasaheft.eu/authority-files/GubaeQana/main">
<catDesc>Gubāʿe Qānā</catDesc>
</category>
<category xml:id="Mibazhu" corresp="https://betamasaheft.eu/authority-files/Mibazhu/main">
<catDesc>Mi-bazḫu</catDesc>
</category>
</category>
<category>
<desc>Magic and spells</desc>
<category>
<desc>Subtypes</desc>
<category xml:id="MagicDrawing"
corresp="https://betamasaheft.eu/authority-files/MagicDrawing/main">
<catDesc>Magic drawing </catDesc>
</category>
<category xml:id="MagicSymbols"
corresp="https://betamasaheft.eu/authority-files/MagicSymbols/main">
<catDesc>Magic symbols or letters</catDesc>
</category>
</category>
<category>
<desc>Diseases and demons</desc>
<category xml:id="Disease"
corresp="https://betamasaheft.eu/authority-files/Disease/main">
<catDesc>Disease (generic)</catDesc>
</category>
<category xml:id="DiseaseFever"
corresp="https://betamasaheft.eu/authority-files/DiseaseFever/main">
<catDesc>Disease with fever</catDesc>
</category>
<category xml:id="DiseaseMental"
corresp="https://betamasaheft.eu/authority-files/DiseaseMental/main">
<catDesc>Disease with mental symptoms</catDesc>
</category>
<category xml:id="DiseasePain"
corresp="https://betamasaheft.eu/authority-files/DiseasePain/main">
<catDesc>Disease with pain/colic</catDesc>
</category>
<category xml:id="DiseaseWomen"
corresp="https://betamasaheft.eu/authority-files/DiseaseWomen/main">
<catDesc>Disease in women</catDesc>
</category>
<category xml:id="EvilEye"
corresp="https://betamasaheft.eu/authority-files/EvilEye/main">
<catDesc>Evil Eye</catDesc>
</category>
<category xml:id="EvilSpirit"
corresp="https://betamasaheft.eu/authority-files/EvilSpirit/main">
<catDesc>Evil Spirit</catDesc>
</category>
</category>
</category>
<category>
<desc>Additiones</desc>
<category xml:id="GuestText" corresp="https://betamasaheft.eu/authority-files/GuestText/main">
<catDesc>Guest Text</catDesc>
</category>
<category xml:id="AcquisitionNote" corresp="https://betamasaheft.eu/authority-files/AcquisitionNote/main">
<catDesc>Acquisition Note</catDesc>
</category>
<category xml:id="Comment" corresp="https://betamasaheft.eu/authority-files/Comment/main">
<catDesc>Comment</catDesc>
</category>
<category xml:id="Gloss" corresp="https://betamasaheft.eu/authority-files/Gloss/main">
<catDesc>Gloss</catDesc>
</category>
<category xml:id="Correction" corresp="https://betamasaheft.eu/authority-files/Correction/main">
<catDesc>Correction</catDesc>
</category>
<category xml:id="Letter" corresp="https://betamasaheft.eu/authority-files/Letter/main">
<catDesc>Letter</catDesc>
</category>
<category xml:id="Foundation" corresp="https://betamasaheft.eu/authority-files/Foundation/main">
<catDesc>Foundation</catDesc>
</category>
<category xml:id="Headband" corresp="https://betamasaheft.eu/authority-files/Headband/main">
<catDesc>Headband</catDesc>
</category>
<category xml:id="Tailband" corresp="https://betamasaheft.eu/authority-files/Tailband/main">
<catDesc>Tailband</catDesc>
</category>
<category xml:id="DonationNote" corresp="https://betamasaheft.eu/authority-files/DonationNote/main">
<catDesc>Donation Note</catDesc>
</category>
<category xml:id="OwnershipNote" corresp="https://betamasaheft.eu/authority-files/OwnershipNote/main">
<catDesc>Ownership Note</catDesc>
</category>
<category xml:id="PurchaseNote" corresp="https://betamasaheft.eu/authority-files/PurchaseNote/main">
<catDesc>Purchase Note</catDesc>
</category>
<category xml:id="ReceiptNote" corresp="https://betamasaheft.eu/authority-files/ReceiptNote/main">
<catDesc>Receipt Note</catDesc>
</category>
<category xml:id="Admonition" corresp="https://betamasaheft.eu/authority-files/Admonition/main">
<catDesc>Admonition</catDesc>
</category>
<category xml:id="DocumentaryText" corresp="https://betamasaheft.eu/authority-files/DocumentaryText/main">
<catDesc>Documentary Text</catDesc>
</category>
<category>
<desc>Land Ownership</desc>
<category>
<desc>Land Charters</desc>
<category xml:id="LandGrant" corresp="https://betamasaheft.eu/authority-files/LandGrant/main">
<catDesc>Land Grant</catDesc>
</category>
<category xml:id="GweltDeed" corresp="https://betamasaheft.eu/authority-files/GweltDeed/main">
<catDesc>Gwəlt Deed</catDesc>
</category>
<category xml:id="RestDeed" corresp="https://betamasaheft.eu/authority-files/RestDeed/main">
<catDesc>Rəst Deed</catDesc>
</category>
<category xml:id="RestaGweltDeed" corresp="https://betamasaheft.eu/authority-files/RestaGweltDeed/main">
<catDesc>Rəsta gwəlt Deed</catDesc>
</category>
</category>
<category xml:id="Rim" corresp="https://betamasaheft.eu/authority-files/Rim/main">
<catDesc>Rim</catDesc>
</category>
<category xml:id="siso" corresp="https://betamasaheft.eu/authority-files/siso/main">
<catDesc>Siso</catDesc>
</category>
<category xml:id="Tazkar" corresp="https://betamasaheft.eu/authority-files/Tazkar/main">
<catDesc>Tazkar</catDesc>
</category>
<category xml:id="Renovation" corresp="https://betamasaheft.eu/authority-files/Renovation/main">
<catDesc>Renovation</catDesc>
</category>
<category xml:id="Confirmation" corresp="https://betamasaheft.eu/authority-files/Confirmation/main">
<catDesc>Confirmation</catDesc>
</category>
<category xml:id="FoundationCharter" corresp="https://betamasaheft.eu/authority-files/FoundationCharter/main">
<catDesc>Foundation Charter</catDesc>
</category>
<category xml:id="unclearOwnershipDocument" corresp="https://betamasaheft.eu/authority-files/unclearOwnershipDocument/main">
<catDesc>Unclear Ownership</catDesc>
</category>
</category>
<category xml:id="Genealogy" corresp="https://betamasaheft.eu/authority-files/Genealogy/main">
<catDesc>Genealogy</catDesc>
</category>
<category xml:id="ScribalSignature" corresp="https://betamasaheft.eu/authority-files/ScribalSignature/main">
<catDesc>Scribal Signature</catDesc>
</category>
<category xml:id="Supplication" corresp="https://betamasaheft.eu/authority-files/Supplication/main">
<catDesc>Supplication</catDesc>
</category>
<category xml:id="Subscription" corresp="https://betamasaheft.eu/authority-files/Subscription/main">
<catDesc>Subscription</catDesc>
</category>
<category xml:id="Doxology" corresp="https://betamasaheft.eu/authority-files/Doxology/main">
<catDesc>Doxology</catDesc>
</category>
<category xml:id="Exhortation" corresp="https://betamasaheft.eu/authority-files/Exhortation/main">
<catDesc>Exhortation</catDesc>
</category>
<category xml:id="Invocation" corresp="https://betamasaheft.eu/authority-files/Invocation/main">
<catDesc>Invocation</catDesc>
</category>
<category xml:id="Inventory" corresp="https://betamasaheft.eu/authority-files/Inventory/main">
<catDesc>Inventory</catDesc>
</category>
<category xml:id="ScribalNoteCommencing" corresp="https://betamasaheft.eu/authority-files/ScribalNoteCommencing/main">
<catDesc>Scribal Note Commencing</catDesc>
</category>
<category xml:id="ScribalNoteOrdering" corresp="https://betamasaheft.eu/authority-files/ScribalNoteOrdering/main">
<catDesc>Scribal Note Ordering</catDesc>
</category>
<category xml:id="ScribalNoteCommissioning" corresp="https://betamasaheft.eu/authority-files/ScribalNoteCommissioning/main">
<catDesc>Scribal Note Commissioning</catDesc>
</category>
<category xml:id="ScribalNoteCompleting" corresp="https://betamasaheft.eu/authority-files/ScribalNoteCompleting/main">
<catDesc>Scribal Note Completing</catDesc>
</category>
<category xml:id="ScribalNoteAssigningLand" corresp="https://betamasaheft.eu/authority-files/ScribalNoteAssigningLand/main">
<catDesc>Scribal Note Assigning Land</catDesc>
</category>
<category xml:id="ScribalNoteBequeathing" corresp="https://betamasaheft.eu/authority-files/ScribalNoteBequeathing/main">
<catDesc>Scribal Note Bequeathing</catDesc>
</category>
<category xml:id="RecordReconciliation" corresp="https://betamasaheft.eu/authority-files/RecordReconciliation/main">
<catDesc>Record Reconciliation</catDesc>
</category>
<category xml:id="RecordLitigation" corresp="https://betamasaheft.eu/authority-files/RecordLitigation/main">
<catDesc>Record Litigation</catDesc>
</category>
<category xml:id="RecordTransaction" corresp="https://betamasaheft.eu/authority-files/RecordTransaction/main">
<catDesc>Record Transaction</catDesc>
</category>
<category xml:id="RecordDistribution" corresp="https://betamasaheft.eu/authority-files/RecordDistribution/main">
<catDesc>Record Distribution</catDesc>
</category>
<category xml:id="RecordGuarantors" corresp="https://betamasaheft.eu/authority-files/RecordGuarantors/main">
<catDesc>Record Guarantors</catDesc>
</category>
<category xml:id="Record" corresp="https://betamasaheft.eu/authority-files/Record/main">
<catDesc>Record</catDesc>
</category>
<category xml:id="ScribalSupplication" corresp="https://betamasaheft.eu/authority-files/ScribalSupplication/main">
<catDesc>Scribal Supplication</catDesc>
</category>
<category xml:id="Unclear" corresp="https://betamasaheft.eu/authority-files/Unclear/main">
<catDesc>Unclear</catDesc>
</category>
<category xml:id="GuarantorsList" corresp="https://betamasaheft.eu/authority-files/GuarantorsList/main">
<catDesc>Guarantors List</catDesc>
</category>
<category xml:id="CommemorativeNote" corresp="https://betamasaheft.eu/authority-files/CommemorativeNote/main">
<catDesc>Commemorative Note</catDesc>
</category>
<category xml:id="Condemnation" corresp="https://betamasaheft.eu/authority-files/Condemnation/main">
<catDesc>Condemnation</catDesc>
</category>
<category xml:id="ProtectivePrayer" corresp="https://betamasaheft.eu/authority-files/ProtectivePrayer/main">
<catDesc>Protective Prayer</catDesc>
</category>
<category xml:id="Poem" corresp="https://betamasaheft.eu/authority-files/Poem/main">
<catDesc>Poem</catDesc>
</category>
<category xml:id="PoemQene" corresp="https://betamasaheft.eu/authority-files/PoemQene/main">
<catDesc>Poem Qǝne</catDesc>
</category>
<category xml:id="PoemSalam" corresp="https://betamasaheft.eu/authority-files/PoemSalam/main">
<catDesc>Poem Salām</catDesc>
</category>
<category xml:id="PoemArke" corresp="https://betamasaheft.eu/authority-files/PoemArke/main">
<catDesc>Poem Arke</catDesc>
</category>
<category xml:id="StampExlibris" corresp="https://betamasaheft.eu/authority-files/StampExlibris/main">
<catDesc>Stamp Ex libris</catDesc>
</category>
<category xml:id="CalendaricNote" corresp="https://betamasaheft.eu/authority-files/CalendaricNote/main">
<catDesc>Calendaric Note</catDesc>
</category>
<category xml:id="Excerpt" corresp="https://betamasaheft.eu/authority-files/Excerpt/main">
<catDesc>Excerpt</catDesc>
</category>
<category xml:id="MagicFormula" corresp="https://betamasaheft.eu/authority-files/MagicFormula/main">
<catDesc>Magic Formula</catDesc>
</category>
<category xml:id="MagicText" corresp="https://betamasaheft.eu/authority-files/MagicText/main">
<catDesc>Magic Text</catDesc>
</category>
<category xml:id="Excommunication" corresp="https://betamasaheft.eu/authority-files/Excommunication/main">
<catDesc>Excommunication</catDesc>
</category>
<category xml:id="MalkeHymn" corresp="https://betamasaheft.eu/authority-files/MalkeHymn/main">
<catDesc>Malkǝʾ Hymn</catDesc>
</category>
<category xml:id="Directive" corresp="https://betamasaheft.eu/authority-files/Directive/main">
<catDesc>Directive</catDesc>
</category>
<category xml:id="Asmat" corresp="https://betamasaheft.eu/authority-files/Asmat/main">
<catDesc>ʾAsmāt</catDesc>
</category>
<category xml:id="CustomaryLaw" corresp="https://betamasaheft.eu/authority-files/CustomaryLaw/main">
<catDesc>CustomaryLaw</catDesc>
</category>
<category xml:id="Statutes" corresp="https://betamasaheft.eu/authority-files/Statutes/main">
<catDesc>Statutes</catDesc>
</category>
<category xml:id="MixedNote" corresp="https://betamasaheft.eu/authority-files/MixedNote/main">
<catDesc>Mixed Note</catDesc>
</category>
<category xml:id="findingAid" corresp="https://betamasaheft.eu/authority-files/findingAid/main">
<catDesc>Finding Aid</catDesc>
</category>
</category>
<category>
<desc>Art Keywords</desc>
<category xml:id="AksumiteStyle" corresp="https://betamasaheft.eu/authority-files/AksumiteStyle/main">
<catDesc>Aksumite Style</catDesc>
</category>
<category xml:id="FirstSolomonicStyle" corresp="https://betamasaheft.eu/authority-files/FirstSolomonicStyle/main">
<catDesc>First Solomonic Style</catDesc>
</category>
<category xml:id="SecondSolomonicStyle" corresp="https://betamasaheft.eu/authority-files/SecondSolomonicStyle/main">
<catDesc>Second Solomonic Style</catDesc>
</category>
<category xml:id="ThirdSolomonicStyle" corresp="https://betamasaheft.eu/authority-files/ThirdSolomonicStyle/main">
<catDesc>Third Solomonic Style</catDesc>
</category>
<category xml:id="FirstGondarineStyle" corresp="https://betamasaheft.eu/authority-files/FirstGondarineStyle/main">
<catDesc>First Gondarine Style</catDesc>
</category>
<category xml:id="GeometricStyle" corresp="https://betamasaheft.eu/authority-files/GeometricStyle/main">
<catDesc>Geometric Style</catDesc>
</category>
<category xml:id="SecondGondarineStyle" corresp="https://betamasaheft.eu/authority-files/SecondGondarineStyle/main">
<catDesc>Second Gondarine Style</catDesc>
</category>
<category xml:id="PostGondarineStyle" corresp="https://betamasaheft.eu/authority-files/PostGondarineStyle/main">
<catDesc>Zamana Masāfǝnt Style</catDesc>
</category>
<category xml:id="ModernStyle" corresp="https://betamasaheft.eu/authority-files/ModernStyle/main">
<catDesc>Modern Style</catDesc>
</category>
<category xml:id="ShortCycle" corresp="https://betamasaheft.eu/authority-files/ShortCycle/main">
<catDesc>Short Cycle</catDesc>
</category>
<category xml:id="LongCycle" corresp="https://betamasaheft.eu/authority-files/LongCycle/main">
<catDesc>Long Cycle</catDesc>
</category>
<category xml:id="attribute" corresp="https://betamasaheft.eu/authority-files/attribute/main">
<catDesc>attribute</catDesc>
</category>
<category xml:id="bearded" corresp="https://betamasaheft.eu/authority-files/bearded/main">
<catDesc>bearded</catDesc>
</category>
<category xml:id="beardless" corresp="https://betamasaheft.eu/authority-files/beardless/main">
<catDesc>beardless</catDesc>
</category>
<category xml:id="deadjesus" corresp="https://betamasaheft.eu/authority-files/deadjesus/main">
<catDesc>Dead Jesus</catDesc>
</category>
<category xml:id="demon" corresp="https://betamasaheft.eu/authority-files/demon/main">
<catDesc>demon</catDesc>
</category>
<category xml:id="donordepiction" corresp="https://betamasaheft.eu/authority-files/donordepiction/main">
<catDesc>donor depiction</catDesc>
</category>
<category xml:id="dragon" corresp="https://betamasaheft.eu/authority-files/dragon/main">
<catDesc>dragon</catDesc>
</category>
<category xml:id="emptycross" corresp="https://betamasaheft.eu/authority-files/emptycross/main">
<catDesc>Empty Cross</catDesc>
</category>
<category xml:id="livingjesus" corresp="https://betamasaheft.eu/authority-files/livingjesus/main">
<catDesc>Living Jesus</catDesc>
</category>
<category xml:id="interlace" corresp="https://betamasaheft.eu/authority-files/interlace/main">
<catDesc>interlace</catDesc>
</category>
<category xml:id="gesture" corresp="https://betamasaheft.eu/authority-files/gesture/main">
<catDesc>gesture</catDesc>
</category>
<category xml:id="gestureblessing" corresp="https://betamasaheft.eu/authority-files/gestureblessing/main">
<catDesc>gesture of blessing</catDesc>
</category>
<category xml:id="gesturecrossed" corresp="https://betamasaheft.eu/authority-files/gesturecrossed/main">
<catDesc>gesture of crossed arms</catDesc>
</category>
<category xml:id="gesturefoldedhands" corresp="https://betamasaheft.eu/authority-files/gesturefoldedhands/main">
<catDesc>gesture of folded hands</catDesc>
</category>
<category xml:id="gesturegrief" corresp="https://betamasaheft.eu/authority-files/gesturegrief/main">
<catDesc>gesture of grief</catDesc>
</category>
<category xml:id="gestureorans" corresp="https://betamasaheft.eu/authority-files/gestureorans/main">
<catDesc>orans</catDesc>
</category>
<category xml:id="gesturewitnessing" corresp="https://betamasaheft.eu/authority-files/gesturewitnessing/main">
<catDesc>gesture of witnessing</catDesc>
</category>
<category xml:id="halo" corresp="https://betamasaheft.eu/authority-files/halo/main">
<catDesc>halo</catDesc>
</category>
<category xml:id="handGod" corresp="https://betamasaheft.eu/authority-files/handGod/main">
<catDesc>Hand of God</catDesc>
</category>
<category xml:id="HolySpirit" corresp="https://betamasaheft.eu/authority-files/HolySpirit/main">
<catDesc>Holy Spirit</catDesc>
</category>
<category xml:id="mandorla" corresp="https://betamasaheft.eu/authority-files/mandorla/main">
<catDesc>mandorla</catDesc>
</category>
<category xml:id="saluspopuli" corresp="https://betamasaheft.eu/authority-files/saluspopuli/main">
<catDesc>Salus Populi Romani</catDesc>
</category>
<category xml:id="hodegetria" corresp="https://betamasaheft.eu/authority-files/hodegetria/main">
<catDesc>Hodegetria</catDesc>
</category>
<category xml:id="seated" corresp="https://betamasaheft.eu/authority-files/seated/main">
<catDesc>seated</catDesc>
</category>
<category xml:id="standing" corresp="https://betamasaheft.eu/authority-files/standing/main">
<catDesc>standing</catDesc>
</category>
<category xml:id="spinning" corresp="https://betamasaheft.eu/authority-files/spinning/main">
<catDesc>spinning</catDesc>
</category>
<category xml:id="sunandmoon" corresp="https://betamasaheft.eu/authority-files/sunandmoon/main">
<catDesc>Sun and Moon</catDesc>
</category>
<category xml:id="tetramorph" corresp="https://betamasaheft.eu/authority-files/tetramorph/main">
<catDesc>Tetramorph</catDesc>
</category>
<category xml:id="twothieves" corresp="https://betamasaheft.eu/authority-files/twothieves/main">
<catDesc>Two Thieves</catDesc>
</category>
<category xml:id="scabbard" corresp="https://betamasaheft.eu/authority-files/scabbard/main">
<catDesc>Scabbard</catDesc>
</category>
<category xml:id="protectiveCurtain" corresp="https://betamasaheft.eu/authority-files/protectiveCurtain/main">
<catDesc>Protective Curtain</catDesc>
</category>
</category>
<category>
<desc>Objects and Animals</desc>
<category xml:id="animal" corresp="https://betamasaheft.eu/authority-files/animal/main">
<catDesc>animal</catDesc>
</category>
<category xml:id="arch" corresp="https://betamasaheft.eu/authority-files/arch/main">
<catDesc>arch</catDesc>
</category>
<category xml:id="architecture" corresp="https://betamasaheft.eu/authority-files/architecture/main">
<catDesc>architecture</catDesc>
</category>
<category xml:id="bird" corresp="https://betamasaheft.eu/authority-files/bird/main">
<catDesc>bird</catDesc>
</category>
<category xml:id="canopy" corresp="https://betamasaheft.eu/authority-files/canopy/main">
<catDesc>canopy</catDesc>
</category>
<category xml:id="censer" corresp="https://betamasaheft.eu/authority-files/censer/main">
<catDesc>censer</catDesc>
</category>
<category xml:id="codex" corresp="https://betamasaheft.eu/authority-files/codex/main">
<catDesc>codex</catDesc>
</category>
<category xml:id="column" corresp="https://betamasaheft.eu/authority-files/column/main">
<catDesc>column</catDesc>
</category>
<category xml:id="cross" corresp="https://betamasaheft.eu/authority-files/cross/main">
<catDesc>cross</catDesc>
</category>
<category xml:id="crown" corresp="https://betamasaheft.eu/authority-files/crown/main">
<catDesc>crown</catDesc>
</category>
<category xml:id="curtain" corresp="https://betamasaheft.eu/authority-files/curtain/main">
<catDesc>curtain</catDesc>
</category>
<category xml:id="eucharist" corresp="https://betamasaheft.eu/authority-files/eucharist/main">
<catDesc>eucharist</catDesc>
</category>
<category xml:id="globe" corresp="https://betamasaheft.eu/authority-files/globe/main">
<catDesc>globe</catDesc>
</category>
<category xml:id="maniple" corresp="https://betamasaheft.eu/authority-files/maniple/main">
<catDesc>maniple</catDesc>
</category>
<category xml:id="prayerstaff" corresp="https://betamasaheft.eu/authority-files/prayerstaff/main">
<catDesc>prayer staff</catDesc>
</category>
<category xml:id="rod" corresp="https://betamasaheft.eu/authority-files/rod/main">
<catDesc>rod</catDesc>
</category>
<category xml:id="scale" corresp="https://betamasaheft.eu/authority-files/scale/main">
<catDesc>scale</catDesc>
</category>
<category xml:id="scroll" corresp="https://betamasaheft.eu/authority-files/scroll/main">
<catDesc>scroll</catDesc>
</category>
<category xml:id="shield" corresp="https://betamasaheft.eu/authority-files/shield/main">
<catDesc>shield</catDesc>
</category>
<category xml:id="spear" corresp="https://betamasaheft.eu/authority-files/spear/main">
<catDesc>spear</catDesc>
</category>
<category xml:id="sponge" corresp="https://betamasaheft.eu/authority-files/sponge/main">
<catDesc>sponge</catDesc>
</category>
<category xml:id="sword" corresp="https://betamasaheft.eu/authority-files/sword/main">
<catDesc>sword</catDesc>
</category>
<category xml:id="vestment" corresp="https://betamasaheft.eu/authority-files/vestment/main">
<catDesc>vestment</catDesc>
</category>
</category>
<category>
<desc>Art Themes</desc>
<category xml:id="AT1068AdamandEveeatfruit" corresp="https://betamasaheft.eu/authority-files/AT1068AdamandEveeatfruit/main">
<catDesc>Adam and Eve eat the Forbidden Fruit</catDesc>
</category>
<category xml:id="AT1001Agony" corresp="https://betamasaheft.eu/authority-files/AT1001Agony/main">
<catDesc>Agony in the garden</catDesc>
</category>
<category xml:id="AT1082Angel" corresp="https://betamasaheft.eu/authority-files/AT1082Angel/main">
<catDesc>Angel</catDesc>
</category>
<category xml:id="AT1002Annunciation" corresp="https://betamasaheft.eu/authority-files/AT1002Annunciation/main">
<catDesc>Annunciation</catDesc>
</category>
<category xml:id="AT1054AnnunciationZaccharia" corresp="https://betamasaheft.eu/authority-files/AT1054AnnunciationZaccharia/main">
<catDesc>Annunciation to Zacharias</catDesc>
</category>
<category xml:id="AT1046Apostle" corresp="https://betamasaheft.eu/authority-files/AT1046Apostle/main">
<catDesc>Apostle Portrait</catDesc>
</category>
<category xml:id="AT1047Apostles" corresp="https://betamasaheft.eu/authority-files/AT1047Apostles/main">
<catDesc>Apostles Portrait</catDesc>
</category>
<category xml:id="AT1003Arrest" corresp="https://betamasaheft.eu/authority-files/AT1003Arrest/main">
<catDesc>Arrest of Jesus</catDesc>
</category>
<category xml:id="AT1033Ascension" corresp="https://betamasaheft.eu/authority-files/AT1033Ascension/main">
<catDesc>Ascension of Jesus</catDesc>
</category>
<category xml:id="AT1037AscensionMary" corresp="https://betamasaheft.eu/authority-files/AT1037AscensionMary/main">
<catDesc>Assumption of Mary</catDesc>
</category>
<category xml:id="AT1038Baptism" corresp="https://betamasaheft.eu/authority-files/AT1038Baptism/main">
<catDesc>Baptism of Jesus</catDesc>
</category>
<category xml:id="AT1004Bitter" corresp="https://betamasaheft.eu/authority-files/AT1004Bitter/main">
<catDesc>Bitter Water Ordeal</catDesc>
</category>
<category xml:id="AT1062CoronationMary" corresp="https://betamasaheft.eu/authority-files/AT1062CoronationMary/main">
<catDesc>Coronation of Mary</catDesc>
</category>
<category xml:id="AT1036MercyCovenant" corresp="https://betamasaheft.eu/authority-files/AT1036MercyCovenant/main">
<catDesc>Covenant of Mercy</catDesc>
</category>
<category xml:id="AT1005Crucifixion" corresp="https://betamasaheft.eu/authority-files/AT1005Crucifixion/main">
<catDesc>Crucifixion of Jesus</catDesc>
</category>
<category xml:id="AT1071Cross" corresp="https://betamasaheft.eu/authority-files/AT1071Cross/main">
<catDesc>Cross</catDesc>
</category>
<category xml:id="AT1079DavidGoliath" corresp="https://betamasaheft.eu/authority-files/AT1079DavidGoliath/main">
<catDesc>David Beheads Goliath</catDesc>
</category>
<category xml:id="AT1066DavidHarp" corresp="https://betamasaheft.eu/authority-files/AT1066DavidHarp/main">
<catDesc>David Playing the Harp</catDesc>
</category>
<category xml:id="AT1006Denial" corresp="https://betamasaheft.eu/authority-files/AT1006Denial/main">
<catDesc>Denial of Peter</catDesc>
</category>
<category xml:id="AT1007Deposition" corresp="https://betamasaheft.eu/authority-files/AT1007Deposition/main">
<catDesc>Deposition from the Cross</catDesc>
</category>
<category xml:id="AT1008Descent" corresp="https://betamasaheft.eu/authority-files/AT1008Descent/main">
<catDesc>Descent into Hell</catDesc>
</category>
<category xml:id="AT1058DormitionMary" corresp="https://betamasaheft.eu/authority-files/AT1058DormitionMary/main">
<catDesc>Dormition of Mary</catDesc>
</category>
<category xml:id="AT1009Doubting" corresp="https://betamasaheft.eu/authority-files/AT1009Doubting/main">
<catDesc>Doubting of Thomas</catDesc>
</category>
<category xml:id="AT1010Entombment" corresp="https://betamasaheft.eu/authority-files/AT1010Entombment/main">
<catDesc>Entombment of Jesus</catDesc>
</category>
<category xml:id="AT1011Entry" corresp="https://betamasaheft.eu/authority-files/AT1011Entry/main">
<catDesc>Entry into Jerusalem</catDesc>
</category>
<category xml:id="AT1012Equestrian" corresp="https://betamasaheft.eu/authority-files/AT1012Equestrian/main">
<catDesc>Equestrian Saint</catDesc>
</category>
<category xml:id="AT1013EvaPortrait" corresp="https://betamasaheft.eu/authority-files/AT1013EvaPortrait/main">
<catDesc>Evangelist Portrait</catDesc>
</category>
<category xml:id="AT1014Evangelists" corresp="https://betamasaheft.eu/authority-files/AT1014Evangelists/main">
<catDesc>Evangelists</catDesc>
</category>
<category xml:id="AT1015Flagellation" corresp="https://betamasaheft.eu/authority-files/AT1015Flagellation/main">
<catDesc>Flagellation of Jesus</catDesc>
</category>
<category xml:id="AT1016Flight" corresp="https://betamasaheft.eu/authority-files/AT1016Flight/main">
<catDesc>Flight into Egypt</catDesc>
</category>
<category xml:id="AT1101GodtheFather" corresp="https://betamasaheft.eu/authority-files/AT1101GodtheFather/main">
<catDesc>God the Father</catDesc>
</category>
<category xml:id="AT1042HagiographicScene" corresp="https://betamasaheft.eu/authority-files/AT1042HagiographicScene/main">
<catDesc>Hagiographic Scene</catDesc>
</category>
<category xml:id="AT1051HistoricalPerson" corresp="https://betamasaheft.eu/authority-files/AT1051HistoricalPerson/main">
<catDesc>Historical Person Portrait</catDesc>
</category>
<category xml:id="AT1052HistoricalPersons" corresp="https://betamasaheft.eu/authority-files/AT1052HistoricalPersons/main">
<catDesc>Historical Persons Portrait</catDesc>
</category>
<category xml:id="AT1053HistoricalScene" corresp="https://betamasaheft.eu/authority-files/AT1053HistoricalScene/main">
<catDesc>Historical Scene</catDesc>
</category>
<category xml:id="AT1035HolyMan" corresp="https://betamasaheft.eu/authority-files/AT1035HolyMan/main">
<catDesc>Holy Man Portrait</catDesc>
</category>
<category xml:id="AT1041HolyMen" corresp="https://betamasaheft.eu/authority-files/AT1041HolyMen/main">
<catDesc>Holy Men Potrait</catDesc>
</category>
<category xml:id="AT1105HolyWoman" corresp="https://betamasaheft.eu/authority-files/AT1105HolyWoman/main">
<catDesc>Holy Woman</catDesc>
</category>
<category xml:id="AT1106HolyWomen" corresp="https://betamasaheft.eu/authority-files/AT1106HolyWomen/main">
<catDesc>Holy Women</catDesc>
</category>
<category xml:id="AT1017WomenAtTomb" corresp="https://betamasaheft.eu/authority-files/AT1017WomenAtTomb/main">
<catDesc>Holy Women at Tomb</catDesc>
</category>
<category xml:id="AT1018JBefPilate" corresp="https://betamasaheft.eu/authority-files/AT1018JBefPilate/main">
<catDesc>Jesus before Pilate</catDesc>
</category>
<category xml:id="AT1084JesusChrist" corresp="https://betamasaheft.eu/authority-files/AT1084JesusChrist/main">
<catDesc>Jesus Christ</catDesc>
</category>
<category xml:id="AT1070JesushealstheBlind" corresp="https://betamasaheft.eu/authority-files/AT1070JesushealstheBlind/main">
<catDesc>Jesus Heals the Blind</catDesc>
</category>
<category xml:id="AT1048Lamentation" corresp="https://betamasaheft.eu/authority-files/AT1048Lamentation/main">
<catDesc>Lamentation of Jesus</catDesc>
</category>
<category xml:id="AT1057LastJudgement" corresp="https://betamasaheft.eu/authority-files/AT1057LastJudgement/main">
<catDesc>Last Judgment</catDesc>
</category>
<category xml:id="AT1067LastSupper" corresp="https://betamasaheft.eu/authority-files/AT1067LastSupper/main">
<catDesc>The Last Supper</catDesc>
</category>
<category xml:id="AT1019Cana" corresp="https://betamasaheft.eu/authority-files/AT1019Cana/main">
<catDesc>Marriage at Cana</catDesc>
</category>
<category xml:id="AT1061SaintMartyrdom" corresp="https://betamasaheft.eu/authority-files/AT1061SaintMartyrdom/main">
<catDesc>Martyrdom</catDesc>
</category>
<category xml:id="AT1063AngelFeedsMary" corresp="https://betamasaheft.eu/authority-files/AT1063AngelFeedsMary/main">
<catDesc>Mary fed by an Angel</catDesc>
</category>
<category xml:id="AT1020Massacre" corresp="https://betamasaheft.eu/authority-files/AT1020Massacre/main">
<catDesc>Massacre of the Innocents</catDesc>
</category>