-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPedigree_Paul Daniel Spooner.txt
2403 lines (1202 loc) · 219 KB
/
Pedigree_Paul Daniel Spooner.txt
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
{'John_Howard,_1st_Duke_of_Norfolk': {'nm': 'John Howard, 1st Duke of Norfolk', 'url': 'John_Howard,_1st_Duke_of_Norfolk', 'b': 'c. 1425', 'd': '22 August 1485', 'g': 1, 's': 'n', 'yb': 1425, 'yd': 1485, 'f': 'Robert_Howard_(knight)', 'm': 'Margaret Mowbray'},
'Robert_Howard_(knight)': {'nm': 'Robert Howard (knight)', 'url': 'Robert_Howard_(knight)', 'b': '1385', 'd': '1436', 'g': 1, 's': 'n', 'yb': 1385, 'yd': 1436, 'f': 'John_Howard_(died_1437)', 'm': 'Alice Tendring'},
'Margaret Mowbray': {'nm': 'Margaret Mowbray', 'g': 0, 'f': 'Thomas_de_Mowbray,_1st_Duke_of_Norfolk', 'm': 'Elizabeth_Fitzalan,_Duchess_of_Norfolk'},
'John_Howard_(died_1437)': {'nm': 'John Howard (died 1437)', 'url': 'John_Howard_(died_1437)', 'd': 'c. 1437', 'b': 'c. 1366', 'g': 1, 's': 'n', 'yb': 1366, 'yd': 1437, 'f': 'Sir Robert Howard (died 1389)', 'm': 'Margaret (died 1416)'},
'Margaret (died 1416)': {'nm': 'Margaret', 'g': 0, 'f': 'Robert_de_Scales,_3rd_Baron_Scales', 'm': 'Katherine of Scales'},
'Katherine of Scales': {'nm': 'Katherine', 'g': 0, 'f': 'Robert_d%27Ufford,_1st_Earl_of_Suffolk'},
'Alice Tendring': {'nm': 'Alice Tendring', 'b': '1365', 'd': '18 Oct 1426', 'g': 0, 'yb': 1365, 'yd': 1426, 'f': 'Sir William Tendring', 'm': 'Katherine Mylde'},
'Thomas_de_Mowbray,_1st_Duke_of_Norfolk': {'nm': 'Thomas de Mowbray, 1st Duke of Norfolk', 'url': 'Thomas_de_Mowbray,_1st_Duke_of_Norfolk', 'b': 'Epworth, Lincolnshire, England, 22 March 1366', 'd': 'Venice, Republic of Venice, Italy, 22 September 1399', 'g': 1, 's': 'n', 'yb': 1366, 'yd': 1399, 'f': 'John_de_Mowbray,_4th_Baron_Mowbray', 'm': 'Elizabeth de Segrave'},
'John_de_Mowbray,_4th_Baron_Mowbray': {'nm': 'John de Mowbray, 4th Baron Mowbray', 'url': 'John_de_Mowbray,_4th_Baron_Mowbray', 'b': 'Epworth, Lincolnshire, England, 24 June 1340', 'd': 'near Constantinople, Turkey, 19 October 1368', 'g': 1, 's': 'n', 'yb': 1340, 'yd': 1368, 'f': 'John_de_Mowbray,_3rd_Baron_Mowbray', 'm': 'Joan_of_Lancaster'},
'John_de_Mowbray,_3rd_Baron_Mowbray': {'nm': 'John de Mowbray, 3rd Baron Mowbray', 'url': 'John_de_Mowbray,_3rd_Baron_Mowbray', 'b': 'Hovingham, Yorkshire, 29 November 1310', 'd': 'York, 4 October 1361', 'g': 1, 's': 'n', 'yb': 1310, 'yd': 1361, 'f': 'John_de_Mowbray,_2nd_Baron_Mowbray', 'm': 'Aline de Brewes'},
'Joan_of_Lancaster': {'nm': 'Joan of Lancaster', 'url': 'Joan_of_Lancaster', 'b': 'Norfolk, England, c. 1312', 'd': 'Yorkshire, England, 7 July 1349', 'g': 0, 's': 'n', 'yb': 1312, 'yd': 1349, 'f': 'Henry,_3rd_Earl_of_Lancaster', 'm': 'Maud_Chaworth'},
'Elizabeth de Segrave': {'nm': 'Elizabeth de Segrave', 'g': 0},
'Elizabeth_Fitzalan,_Duchess_of_Norfolk': {'nm': 'Elizabeth Fitzalan, Duchess of Norfolk', 'url': 'Elizabeth_Fitzalan,_Duchess_of_Norfolk', 'g': 0, 's': 'n', 'f': 'Richard_FitzAlan,_11th_Earl_of_Arundel', 'm': 'Elizabeth_de_Bohun'},
'Sir Robert Howard (died 1389)': {'nm': 'Sir Robert Howard (died 1389)', 'g': 1, 'yd': 1389, 'f': 'unknown'},
'Robert_de_Scales,_3rd_Baron_Scales': {'nm': 'Robert Scales, 3rd Baron Scales', 'url': 'Robert_de_Scales,_3rd_Baron_Scales', 'g': 1, 's': 'n', 'f': 'Robert_de_Scales,_2nd_Baron_Scales'},
'Richard_FitzAlan,_11th_Earl_of_Arundel': {'nm': 'Richard Fitzalan, 4th Earl of Arundel', 'url': 'Richard_FitzAlan,_11th_Earl_of_Arundel', 'b': '1346', 'd': 'London, England, 21 September 1397', 'g': 1, 's': 'n', 'yb': 1346, 'yd': 1397, 'f': 'Richard_Fitzalan,_3rd_Earl_of_Arundel', 'm': 'Eleanor_of_Lancaster'},
'Richard_Fitzalan,_3rd_Earl_of_Arundel': {'nm': 'Richard Fitzalan, 3rd Earl of Arundel', 'url': 'Richard_Fitzalan,_3rd_Earl_of_Arundel', 'b': 'Sussex, c. 1313', 'd': 'Sussex, 24 January 1376', 'g': 1, 's': 'n', 'yb': 1313, 'yd': 1376, 'f': 'Edmund_Fitzalan,_2nd_Earl_of_Arundel', 'm': 'Alice_de_Warenne'},
'Eleanor_of_Lancaster': {'nm': 'Eleanor of Lancaster', 'url': 'Eleanor_of_Lancaster', 'b': '11 September 1318', 'd': 'Arundel, 11 January 1372', 'g': 0, 's': 'n', 'yb': 1318, 'yd': 1372, 'f': 'Henry,_3rd_Earl_of_Lancaster', 'm': 'Maud_Chaworth'},
'Elizabeth_de_Bohun': {'nm': 'Elizabeth Fitzalan, Countess of Arundel', 'url': 'Elizabeth_de_Bohun', 'b': 'England, c.1350', 'd': 'England, 3 April 1385', 'g': 0, 's': 'n', 'yb': 1350, 'yd': 1385, 'f': 'William_de_Bohun,_1st_Earl_of_Northampton', 'm': 'Elizabeth_de_Badlesmere'},
'William_de_Bohun,_1st_Earl_of_Northampton': {'nm': 'William de Bohun, 1st Earl of Northampton', 'url': 'William_de_Bohun,_1st_Earl_of_Northampton', 'b': 'c. 1312', 'd': '16 September 1360', 'g': 1, 's': 'n', 'yb': 1312, 'yd': 1360, 'f': 'Humphrey_de_Bohun,_4th_Earl_of_Hereford', 'm': 'Elizabeth_of_Rhuddlan'},
'Elizabeth_de_Badlesmere': {'nm': 'Elizabeth de Bohun, Countess of Northampton', 'url': 'Elizabeth_de_Badlesmere', 'b': 'Castle Badlesmere, Kent, England, 1313', 'd': 'Blackfriars, London, 8 June 1356', 'g': 0, 's': 'n', 'yb': 1313, 'yd': 1356, 'f': 'Bartholomew_de_Badlesmere,_1st_Baron_Badlesmere', 'm': 'Margaret_de_Clare,_Baroness_Badlesmere'},
'Robert_de_Scales,_2nd_Baron_Scales': {'nm': 'Robert Scales, 2nd Baron Scales', 'url': 'Robert_de_Scales,_2nd_Baron_Scales', 'g': 1, 's': 'n', 'f': 'Robert_de_Scales,_1st_Baron_Scales'},
'Robert_d%27Ufford,_1st_Earl_of_Suffolk': {'nm': 'Robert Ufford, 1st Earl of Suffolk', 'url': 'Robert_d%27Ufford,_1st_Earl_of_Suffolk', 'b': '9 August 1298', 'd': '4 November 1369', 'g': 1, 's': 'n', 'yb': 1298, 'yd': 1369, 'f': 'Robert Ufford, 1st Baron Ufford (12791316)', 'm': 'Cecily de Valoignes (died 1325)'},
'John_de_Mowbray,_2nd_Baron_Mowbray': {'nm': 'John de Mowbray, 2nd Baron Mowbray', 'url': 'John_de_Mowbray,_2nd_Baron_Mowbray', 'b': '4 September 1286', 'd': '23 March 1322', 'g': 1, 's': 'n', 'yb': 1286, 'yd': 1322, 'f': 'Roger_de_Mowbray,_1st_Baron_Mowbray'},
'Aline de Brewes': {'nm': 'Aline de Brewes', 'g': 0},
'Henry,_3rd_Earl_of_Lancaster': {'nm': 'Henry, 3rd Earl of Lancaster', 'url': 'Henry,_3rd_Earl_of_Lancaster', 'b': 'c. 1281', 'd': 'Leicester Castle, 22 September 1345', 'g': 1, 's': 'n', 'yb': 1281, 'yd': 1345, 'f': 'Edmund_Crouchback', 'm': 'Blanche_of_Artois'},
'Maud_Chaworth': {'nm': 'Maud Chaworth', 'url': 'Maud_Chaworth', 'b': '2 February 1282', 'd': '3 December 1322', 'g': 0, 's': 'n', 'yb': 1282, 'yd': 1322, 'f': 'Patrick de Chaworth, Lord of Kidwelly', 'm': 'Isabella_de_Beauchamp'},
'Edmund_Fitzalan,_2nd_Earl_of_Arundel': {'nm': 'Edmund Fitzalan, 2nd Earl of Arundel', 'url': 'Edmund_Fitzalan,_2nd_Earl_of_Arundel', 'b': 'Marlborough Castle, Wiltshire, 1 May 1285', 'd': 'Hereford, 17 November 1326', 'g': 1, 's': 'n', 'yb': 1285, 'yd': 1326, 'f': 'Richard_Fitzalan,_1st_Earl_of_Arundel', 'm': 'Alice_of_Saluzzo,_Countess_of_Arundel'},
'Alice_de_Warenne': {'nm': 'Alice de Warenne, Countess of Arundel', 'url': 'Alice_de_Warenne', 'b': 'Warren, Sussex, England, 15 June 1287', 'd': '23 May 1338', 'g': 0, 's': 'n', 'yb': 1287, 'yd': 1338, 'f': 'William_de_Warenne_(1256-1286)', 'm': 'Joan de Vere'},
'Humphrey_de_Bohun,_4th_Earl_of_Hereford': {'nm': 'Humphrey de Bohun, 4th Earl of Hereford', 'url': 'Humphrey_de_Bohun,_4th_Earl_of_Hereford', 'b': 'c. 1276', 'd': '16 March 1322', 'g': 1, 's': 'n', 'yb': 1276, 'yd': 1322, 'f': 'Humphrey_de_Bohun,_3rd_Earl_of_Hereford', 'm': 'Maud de Fiennes'},
'Elizabeth_of_Rhuddlan': {'nm': 'Elizabeth of Rhuddlan', 'url': 'Elizabeth_of_Rhuddlan', 'b': 'Rhuddlan Castle, Denbighshire, 7 August 1282', 'd': 'Quendon, Essex, 5 May 1316', 'g': 0, 's': 'n', 'yb': 1282, 'yd': 1316, 'f': 'Edward_I_of_England', 'm': 'Eleanor_of_Castile'},
'Bartholomew_de_Badlesmere,_1st_Baron_Badlesmere': {'nm': 'Bartholomew Badlesmere, 1st Baron Badlesmere', 'url': 'Bartholomew_de_Badlesmere,_1st_Baron_Badlesmere', 'b': 'Chilham Castle, County of Kent, England, 18 August 1275', 'd': 'Blean near Canterbury, 14 April 1322', 'g': 1, 's': 'n', 'yb': 1275, 'yd': 1322, 'f': 'Gunselm_de_Badlesmere', 'm': 'Joan FitzBernard'},
'Margaret_de_Clare,_Baroness_Badlesmere': {'nm': 'Margaret de Clare, Baroness Badlesmere', 'url': 'Margaret_de_Clare,_Baroness_Badlesmere', 'b': 'Ireland or England, ca 1 April 1287', 'd': 'Convent house of the Minorite Sisters, Aldgate, London, 22 October 1333 or 3 January 1334', 'g': 0, 's': 'n', 'yb': 1287, 'yd': 1334, 'f': 'Thomas_de_Clare,_Lord_of_Thomond', 'm': 'Juliana_FitzGerald'},
'Robert_de_Scales,_1st_Baron_Scales': {'nm': 'Robert Scales, 1st Baron Scales', 'url': 'Robert_de_Scales,_1st_Baron_Scales', 'd': '1304', 'g': 1, 's': 'n', 'yd': 1304, 'f': 'unknown'},
'Robert Ufford, 1st Baron Ufford (12791316)': {'nm': 'Robert Ufford, 1st Baron Ufford (1279-1316)', 'g': 1, 'yd': 1316, 'yb': 1279, 'f': 'unknown'},
'Cecily de Valoignes (died 1325)': {'nm': 'Cecily de Valoignes (died 1325)', 'g': 0, 'yd': 1325, 'f': 'unknown'},
'Roger_de_Mowbray,_1st_Baron_Mowbray': {'nm': 'Roger de Mowbray, 1st Baron Mowbray', 'url': 'Roger_de_Mowbray,_1st_Baron_Mowbray', 'b': '1254', 'd': '21 November 1297', 'g': 1, 's': 'n', 'yb': 1254, 'yd': 1297, 'f': 'Roger de Mowbray'},
'Roger de Mowbray': {'nm': 'Roger de Mowbray', 'g': 1, 'f': 'William_de_Mowbray'},
'Edmund_Crouchback': {'nm': 'Edmund Crouchback', 'url': 'Edmund_Crouchback', 'b': 'London, England, 16 January 1245', 'd': 'Bayonne, Duchy of Aquitaine, 5 June 1296', 'g': 1, 's': 'n', 'yb': 1245, 'yd': 1296, 'f': 'Henry_III_of_England', 'm': 'Eleanor_of_Provence'},
'Henry_III_of_England': {'nm': 'Henry III of England', 'url': 'Henry_III_of_England', 'b': 'Winchester Castle, Hampshire, England, 1 October 1207', 'd': 'Westminster, London, England, 16 November 1272', 'g': 1, 's': 'n', 'yb': 1207, 'yd': 1272, 'f': 'John,_King_of_England', 'm': 'Isabella_of_Angoul%C3%AAme'},
'John,_King_of_England': {'nm': 'John, King of England', 'url': 'John,_King_of_England', 'b': 'Beaumont Palace, Oxford, Kingdom of England, 24 December 1166', 'd': 'Newark Castle, Newark-on-Trent, Nottinghamshire, Kingdom of England, 19 October 1216', 'g': 1, 's': 'n', 'yb': 1166, 'yd': 1216, 'f': 'Henry_II,_King_of_England', 'm': 'Eleanor,_Duchess_of_Aquitaine'},
'Henry_II,_King_of_England': {'nm': 'Henry II of England', 'url': 'Henry_II,_King_of_England', 'b': 'Le Mans, Maine, Kingdom of France, 5 March 1133', 'd': 'Chinon Castle, Chinon, Touraine, Kingdom of France, 6 July 1189', 'g': 1, 's': 'n', 'yb': 1133, 'yd': 1189, 'f': 'Geoffrey_Plantagenet,_Count_of_Anjou', 'm': 'Empress_Matilda'},
'Geoffrey_Plantagenet,_Count_of_Anjou': {'nm': 'Geoffrey Plantagenet, Count of Anjou', 'url': 'Geoffrey_Plantagenet,_Count_of_Anjou', 'b': '24 August 1113', 'd': 'Chteau-du-Loir, France, 7 September 1151', 'g': 1, 's': 'n', 'yb': 1113, 'yd': 1151, 'f': 'Fulk,_King_of_Jerusalem', 'm': 'Ermengarde,_Countess_of_Maine'},
'Fulk,_King_of_Jerusalem': {'nm': 'Fulk, King of Jerusalem', 'url': 'Fulk,_King_of_Jerusalem', 'b': '/92Angers, France, 1089', 'd': 'Acre, Kingdom of Jerusalem, Outremer, Levant, 13 November 1143', 'g': 1, 's': 'n', 'yb': 1089, 'yd': 1143, 'f': 'Fulk_IV,_Count_of_Anjou', 'm': 'Bertrade_de_Montfort'},
'Fulk_IV,_Count_of_Anjou': {'nm': 'Fulk IV, Count of Anjou', 'url': 'Fulk_IV,_Count_of_Anjou', 'b': '1043', 'd': '14 April 1109', 'g': 1, 's': 'n', 'yb': 1043, 'yd': 1109, 'f': 'Geoffrey_II,_Count_of_G%C3%A2tinais', 'm': 'Ermengarde_of_Anjou,_Duchess_of_Burgundy'},
'Geoffrey_II,_Count_of_G%C3%A2tinais': {'nm': 'Geoffrey II, Count of Gtinais', 'url': 'Geoffrey_II,_Count_of_G%C3%A2tinais', 'd': '1043 or 1046', 'g': 1, 's': 'n', 'yd': 1046, 'f': 'Hugues_du_Perche', 'm': 'Batrice de Mcon'},
'Ermengarde_of_Anjou,_Duchess_of_Burgundy': {'nm': 'Ermengarde of Anjou, Duchess of Burgundy', 'url': 'Ermengarde_of_Anjou,_Duchess_of_Burgundy', 'b': 'Angers, c. 1018', 'd': 'Fleurey-sur-Ouche, 18 March 1076', 'g': 0, 's': 'n', 'yb': 1018, 'yd': 1076, 'f': 'Fulk_III_of_Anjou', 'm': 'Hildegarde of Sundgau'},
'Fulk_III_of_Anjou': {'nm': 'Fulk III, Count of Anjou', 'url': 'Fulk_III_of_Anjou', 'b': 'Fulk Nerrac. 970', 'd': 'Metz, 21 June 1040', 'g': 1, 's': 'n', 'yb': 970, 'yd': 1040, 'f': 'Geoffrey_I,_Count_of_Anjou', 'm': 'Adele_of_Meaux'},
'Geoffrey_I,_Count_of_Anjou': {'nm': 'Geoffrey I, Count of Anjou', 'url': 'Geoffrey_I,_Count_of_Anjou', 'b': 'c. 938/940', 'd': 'Maron, 21 July 987', 'g': 1, 's': 'n', 'yb': 940, 'yd': 987, 'f': 'Fulk_II,_Count_of_Anjou', 'm': 'Gerberge (obscure)'},
'Fulk_II,_Count_of_Anjou': {'nm': 'Fulk II, Count of Anjou', 'url': 'Fulk_II,_Count_of_Anjou', 'b': 'c. 905', 'd': 'Tours, 960', 'g': 1, 's': 'n', 'yb': 905, 'yd': 960, 'f': 'Fulk_I_of_Anjou', 'm': 'Roscille de Lochar'},
'Fulk_I_of_Anjou': {'nm': 'Fulk I, Count of Anjou', 'url': 'Fulk_I_of_Anjou', 'b': 'c. 870', 'd': 'Tours, 942', 'g': 1, 's': 'n', 'yb': 870, 'yd': 942, 'f': 'Ingelger', 'm': 'Adelais_of_Amboise'},
'Ingelger': {'nm': 'Ingelger', 'url': 'Ingelger', 'd': '888', 'g': 1, 's': 'n', 'yd': 888, 'f': 'unknown'},
'Adelais_of_Amboise': {'nm': 'Adelais of Amboise', 'url': 'Adelais_of_Amboise', 'b': 'c. 840', 'g': 0, 's': 'n', 'yb': 840, 'f': 'unknown', 'm': 'unknown'},
'Roscille de Lochar': {'nm': 'Roscille de Lochar', 'g': 0},
'Gerberge (obscure)': {'nm': 'Gerberga', 'g': 0},
'Gerberga wife of Fulk II': {'nm': 'Gerberga ', 'url': 'Gerberge', 'b': 'c. 905', 'd': 'c. 960', 'g': 0, 's': 'n', 'yb': 905, 'yd': 960, 'f': 'unknown'},
'Adele_of_Meaux': {'nm': 'Adele of Meaux', 'url': 'Adele_of_Meaux', 'b': 'c. 935', 'd': 'c. 982', 'g': 0, 's': 'n', 'yb': 935, 'yd': 982, 'f': 'Robert_of_Vermandois', 'm': 'Adelaide-Werra de Chalon'},
'Robert_of_Vermandois': {'nm': 'Robert of Vermandois', 'url': 'Robert_of_Vermandois', 'b': 'c. 907', 'd': '/8, c. 967', 'g': 1, 's': 'n', 'yb': 907, 'yd': 967, 'f': 'Herbert_II,_Count_of_Vermandois', 'm': 'Adele of France'},
'Herbert_II,_Count_of_Vermandois': {'nm': 'Herbert II, Count of Vermandois', 'url': 'Herbert_II,_Count_of_Vermandois', 'b': 'c. 880', 'd': 'Saint-Quentin, France, 23 February 943', 'g': 1, 's': 'n', 'yb': 880, 'yd': 943, 'f': 'Herbert_I,_Count_of_Vermandois', 'm': 'Bertha (obscure)'},
'Herbert_I,_Count_of_Vermandois': {'nm': 'Herbert I, Count of Vermandois', 'url': 'Herbert_I,_Count_of_Vermandois', 'g': 1, 's': 'n', 'f': 'Pepin_of_Vermandois'},
'Pepin_of_Vermandois': {'nm': 'Pepin, Count of Vermandois', 'url': 'Pepin_of_Vermandois', 'b': 'c. 817', 'd': 'c. 850', 'g': 1, 's': 'n', 'yb': 817, 'yd': 850, 'f': 'Bernard_of_Italy', 'm': 'Cunigunda of Laon'},
'Bernard_of_Italy': {'nm': 'Bernard of Italy', 'url': 'Bernard_of_Italy', 'b': 'Vermandois, Francia, 797', 'd': 'Aachen, Francia, 17 April 818', 'g': 1, 's': 'n', 'yb': 797, 'yd': 818, 'f': 'Pepin_of_Italy'},
'Pepin_of_Italy': {'nm': 'Pepin of Italy', 'url': 'Pepin_of_Italy', 'b': 'CarlomanApril 777', 'd': '8 July 810', 'g': 1, 's': 'n', 'yb': 777, 'yd': 810, 'f': 'Charlemagne', 'm': 'Hildegard_of_the_Vinzgau'},
'Charlemagne': {'nm': 'Charlemagne', 'url': 'Charlemagne', 'b': 'Lige or Aachen, 2 April 747', 'd': 'Aachen, Francia, 28 January 814', 'g': 1, 's': 'n', 'yb': 747, 'yd': 814, 'f': 'Pepin_the_Short', 'm': 'Bertrada_of_Laon'},
'Pepin_the_Short': {'nm': 'Pepin the Short', 'url': 'Pepin_the_Short', 'b': '714', 'd': 'Saint-Denis, 24 September 768', 'g': 1, 's': 'n', 'yb': 714, 'yd': 768, 'f': 'Charles_Martel', 'm': 'Rotrude_of_Hesbaye'},
'Charles_Martel': {'nm': 'Charles Martel', 'url': 'Charles_Martel', 'b': 'Herstal, Belgium, then known as Austrasia, 23 August 676 or 686, 688 or 690', 'd': 'Quierzy, France, 22 October 741', 'g': 1, 's': 'n', 'yb': 690, 'yd': 741, 'f': 'Pepin_of_Herstal', 'm': 'Alpaida'},
'Pepin_of_Herstal': {'nm': 'Pepin of Herstal', 'url': 'Pepin_of_Herstal', 'b': '635', 'd': 'Jupille, Austrasia, 16 December 714', 'g': 1, 's': 'n', 'yb': 635, 'yd': 714, 'f': 'Ansegisel', 'm': 'Begga'},
'Ansegisel': {'nm': 'Ansegisel', 'url': 'Ansegisel', 'b': 'c. 602 or 610', 'd': 'c. 679 or 662', 'g': 1, 's': 'n', 'yb': 610, 'yd': 662, 'f': 'Arnulf_of_Metz'},
'Arnulf_of_Metz': {'nm': 'Arnulf of Metz', 'url': 'Arnulf_of_Metz', 'b': 'Lay-Saint-Christophe, c. 582', 'd': '/47 Habendum, near Remiremont, 643', 'g': 1, 's': '18 July', 'yb': 582, 'yd': 643, 'f': 'unknown'},
'Begga': {'nm': 'Begga', 'url': 'Begga', 'b': '613', 'd': '17 December 693', 'g': 0, 's': '17 December', 'yb': 613, 'yd': 693, 'f': 'Pepin_of_Landen', 'm': 'Itta_of_Metz'},
'Alpaida': {'nm': 'Alpaida', 'url': 'Alpaida', 'b': 'c. 654', 'd': 'c. 714', 'g': 0, 's': 'n', 'yb': 654, 'yd': 714, 'f': 'unknown'},
'Rotrude_of_Hesbaye': {'nm': 'Rotrude of Hesbaye', 'url': 'Rotrude_of_Hesbaye', 'd': '724', 'g': 0, 's': 'n', 'yd': 724, 'f': 'unknown'},
'Bertrada_of_Laon': {'nm': 'Bertrada of Laon', 'url': 'Bertrada_of_Laon', 'b': 'Laon, between 710 and 727', 'd': 'Choisy-au-Bac, 12 July 783', 'g': 0, 's': 'n', 'yb': 727, 'yd': 783, 'f': 'Charibert_of_Laon'},
'Charibert_of_Laon': {'nm': 'Charibert of Laon', 'url': 'Charibert_of_Laon', 'g': 1, 's': 'n', 'm': 'Bertrada_of_Pr%C3%BCm'},
'Hildegard_of_the_Vinzgau': {'nm': 'Hildegard of the Vinzgau', 'url': 'Hildegard_of_the_Vinzgau', 'b': '754', 'd': 'Thionville, 30 April 783', 'g': 0, 's': '30 April', 'yb': 754, 'yd': 783, 'f': 'Gerold_of_Vinzgau', 'm': 'Emma of Alemannia'},
'Gerold_of_Vinzgau': {'nm': 'Gerold of Vinzgau', 'url': 'Gerold_of_Vinzgau', 'b': '725', 'd': '799', 'g': 1, 's': 'n', 'yb': 725, 'yd': 799, 'f': 'unknown'},
'Emma of Alemannia': {'nm': 'Emma of Alemannia', 'g': 0},
'Cunigunda of Laon': {'nm': 'Cunigunda of Laon', 'g': 0},
'Bertha (obscure)': {'nm': 'Bertha', 'g': 0},
'Adele of France': {'nm': 'Adele of France', 'g': 0},
'Adelaide-Werra de Chalon': {'nm': 'Adelaide-Werra de Chalon', 'g': 0},
'Hildegarde of Sundgau': {'nm': 'Hildegarde of Sundgau', 'g': 0},
'Bertrade_de_Montfort': {'nm': 'Bertrade of Montfort', 'url': 'Bertrade_de_Montfort', 'b': 'c. 1070', 'd': '14 February 1117', 'g': 0, 's': 'n', 'yb': 1070, 'yd': 1117, 'f': 'Simon_I_de_Montfort', 'm': 'Agnes of Evreux'},
'Simon_I_de_Montfort': {'nm': 'Simon I de Montfort', 'url': 'Simon_I_de_Montfort', 'b': "Montfort l'Amaury,Kingdom of France, c. 1025", 'd': '25 September 1087', 'g': 1, 's': 'n', 'yb': 1025, 'yd': 1087, 'f': 'Amaury_I_de_Montfort', 'm': 'Bertrade (obscure)'},
'Amaury_I_de_Montfort': {'nm': 'Amaury I de Montfort', 'url': 'Amaury_I_de_Montfort', 'b': 'before 1010', 'd': 'c. 1053', 'g': 1, 's': 'n', 'yb': 1010, 'yd': 1053, 'f': 'Guillaume_de_Montfort_of_Hainaut'},
'Guillaume_de_Montfort_of_Hainaut': {'nm': 'Guillaume de Montfort of Hainaut', 'url': 'Guillaume_de_Montfort_of_Hainaut', 'b': 'before 990', 'd': 'before 1053', 'g': 1, 's': 'n', 'yb': 990, 'yd': 1053, 'f': 'Amaury,_Count_of_Valenciennes'},
'Amaury,_Count_of_Valenciennes': {'nm': 'Amaury, Count of Valenciennes', 'url': 'Amaury,_Count_of_Valenciennes', 'd': 'after 973', 'g': 1, 's': 'n', 'yd': 973, 'f': 'unknown'},
'Bertrade (obscure)': {'nm': 'Bertrade', 'g': 0},
'Agnes of Evreux': {'nm': 'Agnes of Evreux', 'g': 0},
'Ermengarde,_Countess_of_Maine': {'nm': 'Eremburga of Maine', 'url': 'Ermengarde,_Countess_of_Maine', 'b': 'c. 1096', 'd': '15 January or 12 October 1126', 'g': 0, 's': 'n', 'yb': 1096, 'yd': 1126, 'f': 'Elias_I,_Count_of_Maine', 'm': 'Mathilda of Chteau-du-Loire'},
'Elias_I,_Count_of_Maine': {'nm': 'Elias I, Count of Maine', 'url': 'Elias_I,_Count_of_Maine', 'd': '11 July 1110', 'g': 1, 's': 'n', 'yd': 1110, 'f': 'Jean_de_la_Fl%C3%A8che', 'm': 'Paula of Maine'},
'Jean_de_la_Fl%C3%A8che': {'nm': 'Jean de la Flche', 'url': 'Jean_de_la_Fl%C3%A8che', 'b': 'c. 1030', 'd': 'c. 1097', 'g': 1, 's': 'n', 'yb': 1030, 'yd': 1097, 'f': 'Lancelin I de Beaugency', 'm': 'Adelberg de Maine'},
'Paula of Maine': {'nm': 'Paula of Maine', 'g': 0},
'Mathilda of Chteau-du-Loire': {'nm': 'Mathilda of Chteau-du-Loire', 'g': 0},
'Empress_Matilda': {'nm': 'Empress Matilda', 'url': 'Empress_Matilda', 'b': 'Possibly Winchester or Sutton Courtenay, England, c. 7 February 1102', 'd': 'Rouen, France, 10 September 1167', 'g': 0, 's': 'n', 'yb': 1102, 'yd': 1167, 'f': 'Henry_I,_King_of_England', 'm': 'Matilda_of_Scotland'},
'Henry_I,_King_of_England': {'nm': 'Henry I of England', 'url': 'Henry_I,_King_of_England', 'b': 'Possibly Selby, Yorkshire, England, c. 1068', 'd': 'Saint-Denis-en-Lyons, Normandy, Kingdom of France, 1 December 1135', 'g': 1, 's': 'n', 'yb': 1068, 'yd': 1135, 'f': 'William_the_Conqueror', 'm': 'Matilda_of_Flanders'},
'William_the_Conqueror': {'nm': 'William the Conqueror', 'url': 'William_the_Conqueror', 'b': 'Falaise, Duchy of Normandy, Kingdom of France, about 1028', 'd': 'Priory of Saint Gervase, Rouen, Duchy of Normandy, 9 September 1087', 'g': 1, 's': 'n', 'yb': 1028, 'yd': 1087, 'f': 'Robert_the_Magnificent', 'm': 'Herleva'},
'Robert_the_Magnificent': {'nm': 'Robert I, Duke of Normandy', 'url': 'Robert_the_Magnificent', 'b': 'Normandy, France, 22 June 1000', 'd': 'Nicaea, 3 July 1035', 'g': 1, 's': 'n', 'yb': 1000, 'yd': 1035, 'f': 'Richard_II,_Duke_of_Normandy', 'm': 'Judith_of_Brittany'},
'Richard_II,_Duke_of_Normandy': {'nm': 'Richard II, Duke of Normandy', 'url': 'Richard_II,_Duke_of_Normandy', 'd': 'Normandy, 28 August 1026', 'g': 1, 's': 'n', 'yd': 1026, 'f': 'Richard_I,_Duke_of_Normandy', 'm': 'Gunnor'},
'Richard_I,_Duke_of_Normandy': {'nm': 'Richard I of Normandy', 'url': 'Richard_I,_Duke_of_Normandy', 'b': 'Fcamp, Normandy, France, 28 August 932', 'd': 'Fcamp, Normandy, France, 20 November 996', 'g': 1, 's': 'n', 'yb': 932, 'yd': 996, 'f': 'William_Longsword', 'm': 'Sprota'},
'William_Longsword': {'nm': 'William Longsword', 'url': 'William_Longsword', 'b': 'Bayeux or Rouen, c. 893', 'd': 'Picquigny on the Somme, 17 December 942', 'g': 1, 's': 'n', 'yb': 893, 'yd': 942, 'f': 'Rollo', 'm': 'Poppa_of_Bayeux'},
'Rollo': {'nm': 'Rollo', 'url': 'Rollo', 'b': 'Scandinavia, c. 835/870', 'd': 'Normandy, 928/933', 'g': 1, 's': 'n', 'yb': 870, 'yd': 933, 'f': 'unknown'},
'Poppa_of_Bayeux': {'nm': 'Poppa of Bayeux', 'url': 'Poppa_of_Bayeux', 'b': 'Bayeux, West Francia, c. 880', 'g': 0, 's': 'n', 'yb': 880, 'f': 'Berengar_II_of_Neustria', 'm': 'Adelind, Adela of Vermandois or Cunegundis'},
'Berengar_II_of_Neustria': {'nm': 'Berengar II of Neustria', 'url': 'Berengar_II_of_Neustria', 'g': 1, 's': 'n', 'f': 'unknown'},
'Adelind, Adela of Vermandois or Cunegundis': {'nm': 'Adelind, Adela of Vermandois or Cunegundis', 'g': 0},
'Sprota': {'nm': 'Sprota', 'url': 'Sprota', 'g': 0, 's': 'n', 'f': 'unknown'},
'Gunnor': {'nm': 'Gunnor', 'url': 'Gunnor', 'b': 'Not known, c. 936 - 950', 'd': '-UncertainNormandy, France, c. 1031', 'g': 0, 's': 'n', 'yb': 950, 'yd': 1031, 'f': 'unknown'},
'Judith_of_Brittany': {'nm': 'Judith of Brittany', 'url': 'Judith_of_Brittany', 'b': '982', 'd': '1017', 'g': 0, 's': 'n', 'yb': 982, 'yd': 1017, 'f': 'Conan_I_of_Rennes', 'm': 'Ermengarde_of_Anjou_(952%E2%80%93992)'},
'Conan_I_of_Rennes': {'nm': 'Conan I of Rennes', 'url': 'Conan_I_of_Rennes', 'd': 'Conquereuil, 27 June 992', 'g': 1, 's': 'n', 'yd': 992, 'f': 'Judicael_Berengar'},
'Judicael_Berengar': {'nm': 'Judicael Berengar', 'url': 'Judicael_Berengar', 'g': 1, 's': 'n', 'f': 'unknown'},
'Ermengarde_of_Anjou_(952%E2%80%93992)': {'nm': 'Ermengarde-Gerberga of Anjou', 'url': 'Ermengarde_of_Anjou_(952%E2%80%93992)', 'b': 'c. 956', 'd': 'circa 1024', 'g': 0, 's': 'n', 'yb': 956, 'yd': 1024, 'f': 'Geoffrey_I,_Count_of_Anjou', 'm': 'Adele_of_Meaux'},
'Herleva': {'nm': 'Herleva', 'url': 'Herleva', 'b': 'c. 1003', 'd': 'c. 1050', 'g': 0, 's': 'n', 'yb': 1003, 'yd': 1050, 'f': 'Fulbert_of_Falaise'},
'Matilda_of_Flanders': {'nm': 'Matilda of Flanders', 'url': 'Matilda_of_Flanders', 'b': 'c. 1031', 'd': '2 November 1083', 'g': 0, 's': 'n', 'yb': 1031, 'yd': 1083, 'f': 'Baldwin_V,_Count_of_Flanders', 'm': 'Adela_of_France'},
'Baldwin_V,_Count_of_Flanders': {'nm': 'Baldwin V, Count of Flanders', 'url': 'Baldwin_V,_Count_of_Flanders', 'b': 'Arras, Flanders, 19 August 1012', 'd': 'Lille, Flanders, 1 September 1067', 'g': 1, 's': 'n', 'yb': 1012, 'yd': 1067, 'f': 'Baldwin_IV,_Count_of_Flanders', 'm': 'Ogive of Luxembourg'},
'Ogive of Luxembourg': {'nm': 'Ogive of Luxembourg', 'b': 'c. 993', 'd': '1030', 'g': 0, 's': 'n', 'yb': 993, 'yd': 1030, 'f': 'Frederick_of_Luxembourg'},
'Baldwin_IV,_Count_of_Flanders': {'nm': 'Baldwin IV, Count of Flanders', 'url': 'Baldwin_IV,_Count_of_Flanders', 'b': '980', 'd': '30 May 1035', 'g': 1, 's': 'n', 'yb': 980, 'yd': 1035, 'f': 'Arnulf_II,_Count_of_Flanders', 'm': 'Rozala_of_Italy'},
'Arnulf_II,_Count_of_Flanders': {'nm': 'Arnulf II, Count of Flanders', 'url': 'Arnulf_II,_Count_of_Flanders', 'b': 'c. 961', 'd': 'Ghent, 30 March 987', 'g': 1, 's': 'n', 'yb': 961, 'yd': 987, 'f': 'Baldwin_III_of_Flanders', 'm': 'Matilda_of_Saxony,_countess_of_Flanders'},
'Baldwin_III_of_Flanders': {'nm': 'Baldwin III, Count of Flanders', 'url': 'Baldwin_III_of_Flanders', 'b': 'c. 940', 'd': 'c. 962', 'g': 1, 's': 'n', 'yb': 940, 'yd': 962, 'f': 'Arnulf_I_of_Flanders', 'm': 'Adele_of_Vermandois'},
'Arnulf_I_of_Flanders': {'nm': 'Arnulf I, Count of Flanders', 'url': 'Arnulf_I_of_Flanders', 'b': 'between 893 and 899', 'd': '27 March 964', 'g': 1, 's': 'n', 'yb': 899, 'yd': 964, 'f': 'Baldwin_II,_Count_of_Flanders', 'm': '%C3%86lfthryth,_Countess_of_Flanders'},
'Baldwin_II,_Count_of_Flanders': {'nm': 'Baldwin II, Margrave of Flanders', 'url': 'Baldwin_II,_Count_of_Flanders', 'b': 'c. 865', 'd': 'September 10, 918', 'g': 1, 's': 'n', 'yb': 865, 'yd': 918, 'f': 'Baldwin_I,_Margrave_of_Flanders', 'm': 'Judith_of_Flanders'},
'Baldwin_I,_Margrave_of_Flanders': {'nm': 'Baldwin I, Margrave of Flanders', 'url': 'Baldwin_I,_Margrave_of_Flanders', 'b': 'c. 830', 'd': '879', 'g': 0, 's': 'n', 'yb': 830, 'yd': 879, 'f': 'unknown'},
'Judith_of_Flanders': {'nm': 'Judith of Flanders', 'url': 'Judith_of_Flanders', 'b': 'c. 844', 'd': 'after 870', 'g': 0, 's': 'n', 'yb': 844, 'yd': 870, 'f': 'Charles_the_Bald', 'm': 'Ermentrude_of_Orl%C3%A9ans'},
'Charles_the_Bald': {'nm': 'Charles the Bald', 'url': 'Charles_the_Bald', 'b': 'Frankfurt, 13 June 823', 'd': 'Brides-les-Bains, 6 October 877', 'g': 1, 's': 'n', 'yb': 823, 'yd': 877, 'f': 'Louis_the_Pious', 'm': 'Judith_of_Bavaria_(died_843)'},
'Louis_the_Pious': {'nm': 'Louis the Pious', 'url': 'Louis_the_Pious', 'b': 'Cassinogilum, 16 April 778', 'd': 'Ingelheim, 20 June 840', 'g': 1, 's': 'n', 'yb': 778, 'yd': 840, 'f': 'Charlemagne', 'm': 'Hildegard_of_the_Vinzgau'},
'Judith_of_Bavaria_(died_843)': {'nm': 'Judith of Bavaria (died 843)', 'url': 'Judith_of_Bavaria_(died_843)', 'b': '797', 'd': 'Tours, 19 April 843', 'g': 0, 's': 'n', 'yb': 797, 'yd': 843, 'f': 'Welf_(father_of_Judith)', 'm': 'Hedwig,_Duchess_of_Bavaria'},
'Welf_(father_of_Judith)': {'nm': 'Welf (father of Judith)', 'url': 'Welf_(father_of_Judith)', 'b': 'Hall of Ramida, c. 776', 'd': 'c. 825', 'g': 1, 's': 'n', 'yb': 776, 'yd': 825, 'f': 'unknown'},
'Hedwig,_Duchess_of_Bavaria': {'nm': 'Hedwig of Bavaria', 'url': 'Hedwig,_Duchess_of_Bavaria', 'b': 'Alamannia, c. 778', 'd': 'Bavaria, 19 April 843', 'g': 0, 's': 'n', 'yb': 778, 'yd': 843, 'f': 'Isambart'},
'Isambart': {'nm': 'Isambart', 'url': 'Isambart', 'b': 'c. 750', 'd': 'after 806', 'g': 1, 's': 'n', 'yb': 750, 'yd': 806, 'f': 'Warin I', 'm': 'Adalindis (obscure)'},
'Ermentrude_of_Orl%C3%A9ans': {'nm': 'Ermentrude of Orlans', 'url': 'Ermentrude_of_Orl%C3%A9ans', 'b': '27 September 823', 'd': '6 October 869', 'g': 0, 's': 'n', 'yb': 823, 'yd': 869, 'f': 'Odo_I,_Count_of_Orl%C3%A9ans', 'm': 'Engeltrude_de_F%C3%A9zensac'},
'Odo_I,_Count_of_Orl%C3%A9ans': {'nm': 'Odo I, Count of Orlans', 'url': 'Odo_I,_Count_of_Orl%C3%A9ans', 'd': '25 May 834', 'g': 1, 's': 'n', 'yd': 834, 'f': 'Adrian,_Count_of_Orl%C3%A9ans', 'm': 'Waldrada (obscure)'},
'Adrian,_Count_of_Orl%C3%A9ans': {'nm': 'Adrian, Count of Orlans', 'url': 'Adrian,_Count_of_Orl%C3%A9ans', 'b': 'c. 755', 'd': 'before November 821', 'g': 1, 's': 'n', 'yb': 755, 'yd': 821, 'f': 'Gerold_of_Vinzgau', 'm': 'Emma of Alemannia'},
'Waldrada (obscure)': {'nm': 'Waldrada (obscure)', 'g': 0, 's': 'n', 'f': 'unknown'},
'Engeltrude_de_F%C3%A9zensac': {'nm': 'Engeltrude de Fzensac', 'url': 'Engeltrude_de_F%C3%A9zensac', 'b': 'c. 799', 'd': '853', 'g': 0, 's': 'n', 'yb': 799, 'yd': 853, 'f': 'Leuthard_I_of_Paris', 'm': 'Grimhilda'},
'Leuthard_I_of_Paris': {'nm': 'Leuthard I of Paris', 'url': 'Leuthard_I_of_Paris', 'b': 'before 781', 'd': 'before 28 December 815', 'g': 1, 's': 'n', 'yb': 781, 'yd': 815, 'f': 'Gerard_I_of_Paris', 'm': 'Rotrude'},
'Grimhilda': {'nm': 'Grimhilda', 'g': 0},
'%C3%86lfthryth,_Countess_of_Flanders': {'nm': 'lfthryth, Countess of Flanders', 'url': '%C3%86lfthryth,_Countess_of_Flanders', 'b': 'c. 877', 'd': '7 June 929', 'g': 0, 's': 'n', 'yb': 877, 'yd': 929, 'f': 'Alfred_the_Great', 'm': 'Ealhswith'},
'Alfred_the_Great': {'nm': 'Alfred the Great', 'url': 'Alfred_the_Great', 'b': 'Wantage, Berkshire, 848-849', 'd': '26 October 899', 'g': 1, 's': 'n', 'yb': 849, 'yd': 899, 'f': '%C3%86thelwulf,_King_of_Wessex', 'm': 'Osburh'},
'%C3%86thelwulf,_King_of_Wessex': {'nm': 'thelwulf, King of Wessex', 'url': '%C3%86thelwulf,_King_of_Wessex', 'd': '13 January 858', 'g': 1, 's': 'n', 'yd': 858, 'f': 'Ecgberht,_King_of_Wessex'},
'Ecgberht,_King_of_Wessex': {'nm': 'Ecgberht, King of Wessex', 'url': 'Ecgberht,_King_of_Wessex', 'b': '771 or 775', 'd': '839', 'g': 1, 's': 'n', 'yb': 775, 'yd': 839, 'f': 'Ealhmund,_King_of_Kent'},
'Ealhmund,_King_of_Kent': {'nm': 'Ealhmund of Kent', 'url': 'Ealhmund,_King_of_Kent', 'g': 1, 's': 'n', 'f': 'unknown'},
'Osburh': {'nm': 'Osburh', 'url': 'Osburh', 'g': 0, 's': 'n', 'f': 'Oslac (obscure)'},
'Oslac (obscure)': {'nm': 'Oslac', 'g': 1},
'Ealhswith': {'nm': 'Ealhswith', 'url': 'Ealhswith', 'd': '5 December 902', 'g': 0, 's': 'n', 'yd': 902, 'f': '%C3%86thelred_Mucel', 'm': 'Eadburh'},
'%C3%86thelred_Mucel': {'nm': 'thelred Mucel', 'url': '%C3%86thelred_Mucel', 'g': 1, 's': 'n', 'f': 'unknown'},
'Eadburh': {'nm': 'Eadburh', 'url': 'Eadburh', 'g': 0, 's': 'n', 'f': 'Offa_of_Mercia', 'm': 'Cynethryth'},
'Offa_of_Mercia': {'nm': 'Offa of Mercia', 'url': 'Offa_of_Mercia', 'd': '29 July 796', 'g': 1, 's': 'n', 'yd': 796, 'f': 'unknown'},
'Cynethryth': {'nm': 'Cynethryth', 'url': 'Cynethryth', 'd': 'after 798', 'g': 0, 's': 'n', 'yd': 798, 'f': 'unknown'},
'Adele_of_Vermandois': {'nm': 'Adele of Vermandois', 'url': 'Adele_of_Vermandois', 'b': 'c. 910-915', 'd': 'Bruges, 960', 'g': 0, 's': 'n', 'yb': 915, 'yd': 960, 'f': 'Herbert_II,_Count_of_Vermandois', 'm': 'Adle'},
'Adle': {'nm': 'Adle', 'g': 0},
'Matilda_of_Saxony,_countess_of_Flanders': {'nm': 'Matilda of Saxony, countess of Flanders', 'url': 'Matilda_of_Saxony,_countess_of_Flanders', 'b': 'c. 935-942', 'd': 'Ghent, 25 May 1008', 'g': 0, 's': 'n', 'yb': 942, 'yd': 1008, 'f': 'Hermann_Billung'},
'Hermann_Billung': {'nm': 'Hermann Billung', 'url': 'Hermann_Billung', 'b': 'c. 900/912', 'd': 'Quedlinburg, 27 March 973', 'g': 1, 's': 'n', 'yb': 912, 'yd': 973, 'f': 'Billung von Stubenskorn', 'm': 'Ermengarde of Nantes'},
'Billung von Stubenskorn': {'nm': 'Billung von Stubenskorn', 'g': 1},
'Ermengarde of Nantes': {'nm': 'Ermengarde of Nantes', 'g': 0},
'Rozala_of_Italy': {'nm': 'Rozala of Italy', 'url': 'Rozala_of_Italy', 'b': 'c. 950-960', 'd': 'Ghent, 1003', 'g': 0, 's': 'n', 'yb': 960, 'yd': 1003, 'f': 'Berengar_II_of_Italy', 'm': 'Willa_of_Tuscany'},
'Berengar_II_of_Italy': {'nm': 'Berengar II of Italy', 'url': 'Berengar_II_of_Italy', 'b': 'c. 900', 'd': 'Bamberg Castle,March of the Nordgau,Kingdom of Germany, 4 August 966', 'g': 1, 's': 'n', 'yb': 900, 'yd': 966, 'f': 'Adalbert_I_of_Ivrea', 'm': 'Gisela_of_Friuli'},
'Adalbert_I_of_Ivrea': {'nm': 'Adalbert I of Ivrea', 'url': 'Adalbert_I_of_Ivrea', 'd': 'after 28 February 929', 'g': 1, 's': 'n', 'yd': 929, 'f': 'Anscar_I_of_Ivrea'},
'Gisela_of_Friuli': {'nm': 'Gisela of Friuli', 'url': 'Gisela_of_Friuli', 'b': 'c. 876', 'd': 'after 23 January 913', 'g': 0, 's': 'n', 'yb': 876, 'yd': 913, 'f': 'Berengar_I_of_Italy', 'm': 'Bertila_of_Spoleto'},
'Berengar_I_of_Italy': {'nm': 'Berengar I of Italy', 'url': 'Berengar_I_of_Italy', 'b': 'Cividale, Middle Francia, c. 845', 'd': 'Verona, Kingdom of Italy, 7 April 924', 'g': 1, 's': 'n', 'yb': 845, 'yd': 924, 'f': 'Eberhard_of_Friuli', 'm': 'Gisela,_daughter_of_Louis_the_Pious'},
'Eberhard_of_Friuli': {'nm': 'Eberhard of Friuli', 'url': 'Eberhard_of_Friuli', 'b': 'c. 815', 'd': '16 December 867', 'g': 1, 's': '16 December', 'yb': 815, 'yd': 867, 'f': 'unknown', 'm': 'unknown'},
'Gisela,_daughter_of_Louis_the_Pious': {'nm': 'Gisela, daughter of Louis the Pious', 'url': 'Gisela,_daughter_of_Louis_the_Pious', 'b': '820', 'g': 0, 's': 'n', 'yb': 820, 'f': 'Louis_the_Pious', 'm': 'Judith_of_Bavaria_(died_843)'},
'Bertila_of_Spoleto': {'nm': 'Bertila of Spoleto', 'url': 'Bertila_of_Spoleto', 'b': 'c. 860', 'd': 'before December 915', 'g': 0, 's': 'n', 'yb': 860, 'yd': 915, 'f': 'Suppo_II', 'm': 'Bertha (obscure)'},
'Suppo_II': {'nm': 'Suppo II', 'url': 'Suppo_II', 'b': '835', 'd': '885', 'g': 1, 's': 'n', 'yb': 835, 'yd': 885, 'f': 'Adelchis_I_of_Spoleto', 'm': 'unknown'},
'Willa_of_Tuscany': {'nm': 'Willa of Tuscany', 'url': 'Willa_of_Tuscany', 'b': 'Arles, 911 or 912', 'd': 'Bamberg, 970', 'g': 0, 's': 'n', 'yb': 912, 'yd': 970, 'f': 'Boso,_Margrave_of_Tuscany', 'm': 'Willa_of_Burgundy'},
'Boso,_Margrave_of_Tuscany': {'nm': 'Boso, Margrave of Tuscany', 'url': 'Boso,_Margrave_of_Tuscany', 'b': 'after 881', 'd': 'after 940', 'g': 1, 's': 'n', 'yb': 881, 'yd': 940, 'f': 'Theobald_of_Arles', 'm': 'Bertha,_daughter_of_Lothair_II'},
'Willa_of_Burgundy': {'nm': 'Willa of Burgundy', 'url': 'Willa_of_Burgundy', 'b': 'c. 900', 'd': 'after 936', 'g': 0, 's': 'n', 'yb': 900, 'yd': 936, 'f': 'Rudolph_I_of_Burgundy', 'm': 'Guilla_of_Provence'},
'Rudolph_I_of_Burgundy': {'nm': 'Rudolph I of Burgundy', 'url': 'Rudolph_I_of_Burgundy', 'b': '859', 'd': '25 October 912', 'g': 1, 's': 'n', 'yb': 859, 'yd': 912, 'f': 'Conrad_II_of_Auxerre', 'm': 'Waldrada_of_Worms'},
'Conrad_II_of_Auxerre': {'nm': 'Conrad II, Duke of Transjurane Burgundy', 'url': 'Conrad_II_of_Auxerre', 'b': 'c. 844', 'd': '876', 'g': 1, 's': 'n', 'yb': 844, 'yd': 876, 'f': 'Conrad_I_of_Auxerre', 'm': 'Adelaide_of_Tours'},
'Waldrada_of_Worms': {'nm': 'Waldrada of Worms', 'url': 'Waldrada_of_Worms', 'b': '801', 'g': 0, 's': 'n', 'yb': 801, 'f': 'Adrian,_Count_of_Orl%C3%A9ans', 'm': 'Waldrada, daughter of Adalhelm of Autun'},
'Guilla_of_Provence': {'nm': 'Guilla of Provence', 'url': 'Guilla_of_Provence', 'd': 'before 924', 'g': 0, 's': 'n', 'yd': 924, 'f': 'unknown'},
'Frederick_of_Luxembourg': {'nm': 'Frederick of Luxembourg', 'url': 'Frederick_of_Luxembourg', 'b': 'AD, 965', 'd': '6 October 1019', 'g': 0, 's': 'n', 'yb': 965, 'yd': 1019, 'f': 'Sigfried,_Count_of_the_Ardennes', 'm': 'Hedwig_of_Nordgau'},
'Sigfried,_Count_of_the_Ardennes': {'nm': 'Sigfried, Count of the Ardennes', 'url': 'Sigfried,_Count_of_the_Ardennes', 'b': 'c. 922', 'd': '28 October 998', 'g': 1, 's': 'n', 'yb': 922, 'yd': 998, 'f': 'Wigeric_of_Lotharingia', 'm': 'Cunigunda_of_France'},
'Wigeric_of_Lotharingia': {'nm': 'Wigeric of Lotharingia', 'url': 'Wigeric_of_Lotharingia', 'g': 1, 's': 'n', 'f': 'unknown'},
'Cunigunda_of_France': {'nm': 'Cunigunda of France', 'url': 'Cunigunda_of_France', 'b': '893', 'd': '924', 'g': 0, 's': 'n', 'yb': 893, 'yd': 924, 'f': 'Eberhard of Sulichgau', 'm': 'Ermentrude_of_France'},
'Eberhard of Sulichgau': {'nm': 'Eberhard of Sulichgau', 'g': 1, 'f': 'Unruoch_III'},
'Hedwig_of_Nordgau': {'nm': 'Hedwig of Nordgau', 'url': 'Hedwig_of_Nordgau', 'b': 'c. 922', 'd': 'after 993', 'g': 0, 's': 'n', 'yb': 922, 'yd': 993, 'f': 'unknown'},
'Adela_of_France': {'nm': 'Adela of France', 'url': 'Adela_of_France', 'b': '1009', 'd': 'Messines, 8 January 1079', 'g': 0, 's': 'n', 'yb': 1009, 'yd': 1079, 'f': 'Robert_II_of_France', 'm': 'Constance_of_Arles'},
'Robert_II_of_France': {'nm': 'Robert II of France', 'url': 'Robert_II_of_France', 'b': 'Orlans, France, c. 972', 'd': 'Melun, France, 20 July 1031', 'g': 1, 's': 'n', 'yb': 972, 'yd': 1031, 'f': 'Hugh_Capet', 'm': 'Adelaide_of_Aquitaine'},
'Hugh_Capet': {'nm': 'Hugh Capet', 'url': 'Hugh_Capet', 'b': 'Paris, West Francia, 939', 'd': 'Paris, France, 14 October 996', 'g': 1, 's': 'n', 'yb': 939, 'yd': 996, 'f': 'Hugh_the_Great', 'm': 'Hedwig_of_Saxony'},
'Hugh_the_Great': {'nm': 'Hugh the Great', 'url': 'Hugh_the_Great', 'b': 'Paris, c. 898', 'd': 'Dourdan, 16 June 956', 'g': 1, 's': 'n', 'yb': 898, 'yd': 956, 'f': 'Robert_I_of_France', 'm': 'B%C3%A9atrice_of_Vermandois'},
'Robert_I_of_France': {'nm': 'Robert I of France', 'url': 'Robert_I_of_France', 'b': '15 August 866', 'd': 'Soissons, France, 15 June 923', 'g': 1, 's': 'n', 'yb': 866, 'yd': 923, 'f': 'Robert_the_Strong', 'm': 'Adelaide_of_Tours'},
'Robert_the_Strong': {'nm': 'Robert the Strong', 'url': 'Robert_the_Strong', 'b': 'c. 830', 'd': '2 July 866', 'g': 1, 's': 'n', 'yb': 830, 'yd': 866, 'f': 'Robert_III_of_Worms'},
'Robert_III_of_Worms': {'nm': 'Robert III, Count of Worms', 'url': 'Robert_III_of_Worms', 'b': '800', 'd': '834', 'g': 1, 's': 'n', 'yb': 800, 'yd': 834, 'f': 'Robert_II,_Count_of_Hesbaye'},
'Robert_II,_Count_of_Hesbaye': {'nm': 'Robert II, Count of Hesbaye', 'url': 'Robert_II,_Count_of_Hesbaye', 'd': '12 July 807', 'g': 1, 's': 'n', 'yd': 807, 'f': 'unknown'},
'Adelaide_of_Tours': {'nm': 'Adelaide of Tours', 'url': 'Adelaide_of_Tours', 'b': 'c. 820', 'd': 'c. 866', 'g': 0, 's': 'n', 'yb': 820, 'yd': 866, 'f': 'Hugh_of_Tours', 'm': 'Ava (obscure)'},
'Hugh_of_Tours': {'nm': 'Hugh of Tours', 'url': 'Hugh_of_Tours', 'b': 'c. 780', 'd': 'Italy, 837', 'g': 1, 's': 'n', 'yb': 780, 'yd': 837, 'f': 'unknown'},
'Ava (obscure)': {'nm': 'Ava', 'g': 0},
'B%C3%A9atrice_of_Vermandois': {'nm': 'Beatrice of Vermandois', 'url': 'B%C3%A9atrice_of_Vermandois', 'b': 'c.880', 'd': 'after 26 March 931', 'g': 0, 's': 'n', 'yb': 880, 'yd': 931, 'f': 'Herbert_I,_Count_of_Vermandois'},
'Hedwig_of_Saxony': {'nm': 'Hedwig of Saxony', 'url': 'Hedwig_of_Saxony', 'b': 'c. 910', 'd': 'after 958', 'g': 0, 's': 'n', 'yb': 910, 'yd': 958, 'f': 'Henry_the_Fowler', 'm': 'Matilda_of_Ringelheim'},
'Henry_the_Fowler': {'nm': 'Henry the Fowler', 'url': 'Henry_the_Fowler', 'b': 'Mimileba, East Francia, c. July 7, 876', 'd': 'Mimileba, East Francia, 2 July 936', 'g': 1, 's': 'n', 'yb': 876, 'yd': 936, 'f': 'Otto_I,_Duke_of_Saxony', 'm': 'Hedwig_of_Babenberg'},
'Otto_I,_Duke_of_Saxony': {'nm': 'Otto I, Duke of Saxony', 'url': 'Otto_I,_Duke_of_Saxony', 'b': '/40, c. 830', 'd': 'Wallhausen, Saxony, 30 November 912', 'g': 1, 's': 'n', 'yb': 830, 'yd': 912, 'f': 'Liudolf,_Duke_of_Saxony', 'm': 'Oda of Billung'},
'Liudolf,_Duke_of_Saxony': {'nm': 'Liudolf, Duke of Saxony', 'url': 'Liudolf,_Duke_of_Saxony', 'b': 'c. 805/820', 'd': '11/12 March 866', 'g': 1, 's': 'n', 'yb': 820, 'yd': 866, 'f': 'Bruno (obscure)', 'm': 'Gisela (obscure)'},
'Bruno (obscure)': {'nm': 'Bruno', 'g': 1},
'Gisela (obscure)': {'nm': 'Gisela', 'g': 0},
'Oda of Billung': {'nm': 'Oda of Billung', 'g': 0},
'Hedwig_of_Babenberg': {'nm': 'Hedwig of Babenberg', 'url': 'Hedwig_of_Babenberg', 'd': '24 December 903', 'g': 0, 's': 'n', 'yd': 903, 'f': 'Henry_of_Franconia', 'm': 'Ingeltrude'},
'Henry_of_Franconia': {'nm': 'Henry, Margrave of the Franks', 'url': 'Henry_of_Franconia', 'd': '28 August 886', 'g': 1, 's': 'n', 'yd': 886, 'f': 'unknown'},
'Ingeltrude wife of Henry': {'nm': 'Ingeltrude', 'g': 0},
'Matilda_of_Ringelheim': {'nm': 'Matilda of Ringelheim', 'url': 'Matilda_of_Ringelheim', 'b': 'Enger, Saxony,East Francia, c. 892', 'd': 'Quedlinburg, Saxony,Holy Roman Empire, 14 March 968', 'g': 0, 's': '14 March', 'yb': 892, 'yd': 968, 'f': 'Dietrich_of_Ringelheim', 'm': 'Reinhild'},
'Adelaide_of_Aquitaine': {'nm': 'Adelaide of Aquitaine', 'url': 'Adelaide_of_Aquitaine', 'b': 'c. 945/952', 'd': '1004', 'g': 0, 's': 'n', 'yb': 952, 'yd': 1004, 'f': 'William_III_of_Aquitaine', 'm': 'Gerloc'},
'William_III_of_Aquitaine': {'nm': 'William III, Duke of Aquitaine', 'url': 'William_III_of_Aquitaine', 'b': 'Poitiers, 913', 'd': "Saint-Maixent-l'cole, 3 April 963", 'g': 1, 's': 'n', 'yb': 913, 'yd': 963, 'f': 'Ebalus_of_Aquitaine', 'm': 'Emilienne'},
'Ebalus_of_Aquitaine': {'nm': 'Ebalus, Duke of Aquitaine', 'url': 'Ebalus_of_Aquitaine', 'b': 'c. 870', 'd': '935', 'g': 1, 's': 'n', 'yb': 870, 'yd': 935, 'f': 'Ranulf_II_of_Aquitaine', 'm': 'unknown'},
'Ranulf_II_of_Aquitaine': {'nm': 'Ranulf II of Aquitaine', 'url': 'Ranulf_II_of_Aquitaine', 'b': 'c. 850', 'd': '5 August 890', 'g': 1, 's': 'n', 'yb': 850, 'yd': 890, 'f': 'Ranulf_I_of_Aquitaine', 'm': 'Rorgon_I,_Count_of_Maine'},
'Emilienne': {'nm': 'Emilienne', 'g': 0},
'Gerloc': {'nm': 'Gerloc', 'url': 'Gerloc', 'b': '912', 'd': '14 October 962', 'g': 0, 's': 'n', 'yb': 912, 'yd': 962, 'f': 'Rollo', 'm': 'Poppa_of_Bayeux'},
'Constance_of_Arles': {'nm': 'Constance of Arles', 'url': 'Constance_of_Arles', 'b': 'Arles, France, c. 986', 'd': 'Melun, France, 28 July 1032', 'g': 0, 's': 'n', 'yb': 986, 'yd': 1032, 'f': 'William_I_of_Provence', 'm': 'Adelaide-Blanche_of_Anjou'},
'William_I_of_Provence': {'nm': 'William I "the Liberator" of Provence', 'url': 'William_I_of_Provence', 'b': 'c. 950', 'd': 'after 29 August 993', 'g': 1, 's': 'n', 'yb': 950, 'yd': 993, 'f': 'Boson_II_of_Arles', 'm': 'Constance (obscure)'},
'Adelaide-Blanche_of_Anjou': {'nm': 'Adelaide-Blanche of Anjou', 'url': 'Adelaide-Blanche_of_Anjou', 'b': 'c. 940', 'd': 'Avignon, 1026', 'g': 0, 's': 'n', 'yb': 940, 'yd': 1026, 'f': 'Fulk_II,_Count_of_Anjou', 'm': 'Gerberga wife of Fulk II'},
'Matilda_of_Scotland': {'nm': 'Matilda of Scotland', 'url': 'Matilda_of_Scotland', 'b': 'Dunfermline, Kingdom of Scotland, 1080', 'd': 'Westminster Palace, London, England, 1 May 1118', 'g': 0, 's': 'Venerated by her subjects but never canonized', 'yb': 1080, 'yd': 1118, 'f': 'Malcolm_III_of_Scotland', 'm': 'Margaret_of_Wessex'},
'Malcolm_III_of_Scotland': {'nm': 'Malcolm III of Scotland', 'url': 'Malcolm_III_of_Scotland', 'b': 'Kingdom of Scotland', 'd': 'Alnmouth, Northumberland, England, 13 November 1093', 'g': 1, 's': 'n', 'yd': 1093, 'f': 'Duncan_I_of_Scotland', 'm': 'Suthen'},
'Duncan_I_of_Scotland': {'nm': 'Duncan I of Scotland', 'url': 'Duncan_I_of_Scotland', 'b': 'Atholl, 15 August 1001', 'd': 'Pitgaveny, near Elgin, 14 August 1040', 'g': 1, 's': 'n', 'yb': 1001, 'yd': 1040, 'f': 'Cr%C3%ADn%C3%A1n_of_Dunkeld', 'm': 'Beth%C3%B3c'},
'Cr%C3%ADn%C3%A1n_of_Dunkeld': {'nm': 'Crnn of Dunkeld', 'url': 'Cr%C3%ADn%C3%A1n_of_Dunkeld', 'd': '1045', 'g': 1, 's': 'n', 'yd': 1045, 'f': 'unknown'},
'Beth%C3%B3c': {'nm': 'Bethc', 'url': 'Beth%C3%B3c', 'g': 0, 's': 'n', 'f': 'Malcolm_II_of_Scotland'},
'Malcolm_II_of_Scotland': {'nm': 'Malcolm II of Scotland', 'url': 'Malcolm_II_of_Scotland', 'b': 'c. 954', 'd': 'Glamis, Scotland, 25 November 1034', 'g': 1, 's': 'n', 'yb': 954, 'yd': 1034, 'f': 'Kenneth_II_of_Scotland'},
'Kenneth_II_of_Scotland': {'nm': 'Kenneth II of Scotland', 'url': 'Kenneth_II_of_Scotland', 'd': 'Fettercairn, 995', 'g': 1, 's': 'n', 'yd': 995, 'f': 'Malcolm_I'},
'Malcolm_I': {'nm': 'Malcolm I of Scotland', 'url': 'Malcolm_I', 'b': 'no later than 900', 'd': 'Scotland, 954', 'g': 1, 's': 'n', 'yb': 900, 'yd': 954, 'f': 'Donald_II'},
'Donald_II': {'nm': 'Donald II of Scotland', 'url': 'Donald_II', 'd': 'Forres or Dunnottar, 900', 'g': 1, 's': 'n', 'yd': 900, 'f': 'Causant%C3%ADn_mac_Cin%C3%A1eda'},
'Causant%C3%ADn_mac_Cin%C3%A1eda': {'nm': 'Causantn mac Cineda', 'url': 'Causant%C3%ADn_mac_Cin%C3%A1eda', 'b': 'c. 836', 'd': 'possibly Fife, Scotland, 877', 'g': 1, 's': 'n', 'yb': 836, 'yd': 877, 'f': 'Kenneth_MacAlpin'},
'Kenneth_MacAlpin': {'nm': 'Kenneth MacAlpin', 'url': 'Kenneth_MacAlpin', 'b': 'Iona, 810', 'd': 'Forteviot, Perthshire, Scotland, February 13, 858', 'g': 1, 's': 'n', 'yb': 810, 'yd': 858, 'f': 'Alp%C3%ADn_mac_Echdach'},
'Suthen': {'nm': 'Suthen', 'g': 0},
'Margaret_of_Wessex': {'nm': 'Saint Margaret of Scotland', 'url': 'Margaret_of_Wessex', 'b': 'Kingdom of Hungary, c. 1045', 'd': 'Edinburgh Castle, Edinburgh, Kingdom of Scotland, 16 November 1093', 'g': 0, 's': '16 November or 10 June', 'yb': 1045, 'yd': 1093, 'f': 'Edward_the_Exile', 'm': 'Agatha,_wife_of_Edward_the_Exile'},
'Edward_the_Exile': {'nm': 'Edward the Exile', 'url': 'Edward_the_Exile', 'b': '1016', 'd': 'England, 19 April 1057', 'g': 1, 's': 'n', 'yb': 1016, 'yd': 1057, 'f': 'Edmund_Ironside', 'm': 'Ealdgyth_(floruit_1015%E2%80%931016)'},
'Edmund_Ironside': {'nm': 'Edmund Ironside', 'url': 'Edmund_Ironside', 'b': 'England, c. 990', 'd': 'Oxford or London, England, 30 November 1016', 'g': 1, 's': 'n', 'yb': 990, 'yd': 1016, 'f': '%C3%86thelred_the_Unready', 'm': '%C3%86lfgifu_of_York'},
'%C3%86thelred_the_Unready': {'nm': 'thelred the Unready', 'url': '%C3%86thelred_the_Unready', 'b': 'England, c. 966', 'd': 'London, England, 23 April 1016', 'g': 1, 's': 'n', 'yb': 966, 'yd': 1016, 'f': 'Edgar_the_Peaceful,_King_of_the_English', 'm': '%C3%86lfthryth,_wife_of_Edgar'},
'Edgar_the_Peaceful,_King_of_the_English': {'nm': 'Edgar the Peaceful', 'url': 'Edgar_the_Peaceful,_King_of_the_English', 'b': 'England, 943 or 944', 'd': 'Winchester, Hampshire, England, 8 July 975', 'g': 1, 's': 'July 8', 'yb': 944, 'yd': 975, 'f': 'Edmund_I,_King_of_the_English', 'm': '%C3%86lfgifu_of_Shaftesbury'},
'Edmund_I,_King_of_the_English': {'nm': 'Edmund I', 'url': 'Edmund_I,_King_of_the_English', 'b': '920/921', 'd': 'Pucklechurch, Gloucestershire, England, 26 May 946', 'g': 1, 's': 'n', 'yb': 921, 'yd': 946, 'f': 'Edward_the_Elder', 'm': 'Eadgifu_of_Kent'},
'Edward_the_Elder': {'nm': 'Edward the Elder', 'url': 'Edward_the_Elder', 'b': 'c. 874', 'd': 'Farndon, Cheshire, Mercia, 17 July 924', 'g': 1, 's': 'n', 'yb': 874, 'yd': 924, 'f': 'Alfred_the_Great', 'm': 'Ealhswith'},
'Eadgifu_of_Kent': {'nm': 'Eadgifu of Kent', 'url': 'Eadgifu_of_Kent', 'g': 0, 's': 'n', 'f': 'Sigehelm'},
'Sigehelm': {'nm': 'Sigehelm', 'url': 'Sigehelm', 'd': 'between 932 and 934', 'g': 1, 's': 'n', 'yd': 934, 'f': 'unknown'},
'%C3%86lfgifu_of_Shaftesbury': {'nm': 'lfgifu of Shaftesbury', 'url': '%C3%86lfgifu_of_Shaftesbury', 'd': 'c. 944', 'g': 0, 's': '18 May', 'yd': 944, 'f': 'unknown', 'm': 'Wynflaed'},
'Wynflaed': {'nm': 'Wynflaed', 'url': 'Wynflaed', 'g': 0, 's': 'n', 'f': 'unknown'},
'%C3%86lfthryth,_wife_of_Edgar': {'nm': 'lfthryth (wife of Edgar)', 'url': '%C3%86lfthryth,_wife_of_Edgar', 'b': 'c. 945', 'd': '17 November 1000 or 1001', 'g': 0, 's': 'n', 'yb': 945, 'yd': 1001, 'f': 'Ordgar,_Ealdorman_of_Devon'},
'Ordgar,_Ealdorman_of_Devon': {'nm': 'Ordgar', 'url': 'Ordgar,_Ealdorman_of_Devon', 'g': 1, 's': 'n', 'f': 'unknown'},
'%C3%86lfgifu_of_York': {'nm': 'lfgifu of York', 'url': '%C3%86lfgifu_of_York', 'b': 'fl. c. 970', 'd': 'c. 1002', 'g': 0, 's': 'n', 'yb': 970, 'yd': 1002, 'f': 'Thored'},
'Thored': {'nm': 'Thored', 'url': 'Thored', 'b': 'unknown, c. 938', 'd': '992 or 994', 'g': 1, 's': 'n', 'yb': 938, 'yd': 994, 'f': 'Oslac_of_York', 'm': 'unknown'},
'Oslac_of_York': {'nm': 'Oslac of York', 'url': 'Oslac_of_York', 'b': 'before 966', 'd': 'after 975', 'g': 1, 's': 'n', 'yb': 966, 'yd': 975, 'f': 'unknown'},
'Ealdgyth_(floruit_1015%E2%80%931016)': {'nm': 'Ealdgyth (wife of Edmund Ironside)', 'url': 'Ealdgyth_(floruit_1015%E2%80%931016)', 'b': 'c. 992', 'd': 'After 1016', 'g': 0, 's': 'n', 'yb': 992, 'yd': 1016, 'f': 'unknown'},
'Agatha,_wife_of_Edward_the_Exile': {'nm': 'Agatha (wife of Edward the Exile)', 'url': 'Agatha,_wife_of_Edward_the_Exile', 'b': 'before 1030', 'd': 'England, after 1070', 'g': 0, 's': 'n', 'yb': 1030, 'yd': 1070, 'f': 'unknown'},
'Eleanor,_Duchess_of_Aquitaine': {'nm': 'Eleanor of Aquitaine', 'url': 'Eleanor,_Duchess_of_Aquitaine', 'b': 'Poitiers, c. 1122', 'd': 'Poitiers, 1 April 1204', 'g': 0, 's': 'n', 'yb': 1122, 'yd': 1204, 'f': 'William_X,_Duke_of_Aquitaine', 'm': 'A%C3%A9nor_de_Ch%C3%A2tellerault'},
'William_X,_Duke_of_Aquitaine': {'nm': 'William X, Duke of Aquitaine', 'url': 'William_X,_Duke_of_Aquitaine', 'b': 'Toulouse, 1099', 'd': 'Santiago de Compostela, Spain, 9 April 1137', 'g': 1, 's': 'n', 'yb': 1099, 'yd': 1137, 'f': 'William_IX,_Duke_of_Aquitaine', 'm': 'Philippa,_Countess_of_Toulouse'},
'William_IX,_Duke_of_Aquitaine': {'nm': 'William IX, Duke of Aquitaine', 'url': 'William_IX,_Duke_of_Aquitaine', 'b': '22 October 1071', 'd': '10 February 1127', 'g': 1, 's': 'n', 'yb': 1071, 'yd': 1127, 'f': 'William_VIII_of_Aquitaine', 'm': 'Hildegarde_of_Burgundy'},
'William_VIII_of_Aquitaine': {'nm': 'William VIII, Duke of Aquitaine', 'url': 'William_VIII_of_Aquitaine', 'b': 'c. 1025', 'd': 'Chiz, 25 September 1086', 'g': 1, 's': 'n', 'yb': 1025, 'yd': 1086, 'f': 'William_V,_Duke_of_Aquitaine', 'm': 'Agnes_of_Burgundy,_Duchess_of_Aquitaine'},
'William_V,_Duke_of_Aquitaine': {'nm': 'William V, Duke of Aquitaine', 'url': 'William_V,_Duke_of_Aquitaine', 'b': '969', 'd': '31 January 1030', 'g': 1, 's': 'n', 'yb': 969, 'yd': 1030, 'f': 'William_IV_of_Aquitaine', 'm': 'Emma_of_Blois'},
'William_IV_of_Aquitaine': {'nm': 'William IV, Duke of Aquitaine', 'url': 'William_IV_of_Aquitaine', 'b': '937', 'd': '3 February 994', 'g': 1, 's': 'n', 'yb': 937, 'yd': 994, 'f': 'William_III_of_Aquitaine', 'm': 'Gerloc'},
'Emma_of_Blois': {'nm': 'Emma of Blois', 'url': 'Emma_of_Blois', 'b': 'c. 950', 'd': '27 December 1003', 'g': 0, 's': 'n', 'yb': 950, 'yd': 1003, 'f': 'Theobald_I,_Count_of_Blois', 'm': 'Luitgarde_of_Vermandois'},
'Theobald_I,_Count_of_Blois': {'nm': 'Theobald I, Count of Blois', 'url': 'Theobald_I,_Count_of_Blois', 'b': '913', 'd': '975', 'g': 1, 's': 'n', 'yb': 913, 'yd': 975, 'f': 'Theobald_the_Elder', 'm': 'Richende De Bourges'},
'Theobald_the_Elder': {'nm': 'Theobald the Elder', 'url': 'Theobald_the_Elder', 'b': 'France, c.890', 'd': 'France, c.940', 'g': 1, 's': 'n', 'yb': 890, 'yd': 940, 'f': 'unknown'},
'Richende De Bourges': {'nm': 'Richende De Bourges', 'g': 0},
'Luitgarde_of_Vermandois': {'nm': 'Luitgarde of Vermandois', 'url': 'Luitgarde_of_Vermandois', 'b': 'c. 914', 'd': '9 February 978', 'g': 0, 's': 'n', 'yb': 914, 'yd': 978, 'f': 'Herbert_II,_Count_of_Vermandois', 'm': 'Adele of France'},
'Agnes_of_Burgundy,_Duchess_of_Aquitaine': {'nm': 'Agnes of Burgundy, Duchess of Aquitaine', 'url': 'Agnes_of_Burgundy,_Duchess_of_Aquitaine', 'b': 'Burgundy', 'd': 'Abbey of St. Nicolas de Poitiers, 10 November 1068', 'g': 0, 's': 'n', 'yd': 1068, 'f': 'Otto-William,_Count_of_Burgundy', 'm': 'Ermentrude_de_Roucy'},
'Otto-William,_Count_of_Burgundy': {'nm': 'Otto-William, Count of Burgundy', 'url': 'Otto-William,_Count_of_Burgundy', 'b': 'c. 958', 'd': '21 September 1026', 'g': 1, 's': 'n', 'yb': 958, 'yd': 1026, 'f': 'Adalbert_of_Ivrea', 'm': 'Gerberga,_mother_of_Otto-William'},
'Adalbert_of_Ivrea': {'nm': 'Adalbert of Italy', 'url': 'Adalbert_of_Ivrea', 'b': 'c. 932/936', 'd': 'Autun, Burgundy, c. 971/975', 'g': 1, 's': 'n', 'yb': 936, 'yd': 975, 'f': 'Berengar_II_of_Italy', 'm': 'Willa_of_Tuscany'},
'Gerberga,_mother_of_Otto-William': {'nm': 'Gerberga, mother of Otto-William', 'url': 'Gerberga,_mother_of_Otto-William', 'b': 'c. 947', 'd': '/91, 986', 'g': 0, 's': 'n', 'yb': 947, 'yd': 986, 'f': 'Lambert_of_Chalon', 'm': 'Adelaide (obscure)'},
'Lambert_of_Chalon': {'nm': 'Lambert of Chalon', 'url': 'Lambert_of_Chalon', 'b': 'before 930', 'd': '22 February 978', 'g': 1, 's': 'n', 'yb': 930, 'yd': 978, 'f': 'Robert of Dijon', 'm': 'Ingeltrude wife of Robert'},
'Ingeltrude wife of Robert': {'nm': 'Ingeltrude', 'g': 0},
'Adelaide (obscure)': {'nm': 'Adelaide', 'g': 0},
'Ermentrude_de_Roucy': {'nm': 'Ermentrude de Roucy', 'url': 'Ermentrude_de_Roucy', 'g': 0, 's': 'n', 'f': 'Renaud_of_Roucy', 'm': 'Alberade of Lorraine'},
'Renaud_of_Roucy': {'nm': 'Renaud of Roucy', 'url': 'Renaud_of_Roucy', 'b': 'c. 920', 'd': '10 May 967', 'g': 1, 's': 'n', 'yb': 920, 'yd': 967, 'f': 'unknown'},
'Alberade of Lorraine': {'nm': 'Alberade of Lorraine', 'g': 0},
'Hildegarde_of_Burgundy': {'nm': 'Hildegarde of Burgundy', 'url': 'Hildegarde_of_Burgundy', 'g': 0, 's': 'n', 'f': 'unknown'},
'Philippa,_Countess_of_Toulouse': {'nm': 'Philippa, Countess of Toulouse', 'url': 'Philippa,_Countess_of_Toulouse', 'b': 'c. 1073', 'd': 'Abbey of Fontevrault, 28 November 1118', 'g': 0, 's': 'n', 'yb': 1073, 'yd': 1118, 'f': 'William_IV,_Count_of_Toulouse', 'm': 'Emma of Mortain'},
'William_IV,_Count_of_Toulouse': {'nm': 'William IV, Count of Toulouse', 'url': 'William_IV,_Count_of_Toulouse', 'b': 'c. 1040', 'd': '1094', 'g': 1, 's': 'n', 'yb': 1040, 'yd': 1094, 'f': 'Pons_of_Toulouse', 'm': 'Almodis_of_La_Marche'},
'Pons_of_Toulouse': {'nm': 'Pons, Count of Toulouse', 'url': 'Pons_of_Toulouse', 'b': '991', 'd': 'Toulouse, 1060', 'g': 1, 's': 'n', 'yb': 991, 'yd': 1060, 'f': 'William_III_of_Toulouse', 'm': 'Emma_of_Provence'},
'William_III_of_Toulouse': {'nm': 'William III, Count of Toulouse', 'url': 'William_III_of_Toulouse', 'b': 'c. 970', 'd': 'September 1037', 'g': 1, 's': 'n', 'yb': 970, 'yd': 1037, 'f': 'Raymond_III,_Count_of_Toulouse', 'm': 'Adelaide-Blanche_of_Anjou'},
'Raymond_III,_Count_of_Toulouse': {'nm': 'Raymond III, Count of Toulouse', 'url': 'Raymond_III,_Count_of_Toulouse', 'g': 1, 's': 'n', 'f': 'unknown'},
'Emma_of_Provence': {'nm': 'Emma of Provence', 'url': 'Emma_of_Provence', 'b': 'c. 975', 'd': '1062', 'g': 0, 's': 'n', 'yb': 975, 'yd': 1062, 'f': 'Rotbold_II,_Count_of_Provence', 'm': 'Ermengarde_of_Burgundy'},
'Rotbold_II,_Count_of_Provence': {'nm': 'Rotbold II, Count of Provence', 'url': 'Rotbold_II,_Count_of_Provence', 'd': '1014 or 1015', 'g': 1, 's': 'n', 'yd': 1015, 'f': 'Rotbold_I_of_Provence', 'm': 'Emilde of Gvaudan'},
'Rotbold_I_of_Provence': {'nm': 'Rotbold I, Count of Provence', 'url': 'Rotbold_I_of_Provence', 'd': '1008', 'g': 1, 's': 'n', 'yd': 1008, 'f': 'Boson_II_of_Arles', 'm': 'Constance of Vienne'},
'Boson_II_of_Arles': {'nm': 'Boso II of Arles', 'url': 'Boson_II_of_Arles', 'b': '928', 'd': '967', 'g': 1, 's': 'n', 'yb': 928, 'yd': 967, 'f': 'Rotbald of Agel'},
'Rotbald of Agel': {'nm': 'Rotbald of Agel', 'g': 1},
'Constance of Vienne': {'nm': 'Constance of Vienne', 'g': 0},
'Emilde of Gvaudan': {'nm': 'Emilde of Gvaudan', 'g': 0},
'Ermengarde_of_Burgundy': {'nm': 'Ermengarde of Burgundy', 'url': 'Ermengarde_of_Burgundy', 'b': 'c. 990', 'd': 'after September 20, 1057', 'g': 0, 's': 'n', 'yb': 990, 'yd': 1057, 'f': 'unknown'},
'Almodis_of_La_Marche': {'nm': 'Almodis of La Marche', 'url': 'Almodis_of_La_Marche', 'b': 'c. 1020', 'd': '1071', 'g': 0, 's': 'n', 'yb': 1020, 'yd': 1071, 'f': 'Bernard I, Count of Marche', 'm': 'Amlie'},
'Bernard I, Count of Marche': {'nm': 'Bernard I, Count of Marche', 'g': 1},
'Amlie': {'nm': 'Amlie', 'g': 0},
'Emma of Mortain': {'nm': 'Emma of Mortain', 'g': 0},
'A%C3%A9nor_de_Ch%C3%A2tellerault': {'nm': 'Anor de Chtellerault', 'url': 'A%C3%A9nor_de_Ch%C3%A2tellerault', 'b': 'Chtellerault, c. 1103', 'd': 'Talmont, March 1130', 'g': 0, 's': 'n', 'yb': 1103, 'yd': 1130, 'f': 'Aimery_I,_Viscount_of_Ch%C3%A2tellerault', 'm': 'Dangereuse_de_L%27Isle_Bouchard'},
'Aimery_I,_Viscount_of_Ch%C3%A2tellerault': {'nm': 'Aimery I, Viscount of Chtellerault', 'url': 'Aimery_I,_Viscount_of_Ch%C3%A2tellerault', 'b': 'c. 1075', 'd': 'Notre-Dame de Noyers monastery, in Noutre, 7 November 1151', 'g': 1, 's': 'n', 'yb': 1075, 'yd': 1151, 'f': 'Boson II de Chtellerault', 'm': 'Aleanor de Thouars'},
'Boson II de Chtellerault': {'nm': 'Boson II de Chtellerault', 'g': 1},
'Aleanor de Thouars': {'nm': 'Aleanor de Thouars', 'g': 0},
'Dangereuse_de_L%27Isle_Bouchard': {'nm': "Dangereuse de l'Isle Bouchard", 'url': 'Dangereuse_de_L%27Isle_Bouchard', 'b': '1079', 'd': '1151', 'g': 0, 's': 'n', 'yb': 1079, 'yd': 1151, 'f': "Bartholomew de l'Isle Bouchard", 'm': 'Gerberge de Blaison'},
"Bartholomew de l'Isle Bouchard": {'nm': "Bartholomew de l'Isle Bouchard", 'g': 1},
'Gerberge de Blaison': {'nm': 'Gerberge de Blaison', 'g': 0},
'Isabella_of_Angoul%C3%AAme': {'nm': 'Isabella of Angoulme', 'url': 'Isabella_of_Angoul%C3%AAme', 'b': 'c. 1186/c. 1188', 'd': 'Fontevraud Abbey, France, 4 June 1246', 'g': 0, 's': 'n', 'yb': 1188, 'yd': 1246, 'f': 'Aymer,_Count_of_Angoul%C3%AAme', 'm': 'Alice_of_Courtenay'},
'Aymer,_Count_of_Angoul%C3%AAme': {'nm': 'Aymer, Count of Angoulme', 'url': 'Aymer,_Count_of_Angoul%C3%AAme', 'b': 'c. 1160', 'd': '16 June 1202', 'g': 1, 's': 'n', 'yb': 1160, 'yd': 1202, 'f': 'William_VI_of_Angoul%C3%AAme', 'm': 'Marguerite de Turenne'},
'Alice_of_Courtenay': {'nm': 'Alice of Courtenay', 'url': 'Alice_of_Courtenay', 'b': 'France, 1160', 'd': '12 February 1218', 'g': 0, 's': 'n', 'yb': 1160, 'yd': 1218, 'f': 'Peter_I_of_Courtenay', 'm': 'Elisabeth of Courtenay'},
'Peter_I_of_Courtenay': {'nm': 'Peter I of Courtenay', 'url': 'Peter_I_of_Courtenay', 'b': 'Reims, c.September 1126', 'd': 'Acre, Palestine, 10 April 1183', 'g': 1, 's': 'n', 'yb': 1126, 'yd': 1183, 'f': 'Louis_VI_of_France', 'm': 'Adelaide_of_Maurienne'},
'Louis_VI_of_France': {'nm': 'Louis VI of France', 'url': 'Louis_VI_of_France', 'b': 'Paris, France, late 1081', 'd': 'Bthisy-Saint-Pierre, France, August 1137', 'g': 1, 's': 'n', 'yb': 1081, 'yd': 1137, 'f': 'Philip_I_of_France', 'm': 'Bertha_of_Holland'},
'Philip_I_of_France': {'nm': 'Philip I of France', 'url': 'Philip_I_of_France', 'b': 'Champagne-et-Fontaine, 23 May 1052', 'd': 'Melun, 29 July 1108', 'g': 1, 's': 'n', 'yb': 1052, 'yd': 1108, 'f': 'Henry_I_of_France', 'm': 'Anne_of_Kiev'},
'Henry_I_of_France': {'nm': 'Henry I of France', 'url': 'Henry_I_of_France', 'b': 'Reims, Kingdom of France, 4 May 1008', 'd': 'Vitry-aux-Loges, Kingdom of France, 4 August 1060', 'g': 1, 's': 'n', 'yb': 1008, 'yd': 1060, 'f': 'Robert_II_of_France', 'm': 'Constance_of_Arles'},
'Anne_of_Kiev': {'nm': 'Anne of Kiev', 'url': 'Anne_of_Kiev', 'b': 'c. 1030', 'd': '5 September c.1075', 'g': 0, 's': 'n', 'yb': 1030, 'yd': 1075, 'f': 'Yaroslav_the_Wise', 'm': 'Ingegerd_Olofsdotter_of_Sweden'},
'Yaroslav_the_Wise': {'nm': 'Yaroslav the Wise', 'url': 'Yaroslav_the_Wise', 'b': 'c. 978', 'd': 'Vyshhorod, Kievan Rus, 28 February 1054', 'g': 1, 's': 'n', 'yb': 978, 'yd': 1054, 'f': 'Vladimir_the_Great', 'm': 'Anna_Porphyrogenita'},
'Ingegerd_Olofsdotter_of_Sweden': {'nm': 'Ingegerd Olofsdotter of Sweden', 'url': 'Ingegerd_Olofsdotter_of_Sweden', 'b': 'Sweden, 1001', 'd': '10 February 1050', 'g': 0, 's': 'n', 'yb': 1001, 'yd': 1050, 'f': 'Olof_Sk%C3%B6tkonung', 'm': 'Estrid_of_the_Obotrites'},
'Olof_Sk%C3%B6tkonung': {'nm': 'Olof Sktkonung', 'url': 'Olof_Sk%C3%B6tkonung', 'b': 'c. 980', 'd': '1022', 'g': 1, 's': 'n', 'yb': 980, 'yd': 1022, 'f': 'Eric_the_Victorious', 'm': 'Sigrid_the_Haughty'},
'Eric_the_Victorious': {'nm': 'Eric the Victorious', 'url': 'Eric_the_Victorious', 'b': 'c. 945', 'd': 'c. 995', 'g': 1, 's': 'n', 'yb': 945, 'yd': 995, 'f': 'unknown'},
'Sigrid_the_Haughty': {'nm': 'Sigrid the Haughty', 'url': 'Sigrid_the_Haughty', 'g': 0, 's': 'n', 'f': 'Skoglar_Toste'},
'Skoglar_Toste': {'nm': 'Skoglar Toste', 'url': 'Skoglar_Toste', 'g': 1, 's': 'n', 'f': 'unknown'},
'Estrid_of_the_Obotrites': {'nm': 'Estrid of the Obotrites', 'url': 'Estrid_of_the_Obotrites', 'b': '979', 'd': '1035', 'g': 0, 's': 'n', 'yb': 979, 'yd': 1035, 'f': 'unknown'},
'Bertha_of_Holland': {'nm': 'Bertha of Holland', 'url': 'Bertha_of_Holland', 'b': 'Vlaardingen, Netherlands, c. 1055', 'd': 'Montreuil, Pas-de-Calais, France, 15 October 1094', 'g': 0, 's': 'n', 'yb': 1055, 'yd': 1094, 'f': 'Floris_I,_Count_of_Holland', 'm': 'Gertrude_of_Saxony'},
'Floris_I,_Count_of_Holland': {'nm': 'Floris I, Count of Holland', 'url': 'Floris_I,_Count_of_Holland', 'b': 'Vlaardingen, c. 1017', 'd': 'Nederhemert, June 28, 1061', 'g': 1, 's': 'n', 'yb': 1017, 'yd': 1061, 'f': 'Dirk_III,_Count_of_Holland', 'm': 'Bernard,_Margrave_of_the_Nordmark'},
'Dirk_III,_Count_of_Holland': {'nm': 'Dirk III, Count of Holland', 'url': 'Dirk_III,_Count_of_Holland', 'b': 'c. 982', 'd': '27 May 1039', 'g': 1, 's': 'n', 'yb': 982, 'yd': 1039, 'f': 'Arnulf,_Count_of_Holland', 'm': 'Lutgardis_of_Luxemburg'},
'Arnulf,_Count_of_Holland': {'nm': 'Arnulf, Count of Holland', 'url': 'Arnulf,_Count_of_Holland', 'b': 'Ghent, Flanders, 950/955', 'd': 'Winkel, West-Friesland, September 18, 993', 'g': 1, 's': 'n', 'yb': 955, 'yd': 993, 'f': 'Dirk_II,_Count_of_Holland', 'm': 'Hildegarde of Flanders'},
'Dirk_II,_Count_of_Holland': {'nm': 'Dirk II, Count of Holland', 'url': 'Dirk_II,_Count_of_Holland', 'b': '920/930', 'd': 'Egmond, West Friesland,Duchy of Lower Lorraine, 6 May 988', 'g': 1, 's': 'n', 'yb': 930, 'yd': 988, 'f': 'Dirk_I,_Count_of_Holland', 'm': 'Geva'},
'Dirk_I,_Count_of_Holland': {'nm': 'Dirk I, Count of Holland', 'url': 'Dirk_I,_Count_of_Holland', 'b': 'c. 870', 'd': '928/944', 'g': 1, 's': 'n', 'yb': 870, 'yd': 944, 'f': 'Gerolf_of_Holland'},
'Gerolf_of_Holland': {'nm': 'Gerolf of Holland', 'url': 'Gerolf_of_Holland', 'b': 'ca. 850', 'd': '895/896', 'g': 1, 's': 'n', 'yb': 850, 'yd': 896, 'f': 'unknown'},
'Geva': {'nm': 'Geva(obscure)', 'g': 0, 'f': 'unknown'},
'Hildegarde of Flanders': {'nm': 'Hildegarde of Flanders', 'g': 0},
'Bernard,_Margrave_of_the_Nordmark': {'nm': 'Bernard, Margrave of the Nordmark', 'url': 'Bernard,_Margrave_of_the_Nordmark', 'd': '1051', 'g': 0, 's': 'n', 'yd': 1051, 'f': 'Bernard I'},
'Bernard I': {'nm': 'Bernard I', 'g': 1},
'Gertrude_of_Saxony': {'nm': 'Gertrude of Saxony', 'url': 'Gertrude_of_Saxony', 'b': 'c. 1030', 'd': '4 August 1113', 'g': 0, 's': 'n', 'yb': 1030, 'yd': 1113, 'f': 'Bernard_II,_Duke_of_Saxony', 'm': 'Eilika_of_Schweinfurt'},
'Bernard_II,_Duke_of_Saxony': {'nm': 'Bernard II, Duke of Saxony', 'url': 'Bernard_II,_Duke_of_Saxony', 'b': 'c. 995', 'd': '29 June 1059', 'g': 1, 's': 'n', 'yb': 995, 'yd': 1059, 'f': 'Bernard_I,_Duke_of_Saxony', 'm': 'Hildegard'},
'Bernard_I,_Duke_of_Saxony': {'nm': 'Bernard I, Duke of Saxony', 'url': 'Bernard_I,_Duke_of_Saxony', 'b': 'c. 950', 'd': 'Corvey, 9 February 1011', 'g': 1, 's': 'n', 'yb': 950, 'yd': 1011, 'f': 'Hermann_Billung', 'm': 'Oda'},
'Oda': {'nm': 'ODA(obscure)', 'g': 0, 'f': 'unknown'},
'Hildegard': {'nm': 'Hildegard(obscure)', 'g': 0, 'f': 'unknown'},
'Eilika_of_Schweinfurt': {'nm': 'Eilika of Schweinfurt', 'url': 'Eilika_of_Schweinfurt', 'b': 'c. 1005', 'd': 'after 10 December 1059', 'g': 0, 's': 'n', 'yb': 1005, 'yd': 1059, 'f': 'Henry_of_Schweinfurt', 'm': 'Gerberga_of_Gleiberg'},
'Adelaide_of_Maurienne': {'nm': 'Adelaide of Maurienne', 'url': 'Adelaide_of_Maurienne', 'b': 'Saint-Jean-de-Maurienne, France, 18 November 1092', 'd': '18 November 1154', 'g': 0, 's': 'n', 'yb': 1092, 'yd': 1154, 'f': 'Humbert_II,_Count_of_Savoy', 'm': 'Gisela_of_Burgundy,_Countess_of_Savoy'},
'Humbert_II,_Count_of_Savoy': {'nm': 'Humbert II, Count of Savoy', 'url': 'Humbert_II,_Count_of_Savoy', 'b': 'Carignano, 1065', 'd': '14 October 1103', 'g': 1, 's': 'n', 'yb': 1065, 'yd': 1103, 'f': 'Amadeus_II_of_Savoy', 'm': 'Joan_of_Geneva'},
'Amadeus_II_of_Savoy': {'nm': 'Amadeus II, Count of Savoy', 'url': 'Amadeus_II_of_Savoy', 'b': 'c.\u20091050', 'd': '26 January 1080', 'g': 1, 's': 'n', 'yb': 1050, 'yd': 1080, 'f': 'Otto,_Count_of_Savoy', 'm': 'Adelaide_of_Susa'},
'Joan_of_Geneva': {'nm': 'Joan of Geneva', 'url': 'Joan_of_Geneva', 'b': 'c. 1040', 'd': '1095', 'g': 0, 's': 'n', 'yb': 1040, 'yd': 1095, 'f': 'unknown'},
'Gisela_of_Burgundy,_Countess_of_Savoy': {'nm': 'Gisela of Burgundy, Marchioness of Montferrat', 'url': 'Gisela_of_Burgundy,_Countess_of_Savoy', 'b': '1075', 'd': 'May 1135', 'g': 0, 's': 'n', 'yb': 1075, 'yd': 1135, 'f': 'William_I,_Count_of_Burgundy', 'm': 'Stephanie'},
'William_I,_Count_of_Burgundy': {'nm': 'William I, Count of Burgundy', 'url': 'William_I,_Count_of_Burgundy', 'b': '1020', 'd': 'Besanon, 12 November 1087', 'g': 1, 's': 'n', 'yb': 1020, 'yd': 1087, 'f': 'Renaud_I,_Count_of_Burgundy', 'm': 'Alice_of_Normandy'},
'Renaud_I,_Count_of_Burgundy': {'nm': 'Reginald I, Count of Burgundy', 'url': 'Renaud_I,_Count_of_Burgundy', 'b': '986', 'd': '1057', 'g': 1, 's': 'n', 'yb': 986, 'yd': 1057, 'f': 'Otto-William,_Count_of_Burgundy', 'm': 'Ermentrude_de_Roucy'},
'Alice_of_Normandy': {'nm': 'Alice of Normandy', 'url': 'Alice_of_Normandy', 'b': 'c. 1002', 'd': '1038', 'g': 0, 's': 'n', 'yb': 1002, 'yd': 1038, 'f': 'Richard_II,_Duke_of_Normandy', 'm': 'Judith_of_Brittany'},
'Stephanie': {'nm': 'Stephanie(obscure)', 'g': 0, 'f': 'unknown'},
'Elisabeth of Courtenay': {'nm': 'Elisabeth of Courtenay', 'g': 0},
'Eleanor_of_Provence': {'nm': 'Eleanor of Provence', 'url': 'Eleanor_of_Provence', 'b': 'Aix-en-Provence, France, c. 1223', 'd': 'Amesbury, Wiltshire, England, 24/25 June 1291', 'g': 0, 's': 'n', 'yb': 1223, 'yd': 1291, 'f': 'Ramon_Berenguer_IV,_Count_of_Provence', 'm': 'Beatrice_of_Savoy'},
'Ramon_Berenguer_IV,_Count_of_Provence': {'nm': 'Ramon Berenguer IV, Count of Provence', 'url': 'Ramon_Berenguer_IV,_Count_of_Provence', 'b': '1198', 'd': 'Aix-en-Provence, 19 August 1245', 'g': 1, 's': 'n', 'yb': 1198, 'yd': 1245, 'f': 'Alfonso_II,_Count_of_Provence', 'm': 'Garsenda,_Countess_of_Forcalquier'},
'Alfonso_II,_Count_of_Provence': {'nm': 'Alfonso II, Count of Provence', 'url': 'Alfonso_II,_Count_of_Provence', 'b': 'Barcelona, Principality of Catalonia, Crown of Aragon, 1180', 'd': 'Palermo, Kingdom of Sicily, 2 February 1209', 'g': 1, 's': 'n', 'yb': 1180, 'yd': 1209, 'f': 'Alfonso_II_of_Aragon', 'm': 'Sancha_of_Castile,_Queen_of_Aragon'},
'Alfonso_II_of_Aragon': {'nm': 'Alfonso II of Aragon', 'url': 'Alfonso_II_of_Aragon', 'b': 'Huesca,Kingdom of Aragon, 125 March 1157', 'd': 'Perpignan, 25 April 1196', 'g': 1, 's': 'n', 'yb': 1157, 'yd': 1196, 'f': 'Ramon_Berenguer_IV,_Count_of_Barcelona', 'm': 'Petronilla,_Queen_of_Aragon'},
'Ramon_Berenguer_IV,_Count_of_Barcelona': {'nm': 'Ramon Berenguer IV, Count of Barcelona', 'url': 'Ramon_Berenguer_IV,_Count_of_Barcelona', 'b': 'Barcelona, c. 1114', 'd': 'Borgo San Dalmazzo, Piedmont, Italy, 6 August 1162', 'g': 1, 's': 'n', 'yb': 1114, 'yd': 1162, 'f': 'Ramon_Berenguer_III,_Count_of_Barcelona', 'm': 'Douce_I,_Countess_of_Provence'},
'Ramon_Berenguer_III,_Count_of_Barcelona': {'nm': 'Ramon Berenguer III, Count of Barcelona', 'url': 'Ramon_Berenguer_III,_Count_of_Barcelona', 'b': 'Rodez, Viscounty of Rodez, 11 November 1082', 'd': 'Barcelona, 23 January/19 July 1131', 'g': 1, 's': 'n', 'yb': 1082, 'yd': 1131, 'f': 'Ramon_Berenguer_II,_Count_of_Barcelona', 'm': 'Maud_of_Apulia'},
'Ramon_Berenguer_II,_Count_of_Barcelona': {'nm': 'Ramon Berenguer II, Count of Barcelona', 'url': 'Ramon_Berenguer_II,_Count_of_Barcelona', 'b': 'c. 1053', 'd': 'Sant Feliu de Buixalleu, 6 December 1082', 'g': 1, 's': 'n', 'yb': 1053, 'yd': 1082, 'f': 'Ramon_Berenguer_I,_Count_of_Barcelona', 'm': 'Almodis_of_La_Marche'},
'Ramon_Berenguer_I,_Count_of_Barcelona': {'nm': 'Ramon Berenguer I, Count of Barcelona', 'url': 'Ramon_Berenguer_I,_Count_of_Barcelona', 'b': '1023', 'd': '26 May 1076', 'g': 1, 's': 'n', 'yb': 1023, 'yd': 1076, 'f': 'Berenguer_Ramon_I,_Count_of_Barcelona', 'm': 'Sancha Sanchez'},
'Berenguer_Ramon_I,_Count_of_Barcelona': {'nm': 'Berenguer Ramon I, Count of Barcelona', 'url': 'Berenguer_Ramon_I,_Count_of_Barcelona', 'b': '1005', 'd': 'Barcelona, 26 May 1035', 'g': 1, 's': 'n', 'yb': 1005, 'yd': 1035, 'f': 'Ramon_Borrell,_Count_of_Barcelona', 'm': 'Ermesinde_of_Carcassonne'},
'Ramon_Borrell,_Count_of_Barcelona': {'nm': 'Ramon Borrell, Count of Barcelona', 'url': 'Ramon_Borrell,_Count_of_Barcelona', 'b': '972', 'd': '1017', 'g': 1, 's': 'n', 'yb': 972, 'yd': 1017, 'f': 'Borrell_II_of_Barcelona', 'm': 'Letgarda de Rouergue'},
'Borrell_II_of_Barcelona': {'nm': 'Borrell II, Count of Barcelona', 'url': 'Borrell_II_of_Barcelona', 'd': '993', 'g': 1, 's': 'n', 'yd': 993, 'f': 'Sunyer,_Count_of_Barcelona', 'm': 'Richilda_of_Toulouse'},
'Sunyer,_Count_of_Barcelona': {'nm': 'Sunyer, Count of Barcelona', 'url': 'Sunyer,_Count_of_Barcelona', 'b': 'c. 870', 'd': '950', 'g': 1, 's': 'n', 'yb': 870, 'yd': 950, 'f': 'Wilfred_the_Hairy', 'm': 'Baldwin_I,_Margrave_of_Flanders'},
'Wilfred_the_Hairy': {'nm': 'Wilfred the Hairy', 'url': 'Wilfred_the_Hairy', 'b': 'Prades, Pyrnes-Orientales', 'd': '11 August 897', 'g': 1, 's': 'n', 'yd': 897, 'f': 'Sunifred,_Count_of_Barcelona'},
'Sunifred,_Count_of_Barcelona': {'nm': 'Sunifred, Count of Barcelona', 'url': 'Sunifred,_Count_of_Barcelona', 'd': '848', 'g': 1, 's': 'n', 'yd': 848, 'f': 'unknown'},
'Richilda_of_Toulouse': {'nm': 'Richilda of Toulouse', 'url': 'Richilda_of_Toulouse', 'b': 'Toulouse, c. 895', 'g': 0, 's': 'n', 'yb': 895, 'f': 'Raymond_II,_Count_of_Toulouse'},
'Raymond_II,_Count_of_Toulouse': {'nm': 'Raymond II, Count of Toulouse', 'url': 'Raymond_II,_Count_of_Toulouse', 'd': '924', 'g': 1, 's': 'n', 'yd': 924, 'f': 'Odo,_Count_of_Toulouse'},
'Letgarda de Rouergue': {'nm': 'Letgarda de Rouergue', 'g': 0},
'Ermesinde_of_Carcassonne': {'nm': 'Ermesinde of Carcassonne', 'url': 'Ermesinde_of_Carcassonne', 'b': 'c. 975', 'd': '1 March 1058', 'g': 0, 's': 'n', 'yb': 975, 'yd': 1058, 'f': 'Roger_I,_count_of_Carcassonne'},
'Sancha Sanchez': {'nm': 'Sancha Sanchez', 'g': 0},
'Maud_of_Apulia': {'nm': 'Maud of Apulia', 'url': 'Maud_of_Apulia', 'b': 'c. 1060', 'd': 'c. 1112', 'g': 0, 's': 'n', 'yb': 1060, 'yd': 1112, 'f': 'Robert_Guiscard', 'm': 'Sikelgaita'},
'Douce_I,_Countess_of_Provence': {'nm': 'Douce I, Countess of Provence', 'url': 'Douce_I,_Countess_of_Provence', 'b': 'c.1090', 'd': '1127', 'g': 0, 's': 'n', 'yb': 1090, 'yd': 1127, 'f': 'Gilbert I of Gvaudan', 'm': 'Gerberga_of_Provence'},
'Petronilla,_Queen_of_Aragon': {'nm': 'Petronilla of Aragon', 'url': 'Petronilla,_Queen_of_Aragon', 'b': 'Huesca, 29 June 1136', 'd': 'Barcelona, 15 October 1173', 'g': 0, 's': 'n', 'yb': 1136, 'yd': 1173, 'f': 'Ramiro_II_of_Aragon', 'm': 'Agnes_of_Aquitaine,_wife_of_Ramiro_II_of_Aragon'},
'Ramiro_II_of_Aragon': {'nm': 'Ramiro II of Aragon', 'url': 'Ramiro_II_of_Aragon', 'b': '24 April 1086', 'd': 'Huesca, 16 August 1157', 'g': 1, 's': 'n', 'yb': 1086, 'yd': 1157, 'f': 'Sancho_Ram%C3%ADrez', 'm': 'Felicia_of_Roucy'},
'Sancho_Ram%C3%ADrez': {'nm': 'Sancho Ramrez', 'url': 'Sancho_Ram%C3%ADrez', 'b': 'c. 1042', 'd': 'Huesca, Kingdom of Aragon, 4 June 1094', 'g': 1, 's': 'n', 'yb': 1042, 'yd': 1094, 'f': 'Ramiro_I_of_Aragon', 'm': 'Ermesinda_of_Bigorre'},
'Ramiro_I_of_Aragon': {'nm': 'Ramiro I of Aragon', 'url': 'Ramiro_I_of_Aragon', 'b': 'before 1007', 'd': 'Graus, 8 May 1063', 'g': 1, 's': 'n', 'yb': 1007, 'yd': 1063, 'f': 'Sancho_III_of_Pamplona', 'm': 'Sancha of Aybar'},
'Sancho_III_of_Pamplona': {'nm': 'Sancho III of Pamplona', 'url': 'Sancho_III_of_Pamplona', 'b': 'c. 992-996', 'd': 'c. 1035', 'g': 1, 's': 'n', 'yb': 996, 'yd': 1035, 'f': 'Garc%C3%ADa_S%C3%A1nchez_II_of_Pamplona', 'm': 'Jimena_Fern%C3%A1ndez'},
'Garc%C3%ADa_S%C3%A1nchez_II_of_Pamplona': {'nm': 'Garca Snchez II of Pamplona', 'url': 'Garc%C3%ADa_S%C3%A1nchez_II_of_Pamplona', 'd': 'c. 1000', 'g': 1, 's': 'n', 'yd': 1000, 'f': 'Sancho_II_of_Pamplona', 'm': 'Urraca_Fern%C3%A1ndez'},
'Sancho_II_of_Pamplona': {'nm': 'Sancho II of Pamplona', 'url': 'Sancho_II_of_Pamplona', 'd': '994', 'g': 1, 's': 'n', 'yd': 994, 'f': 'Garc%C3%ADa_S%C3%A1nchez_I_of_Pamplona', 'm': 'Andregoto_Gal%C3%ADndez'},
'Garc%C3%ADa_S%C3%A1nchez_I_of_Pamplona': {'nm': 'Garca Snchez I of Pamplona', 'url': 'Garc%C3%ADa_S%C3%A1nchez_I_of_Pamplona', 'b': 'c. 919', 'd': '970', 'g': 1, 's': 'n', 'yb': 919, 'yd': 970, 'f': 'Sancho_I_of_Pamplona', 'm': 'Toda_Azn%C3%A1rez'},
'Sancho_I_of_Pamplona': {'nm': 'Sancho I of Pamplona', 'url': 'Sancho_I_of_Pamplona', 'b': 'c. 860', 'd': 'Resa, 10 December 925', 'g': 1, 's': 'n', 'yb': 860, 'yd': 925, 'f': 'Garc%C3%ADa_Jim%C3%A9nez', 'm': 'Dadildis de Pallars'},
'Garc%C3%ADa_Jim%C3%A9nez': {'nm': 'Garca Jimnez of Pamplona', 'url': 'Garc%C3%ADa_Jim%C3%A9nez', 'g': 1, 's': 'n', 'f': 'unknown'},
'Dadildis de Pallars': {'nm': 'Dadildis de Pallars', 'g': 0},
'Toda_Azn%C3%A1rez': {'nm': 'Toda of Pamplona', 'url': 'Toda_Azn%C3%A1rez', 'd': '958', 'g': 0, 's': 'n', 'yd': 958, 'f': 'Larraun', 'm': 'Onneca_Fort%C3%BAnez'},
'Larraun': {'nm': 'Larraun(obscure)', 'g': 1, 'f': 'unknown'},
'Onneca_Fort%C3%BAnez': {'nm': 'Onneca Fortnez', 'url': 'Onneca_Fort%C3%BAnez', 'b': '848/850', 'd': 'aft. 890', 'g': 0, 's': 'n', 'yb': 850, 'yd': 890, 'f': 'unknown'},
'Andregoto_Gal%C3%ADndez': {'nm': 'Andregoto Galndez', 'url': 'Andregoto_Gal%C3%ADndez', 'g': 0, 's': 'n', 'f': 'Galindo_Aznrez_II', 'm': 'Sancha Garcs of Pamplona'},
'Urraca_Fern%C3%A1ndez': {'nm': 'Urraca Fernndez', 'url': 'Urraca_Fern%C3%A1ndez', 'd': '1007', 'g': 0, 's': 'n', 'yd': 1007, 'f': 'Fern%C3%A1n_Gonz%C3%A1lez_of_Castile', 'm': 'Fern%C3%A1n_Gonz%C3%A1lez_of_Castile'},
'Gonzalo_Fern%C3%A1ndez_of_Castile': {'nm': 'Gonzalo Fernndez of Castile', 'url': 'Gonzalo_Fern%C3%A1ndez_of_Castile', 'g': 1, 's': 'n', 'f': 'unknown'},
'Muniadona': {'nm': 'Muniadona', 'g': 0},
'Fern%C3%A1n_Gonz%C3%A1lez_of_Castile': {'nm': 'Fernn Gonzlez of Castile', 'url': 'Fern%C3%A1n_Gonz%C3%A1lez_of_Castile', 'b': 'Lara de los Infantes, c. 910', 'd': 'Burgos, 970', 'g': 1, 's': 'n', 'yb': 910, 'yd': 970, 'f': 'Gonzalo_Fern%C3%A1ndez_of_Castile', 'm': 'Muniadona'},
'Jimena_Fern%C3%A1ndez': {'nm': 'Jimena Fernndez', 'url': 'Jimena_Fern%C3%A1ndez', 'b': '970', 'd': '1045', 'g': 0, 's': 'n', 'yb': 970, 'yd': 1045, 'f': 'unknown'},
'Sancha of Aybar': {'nm': 'Sancha of Aybar', 'g': 0},
'Ermesinda_of_Bigorre': {'nm': 'Ermesinda of Bigorre', 'url': 'Ermesinda_of_Bigorre', 'b': '1015', 'd': '1 December 1049', 'g': 0, 's': 'n', 'yb': 1015, 'yd': 1049, 'f': 'unknown'},
'Felicia_of_Roucy': {'nm': 'Felicia of Roucy', 'url': 'Felicia_of_Roucy', 'b': 'Barbastro, c. 1060', 'd': 'Barcelona, 3 May 1123', 'g': 0, 's': 'n', 'yb': 1060, 'yd': 1123, 'f': 'Hilduin_IV,_Count_of_Montdidier', 'm': 'Alice de Roucy'},
'Hilduin_III,_Count_of_Montdidier': {'nm': 'Hilduin III, Count of Montdidier', 'url': 'Hilduin_III,_Count_of_Montdidier', 'd': 'after 1032', 'g': 1, 's': 'n', 'yd': 1032, 'f': 'Hilduin_II,_Count_of_Arcis-sur-Aube'},
'Alice de Roucy': {'nm': 'Alice de Roucy', 'g': 0},
'Agnes_of_Aquitaine,_wife_of_Ramiro_II_of_Aragon': {'nm': 'Agnes of Aquitaine, wife of Ramiro II of Aragon', 'url': 'Agnes_of_Aquitaine,_wife_of_Ramiro_II_of_Aragon', 'd': 'c. 1159', 'g': 0, 's': 'n', 'yd': 1159, 'f': 'William_IX,_Duke_of_Aquitaine', 'm': 'Philippa,_Countess_of_Toulouse'},
'Sancha_of_Castile,_Queen_of_Aragon': {'nm': 'Sancha of Castile, Queen of Aragon', 'url': 'Sancha_of_Castile,_Queen_of_Aragon', 'b': '/5, 21 September 1154', 'd': 'Villanueva de Sigena, Kingdom of Aragon, 9 November 1208', 'g': 0, 's': 'n', 'yb': 1154, 'yd': 1208, 'f': 'Alfonso_VII_of_Le%C3%B3n_and_Castile', 'm': 'Richeza_of_Poland,_Queen_of_Castile'},
'Alfonso_VII_of_Le%C3%B3n_and_Castile': {'nm': 'Alfonso VII of Len and Castile', 'url': 'Alfonso_VII_of_Le%C3%B3n_and_Castile', 'b': 'Caldas de Reis, 1 March 1105', 'd': 'Sierra Morena, 21 August 1157', 'g': 1, 's': 'n', 'yb': 1105, 'yd': 1157, 'f': 'Raymond,_Count_of_Galicia', 'm': 'Urraca_of_Le%C3%B3n_and_Castile'},
'Raymond,_Count_of_Galicia': {'nm': 'Raymond of Burgundy', 'url': 'Raymond,_Count_of_Galicia', 'b': 'Besanon, County of Burgundy, 1070', 'd': 'Grajal de Campos, 24 May 1107', 'g': 1, 's': 'n', 'yb': 1070, 'yd': 1107, 'f': 'William_I,_Count_of_Burgundy', 'm': 'Stephanie'},
'Urraca_of_Le%C3%B3n_and_Castile': {'nm': 'Urraca of Len', 'url': 'Urraca_of_Le%C3%B3n_and_Castile', 'b': 'Burgos, April 1079', 'd': 'Saldaa on the Ro Carrin in Castilla, 8 March 1126', 'g': 0, 's': 'n', 'yb': 1079, 'yd': 1126, 'f': 'Alfonso_VI_of_Le%C3%B3n_and_Castile', 'm': 'Constance_of_Burgundy'},
'Alfonso_VI_of_Le%C3%B3n_and_Castile': {'nm': 'Alfonso VI of Len and Castile', 'url': 'Alfonso_VI_of_Le%C3%B3n_and_Castile', 'b': 'Compostela, c. 1040 - 1041', 'd': 'Toledo, 1 July 1109', 'g': 1, 's': 'n', 'yb': 1041, 'yd': 1109, 'f': 'Ferdinand_I_of_Le%C3%B3n', 'm': 'Sancha_of_Le%C3%B3n'},
'Ferdinand_I_of_Le%C3%B3n': {'nm': 'Ferdinand I of Len', 'url': 'Ferdinand_I_of_Le%C3%B3n', 'b': 'c. 1015', 'd': 'Len, 24 December 1065', 'g': 1, 's': 'n', 'yb': 1015, 'yd': 1065, 'f': 'Sancho_III_of_Pamplona', 'm': 'Muniadona_of_Castile'},
'Muniadona_of_Castile': {'nm': 'Muniadona of Castile', 'url': 'Muniadona_of_Castile', 'b': 'c. 995', 'd': '1066', 'g': 0, 's': 'n', 'yb': 995, 'yd': 1066, 'f': 'Sancho_Garc%C3%ADa_of_Castile', 'm': 'Urraca Gmez'},
'Sancho_Garc%C3%ADa_of_Castile': {'nm': 'Sancho Garca of Castile', 'url': 'Sancho_Garc%C3%ADa_of_Castile', 'd': '5 February 1017', 'g': 1, 's': 'n', 'yd': 1017, 'f': 'Garc%C3%ADa_Fern%C3%A1ndez_of_Castile', 'm': 'Ava_de_Ribagorza'},
'Garc%C3%ADa_Fern%C3%A1ndez_of_Castile': {'nm': 'Garca Fernndez of Castile', 'url': 'Garc%C3%ADa_Fern%C3%A1ndez_of_Castile', 'b': 'Burgos, c. 938', 'd': 'Medinaceli, 995', 'g': 1, 's': 'n', 'yb': 938, 'yd': 995, 'f': 'Fern%C3%A1n_Gonz%C3%A1lez_of_Castile', 'm': 'Sancha Snchez of Pamplona'},
'Sancha Snchez of Pamplona': {'nm': 'Sancha Snchez of Pamplona', 'g': 0},
'Ava_de_Ribagorza': {'nm': 'Ava of Ribagora, Countess of Castile', 'url': 'Ava_de_Ribagorza', 'g': 0, 's': 'n', 'f': 'Raymond_I,_Count_of_Pallars_and_Ribagorza', 'm': 'Garsenda Fesenzac'},
'Urraca Gmez': {'nm': 'Urraca Gmez', 'g': 0},
'Sancha_of_Le%C3%B3n': {'nm': 'Sancha of Len', 'url': 'Sancha_of_Le%C3%B3n', 'b': 'c.1018', 'd': '8 November 1067', 'g': 0, 's': 'n', 'yb': 1018, 'yd': 1067, 'f': 'Alfonso_V_of_Le%C3%B3n', 'm': 'Elvira_Men%C3%A9ndez_(died_1022)'},
'Alfonso_V_of_Le%C3%B3n': {'nm': 'Alfonso V of Len', 'url': 'Alfonso_V_of_Le%C3%B3n', 'b': 'c. 994', 'd': 'Viseu, 4 July/7 August 1028', 'g': 1, 's': 'n', 'yb': 994, 'yd': 1028, 'f': 'Bermudo_II_of_Le%C3%B3n', 'm': 'Elvira_of_Castile,_Queen_of_Le%C3%B3n'},
'Bermudo_II_of_Le%C3%B3n': {'nm': 'Bermudo II of Len', 'url': 'Bermudo_II_of_Le%C3%B3n', 'b': 'c. 953', 'd': 'c. 999', 'g': 1, 's': 'n', 'yb': 953, 'yd': 999, 'f': 'Ordo%C3%B1o_III_of_Le%C3%B3n', 'm': 'Urraca_Fern%C3%A1ndez'},
'Ordo%C3%B1o_III_of_Le%C3%B3n': {'nm': 'Ordoo III of Len', 'url': 'Ordo%C3%B1o_III_of_Le%C3%B3n', 'b': 'c. 926', 'd': 'Zamora, c. 956', 'g': 1, 's': 'n', 'yb': 926, 'yd': 956, 'f': 'Ramiro_II_of_Le%C3%B3n', 'm': 'Adosinda Gutirrez'},
'Ramiro_II_of_Le%C3%B3n': {'nm': 'Ramiro II of Len', 'url': 'Ramiro_II_of_Le%C3%B3n', 'b': 'c. 900', 'd': 'Len, 1 January 951', 'g': 1, 's': 'n', 'yb': 900, 'yd': 951, 'f': 'Ordo%C3%B1o_II_of_Le%C3%B3n', 'm': 'Elvira_Men%C3%A9ndez_(died_921)'},
'Ordo%C3%B1o_II_of_Le%C3%B3n': {'nm': 'Ordoo II of Len', 'url': 'Ordo%C3%B1o_II_of_Le%C3%B3n', 'b': 'c. 873', 'd': 'Len, June 924', 'g': 1, 's': 'n', 'yb': 873, 'yd': 924, 'f': 'Alfonso_III_of_Asturias', 'm': 'Jimena of Pamplona'},
'Alfonso_III_of_Asturias': {'nm': 'Alfonso III of Asturias', 'url': 'Alfonso_III_of_Asturias', 'b': 'c. 848', 'd': '20 December 910', 'g': 1, 's': 'n', 'yb': 848, 'yd': 910, 'f': 'Ordo%C3%B1o_I_of_Asturias', 'm': 'Nua'},
'Ordo%C3%B1o_I_of_Asturias': {'nm': 'Ordoo I of Asturias', 'url': 'Ordo%C3%B1o_I_of_Asturias', 'b': 'Oviedo, c. 821', 'd': 'Oviedo, 27 May 866', 'g': 1, 's': 'n', 'yb': 821, 'yd': 866, 'f': 'Ramiro_I_of_Asturias'},
'Ramiro_I_of_Asturias': {'nm': 'Ramiro I of Asturias', 'url': 'Ramiro_I_of_Asturias', 'b': 'Oviedo, c. 790', 'd': 'Oviedo, 1 February 850', 'g': 1, 's': 'n', 'yb': 790, 'yd': 850, 'f': 'Bermudo_I_of_Asturias'},
'Bermudo_I_of_Asturias': {'nm': 'Bermudo I of Asturias', 'url': 'Bermudo_I_of_Asturias', 'b': 'c. 750', 'd': '797', 'g': 1, 's': 'n', 'yb': 750, 'yd': 797, 'f': 'Fruela_of_Cantabria'},
'Nua': {'nm': 'Nua', 'g': 0},
'Jimena of Pamplona': {'nm': 'Jimena of Pamplona', 'g': 0},
'Elvira_Men%C3%A9ndez_(died_921)': {'nm': 'Elvira Menndez (died 921)', 'url': 'Elvira_Men%C3%A9ndez_(died_921)', 'd': '921', 'g': 0, 's': 'n', 'yd': 921, 'f': 'Hermenegildo_Guti%C3%A9rrez', 'm': 'Ermesenda Gatnez'},
'Hermenegildo_Guti%C3%A9rrez': {'nm': 'Hermenegildo Gutirrez', 'url': 'Hermenegildo_Guti%C3%A9rrez', 'b': 'c. 850', 'd': 'after May 912', 'g': 1, 's': 'n', 'yb': 850, 'yd': 912, 'f': 'count Gutierre', 'm': 'Elvira (obscure)'},
'Ermesenda Gatnez': {'nm': 'Ermesenda Gatnez', 'g': 0},
'Adosinda Gutirrez': {'nm': 'Adosinda Gutirrez', 'g': 0},
'Elvira_of_Castile,_Queen_of_Le%C3%B3n': {'nm': 'Elvira of Castile, Queen of Len', 'url': 'Elvira_of_Castile,_Queen_of_Le%C3%B3n', 'b': 'c. 978', 'd': '1017', 'g': 0, 's': 'n', 'yb': 978, 'yd': 1017, 'f': 'Garc%C3%ADa_Fern%C3%A1ndez_of_Castile', 'm': 'Ava_de_Ribagorza'},
'Elvira_Men%C3%A9ndez_(died_1022)': {'nm': 'Elvira Menndez (died 1022)', 'url': 'Elvira_Men%C3%A9ndez_(died_1022)', 'd': '2 December 1022', 'g': 0, 's': 'n', 'yd': 1022, 'f': 'Menendo_Gonz%C3%A1lez', 'm': 'Tutadonna'},
'Menendo_Gonz%C3%A1lez': {'nm': 'Menendo Gonzlez', 'url': 'Menendo_Gonz%C3%A1lez', 'd': '6 October 1008', 'g': 1, 's': 'n', 'yd': 1008, 'f': 'Gonzalo_Men%C3%A9ndez', 'm': 'Ilduara Pelez'},
'Tutadonna': {'nm': 'Tutadonna', 'g': 0},
'Constance_of_Burgundy': {'nm': 'Constance of Burgundy', 'url': 'Constance_of_Burgundy', 'b': '8 May 1046', 'd': '1093', 'g': 0, 's': 'n', 'yb': 1046, 'yd': 1093, 'f': 'Robert_I,_Duke_of_Burgundy', 'm': 'Helie de Semur-en-Brionnais'},
'Helie de Semur-en-Brionnais': {'nm': 'Helie de Semur-en-Brionnais', 'g': 0},
'Richeza_of_Poland,_Queen_of_Castile': {'nm': 'Richeza of Poland, Queen of Castile', 'url': 'Richeza_of_Poland,_Queen_of_Castile', 'b': 'c. 1140', 'd': '16 June 1185', 'g': 0, 's': 'n', 'yb': 1140, 'yd': 1185, 'f': 'W%C5%82adys%C5%82aw_II_the_Exile', 'm': 'Agnes_of_Babenberg'},
'W%C5%82adys%C5%82aw_II_the_Exile': {'nm': 'Wadysaw II the Exile', 'url': 'W%C5%82adys%C5%82aw_II_the_Exile', 'b': 'Krakw, Kingdom of Poland, 1105', 'd': 'Altenburg, Holy Roman Empire, 30 May 1159', 'g': 1, 's': 'n', 'yb': 1105, 'yd': 1159, 'f': 'Boles%C5%82aw_III_Wrymouth', 'm': 'Zbyslava_of_Kiev'},
'Boles%C5%82aw_III_Wrymouth': {'nm': 'Bolesaw III Wrymouth', 'url': 'Boles%C5%82aw_III_Wrymouth', 'b': 'Pock, Poland, 20 August 1086', 'd': 'Sochaczew, Poland, 28 October 1138', 'g': 1, 's': 'n', 'yb': 1086, 'yd': 1138, 'f': 'W%C5%82adys%C5%82aw_I_Herman', 'm': 'Judith_of_Bohemia'},
'W%C5%82adys%C5%82aw_I_Herman': {'nm': 'Wadysaw I Herman', 'url': 'W%C5%82adys%C5%82aw_I_Herman', 'b': 'Poland, c. 1044', 'd': 'Pock, Poland, 4 June 1102', 'g': 1, 's': 'n', 'yb': 1044, 'yd': 1102, 'f': 'Casimir_I_the_Restorer', 'm': 'Maria_Dobroniega_of_Kiev'},
'Casimir_I_the_Restorer': {'nm': 'Casimir I the Restorer', 'url': 'Casimir_I_the_Restorer', 'b': 'Krakw, Poland, 25 July 1016', 'd': 'Pozna, Poland, 19 March 1058', 'g': 1, 's': 'n', 'yb': 1016, 'yd': 1058, 'f': 'Mieszko_II_Lambert', 'm': 'Richeza_of_Lotharingia'},
'Mieszko_II_Lambert': {'nm': 'Mieszko II Lambert', 'url': 'Mieszko_II_Lambert', 'b': 'c. 990', 'd': 'Pozna, 10 or 11 May 1034', 'g': 1, 's': 'n', 'yb': 990, 'yd': 1034, 'f': 'Boles%C5%82aw_I_the_Brave', 'm': 'Emnilda_of_Lusatia'},
'Boles%C5%82aw_I_the_Brave': {'nm': 'Bolesaw I the Brave', 'url': 'Boles%C5%82aw_I_the_Brave', 'b': 'Pozna, Duchy of Poland, 967', 'd': 'Krakw?, Kingdom of Poland, 17 June 1025', 'g': 1, 's': 'n', 'yb': 967, 'yd': 1025, 'f': 'Mieszko_I_of_Poland', 'm': 'Dobrawa_of_Bohemia'},
'Mieszko_I_of_Poland': {'nm': 'Mieszko I', 'url': 'Mieszko_I_of_Poland', 'b': 'c. 930', 'd': 'Pozna, Poland, 25 May 992', 'g': 1, 's': 'n', 'yb': 930, 'yd': 992, 'f': 'Siemomys%C5%82'},
'Siemomys%C5%82': {'nm': 'Siemomys', 'url': 'Siemomys%C5%82', 'd': 'c. 950-960', 'g': 1, 's': 'n', 'yd': 955, 'f': 'Lestek'},
'Lestek': {'nm': 'Lestek', 'url': 'Lestek', 'b': 'c. 870-880', 'd': '930-950', 'g': 1, 's': 'n', 'yb': 875, 'yd': 940, 'f': 'Siemowit'},
'Siemowit': {'nm': 'Siemowit', 'url': 'Siemowit', 'g': 1, 's': 'n', 'f': 'Piast_the_Wheelwright', 'm': 'Rzepicha'},
'Piast_the_Wheelwright': {'nm': 'Piast the Wheelwright', 'url': 'Piast_the_Wheelwright', 'b': '740/741', 'd': '861', 'g': 1, 's': 'n', 'yb': 741, 'yd': 861, 'f': 'Cho%C5%9Bcisko'},
'Cho%C5%9Bcisko': {'nm': 'Chocisko', 'url': 'Cho%C5%9Bcisko', 'g': 1, 's': 'n', 'f': 'unknown'},
'Rzepicha': {'nm': 'Rzepicha', 'url': 'Rzepicha', 'g': 0, 's': 'n', 'f': 'unknown'},
'Dobrawa_of_Bohemia': {'nm': 'Doubravka of Bohemia', 'url': 'Dobrawa_of_Bohemia', 'b': '/45, c. 940', 'd': '977', 'g': 0, 's': 'n', 'yb': 940, 'yd': 977, 'f': 'Boleslaus_I,_Duke_of_Bohemia'},
'Boleslaus_I,_Duke_of_Bohemia': {'nm': 'Boleslaus I, Duke of Bohemia', 'url': 'Boleslaus_I,_Duke_of_Bohemia', 'b': '915', 'd': '972', 'g': 1, 's': 'n', 'yb': 915, 'yd': 972, 'f': 'Vratislaus_I,_Duke_of_Bohemia', 'm': 'Drahom%C3%ADra'},
'Vratislaus_I,_Duke_of_Bohemia': {'nm': 'Vratislaus I, Duke of Bohemia', 'url': 'Vratislaus_I,_Duke_of_Bohemia', 'b': 'c. 888', 'd': '13 February 921', 'g': 1, 's': 'n', 'yb': 888, 'yd': 921, 'f': 'Bo%C5%99ivoj_I,_Duke_of_Bohemia', 'm': 'Ludmila_of_Bohemia'},
'Bo%C5%99ivoj_I,_Duke_of_Bohemia': {'nm': 'Boivoj I, Duke of Bohemia', 'url': 'Bo%C5%99ivoj_I,_Duke_of_Bohemia', 'b': 'c. 852', 'd': 'c. 889', 'g': 1, 's': 'n', 'yb': 852, 'yd': 889, 'f': 'Hostiv%C3%ADt'},
'Hostiv%C3%ADt': {'nm': 'Hostivt', 'url': 'Hostiv%C3%ADt', 'g': 1, 's': 'n', 'f': 'unknown'},
'Ludmila_of_Bohemia': {'nm': 'Ludmila of Bohemia', 'url': 'Ludmila_of_Bohemia', 'b': 'Mlnk, c. 860', 'd': 'Tetn castle , Tetn, Bohemia, 15 September 921', 'g': 0, 's': '16 September', 'yb': 860, 'yd': 921, 'f': 'unknown'},
'Drahom%C3%ADra': {'nm': 'Drahomra', 'url': 'Drahom%C3%ADra', 'b': 'c. 877 or 890', 'd': 'after 934 or 936', 'g': 0, 's': 'n', 'yb': 890, 'yd': 936, 'f': 'Boleslaw Hevelli Stodoransky - prince of Hevelli'},
'Emnilda_of_Lusatia': {'nm': 'Emnilda', 'url': 'Emnilda_of_Lusatia', 'b': 'c. 970-975', 'd': 'Krakw, 1017', 'g': 0, 's': 'n', 'yb': 973, 'yd': 1017, 'f': 'Dobromir of Lusatia'},
'Dobromir of Lusatia': {'nm': 'Dobromir of Lusatia', 'g': 1},
'Richeza_of_Lotharingia': {'nm': 'Richeza of Lotharingia', 'url': 'Richeza_of_Lotharingia', 'b': 'c. 995/1000', 'd': 'Saalfeld, Germany, 21 March 1063', 'g': 0, 's': 'n', 'yb': 1000, 'yd': 1063, 'f': 'Ezzo,_Count_Palatine_of_Lotharingia', 'm': 'Matilda_of_Germany,_Countess_Palatine_of_Lotharingia'},
'Ezzo,_Count_Palatine_of_Lotharingia': {'nm': 'Ezzo, Count Palatine of Lotharingia', 'url': 'Ezzo,_Count_Palatine_of_Lotharingia', 'b': 'Lotharingia, c. 955', 'd': 'Saalfeld, Thuringia, 21 March 1034', 'g': 1, 's': 'n', 'yb': 955, 'yd': 1034, 'f': 'Herman_I,_Count_Palatine_of_Lotharingia', 'm': 'Heylwig of Dillingen (obscure)'},
'Herman_I,_Count_Palatine_of_Lotharingia': {'nm': 'Herman I, Count Palatine of Lotharingia', 'url': 'Herman_I,_Count_Palatine_of_Lotharingia', 'd': '996', 'g': 1, 's': 'n', 'yd': 996, 'f': 'Erenfried_II', 'm': 'Richwara of Zlpichgau'},
'Erenfried_II': {'nm': 'Erenfried II', 'url': 'Erenfried_II', 'd': 'c. 970', 'g': 1, 's': 'n', 'yd': 970, 'f': 'Eberhard_I,_Count_of_Bonngau'},
'Eberhard_I,_Count_of_Bonngau': {'nm': 'Eberhard I, Count of Bonngau', 'url': 'Eberhard_I,_Count_of_Bonngau', 'b': 'c. 904', 'd': 'c. 937', 'g': 1, 's': 'n', 'yb': 904, 'yd': 937, 'f': 'Erenfried_I', 'm': 'Adelgunde of Burgundy (860902)'},
'Richwara of Zlpichgau': {'nm': 'Richwara of Zlpichgau', 'g': 0},
'Matilda_of_Germany,_Countess_Palatine_of_Lotharingia': {'nm': 'Matilda of Germany, Countess Palatine of Lotharingia', 'url': 'Matilda_of_Germany,_Countess_Palatine_of_Lotharingia', 'b': 'Summer 979', 'd': 'November 1025', 'g': 0, 's': 'n', 'yb': 979, 'yd': 1025, 'f': 'Otto_II,_Holy_Roman_Emperor', 'm': 'Theophanu'},
'Otto_II,_Holy_Roman_Emperor': {'nm': 'Otto II, Holy Roman Emperor', 'url': 'Otto_II,_Holy_Roman_Emperor', 'b': 'Saxony, Kingdom of Germany, 955', 'd': 'Rome, Papal States, 7 December 983', 'g': 1, 's': 'n', 'yb': 955, 'yd': 983, 'f': 'Otto_the_Great', 'm': 'Adelaide_of_Italy'},
'Otto_the_Great': {'nm': 'Otto the Great', 'url': 'Otto_the_Great', 'b': 'possibly Wallhausen, East Francia, 23 November 912', 'd': 'Memleben, Holy Roman Empire, 7 May 973', 'g': 1, 's': 'n', 'yb': 912, 'yd': 973, 'f': 'Henry_the_Fowler', 'm': 'Matilda_of_Ringelheim'},
'Adelaide_of_Italy': {'nm': 'Adelaide of Italy', 'url': 'Adelaide_of_Italy', 'b': 'Orbe, Upper Burgundy, 931', 'd': 'Seltz, Alsace, 16 December 999', 'g': 0, 's': '16 December', 'yb': 931, 'yd': 999, 'f': 'unknown'},
'Theophanu': {'nm': 'Theophanu', 'url': 'Theophanu', 'b': 'possibly Constantinople, c. 955', 'd': 'Nijmegen, 15 June 991', 'g': 0, 's': 'n', 'yb': 955, 'yd': 991, 'f': 'Skleros', 'm': 'Phokas_(Byzantine_family)'},
'Skleros': {'nm': 'Skleros (Byzantine family)', 'url': 'Skleros', 'g': 1, 's': 'n', 'f': 'unknown'},
'Phokas_(Byzantine_family)': {'nm': 'Phokas (Byzantine family)', 'url': 'Phokas_(Byzantine_family)', 'g': 0, 's': 'n', 'f': 'unknown'},
'Maria_Dobroniega_of_Kiev': {'nm': 'Maria Dobroniega of Kiev', 'url': 'Maria_Dobroniega_of_Kiev', 'b': '1012', 'd': '13 December 1087', 'g': 0, 's': 'n', 'yb': 1012, 'yd': 1087, 'f': 'Vladimir_the_Great'},
'Vladimir_the_Great': {'nm': 'Vladimir the Great', 'url': 'Vladimir_the_Great', 'b': 'Budnik near Pskov or Budyatychi, c. 958', 'd': 'Berestove, 15 July 1015', 'g': 1, 's': '15 July', 'yb': 958, 'yd': 1015, 'f': 'Sviatoslav_I', 'm': 'Malusha'},
'Judith_of_Bohemia': {'nm': 'Judith of Bohemia', 'url': 'Judith_of_Bohemia', 'b': '/58Prague, Bohemia, c. 1056', 'd': 'Pock, Poland, 25 December 1086', 'g': 0, 's': 'n', 'yb': 1056, 'yd': 1086, 'f': 'Vratislaus_II_of_Bohemia', 'm': 'Adelaide_of_Hungary'},
'Vratislaus_II_of_Bohemia': {'nm': 'Vratislaus II of Bohemia', 'url': 'Vratislaus_II_of_Bohemia', 'b': 'Bohemia, c. 1032', 'd': 'Bohemia, 14 January 1092', 'g': 1, 's': 'n', 'yb': 1032, 'yd': 1092, 'f': 'Bretislaus_I_of_Bohemia', 'm': 'Judith_of_Schweinfurt'},
'Bretislaus_I_of_Bohemia': {'nm': 'Bretislav I', 'url': 'Bretislaus_I_of_Bohemia', 'b': 'between 1002 and 1005', 'd': 'Chrudim, 10 January 1055', 'g': 1, 's': 'n', 'yb': 1005, 'yd': 1055, 'f': 'Old%C5%99ich_of_Bohemia', 'm': 'Bo%C5%BEena_(K%C5%99esinov%C3%A1)'},
'Old%C5%99ich_of_Bohemia': {'nm': 'Oldich, Duke of Bohemia', 'url': 'Old%C5%99ich_of_Bohemia', 'b': 'c. 975', 'd': '11 November 1034', 'g': 1, 's': 'n', 'yb': 975, 'yd': 1034, 'f': 'Boleslaus_II_of_Bohemia', 'm': 'Adiva'},
'Boleslaus_II_of_Bohemia': {'nm': 'Boleslaus II, Duke of Bohemia', 'url': 'Boleslaus_II_of_Bohemia', 'b': 'c. 927/928', 'd': '7 February 999', 'g': 1, 's': 'n', 'yb': 928, 'yd': 999, 'f': 'Boleslaus_I,_Duke_of_Bohemia', 'm': 'Biagota'},
'Biagota': {'nm': 'Biagota', 'url': 'Biagota', 'b': 'c. 901', 'g': 0, 's': 'n', 'yb': 901, 'f': 'unknown'},
'Adiva': {'nm': 'Adiva', 'url': 'Adiva', 'g': 0, 's': 'n', 'f': 'unknown'},
'Bo%C5%BEena_(K%C5%99esinov%C3%A1)': {'nm': 'Boena (Kesinov)', 'url': 'Bo%C5%BEena_(K%C5%99esinov%C3%A1)', 'd': 'after 1052', 'g': 0, 's': 'n', 'yd': 1052, 'f': 'Kesina'},
'Kesina': {'nm': 'Kesina', 'g': 1},
'Judith_of_Schweinfurt': {'nm': 'Judith of Schweinfurt', 'url': 'Judith_of_Schweinfurt', 'b': 'before 1003', 'd': '2 August 1058', 'g': 0, 's': 'n', 'yb': 1003, 'yd': 1058, 'f': 'Henry_of_Schweinfurt', 'm': 'Gerberga_of_Gleiberg'},
'Henry_of_Schweinfurt': {'nm': 'Henry of Schweinfurt', 'url': 'Henry_of_Schweinfurt', 'b': 'c. 970', 'd': '18 September 1017', 'g': 1, 's': 'n', 'yb': 970, 'yd': 1017, 'f': 'Berthold_of_Schweinfurt', 'm': 'Eilika of Walbeck'},
'Berthold_of_Schweinfurt': {'nm': 'Berthold of Schweinfurt', 'url': 'Berthold_of_Schweinfurt', 'd': '15 February 980', 'g': 1, 's': 'n', 'yd': 980, 'f': 'unknown'},
'Eilika of Walbeck': {'nm': 'Eilika of Walbeck', 'g': 0},
'Gerberga_of_Gleiberg': {'nm': 'Gerberga of Gleiberg', 'url': 'Gerberga_of_Gleiberg', 'b': 'c. 970', 'd': 'after 1036', 'g': 0, 's': 'n', 'yb': 970, 'yd': 1036, 'f': 'Herbert_of_Wetterau', 'm': 'Irmtrud of Avalgau (957 1020)'},
'Adelaide_of_Hungary': {'nm': 'Adelaide of Hungary', 'url': 'Adelaide_of_Hungary', 'b': 'c. 1040', 'd': '27 January 1062', 'g': 0, 's': 'n', 'yb': 1040, 'yd': 1062, 'f': 'Andrew_I_of_Hungary', 'm': 'Anastasia_of_Kiev'},
'Andrew_I_of_Hungary': {'nm': 'Andrew I of Hungary', 'url': 'Andrew_I_of_Hungary', 'b': 'c. 1015', 'd': 'Zirc, Kingdom of Hungary, before 6 December 1060', 'g': 1, 's': 'n', 'yb': 1015, 'yd': 1060, 'f': 'Vazul', 'm': 'a lady from the Clan Ttony'},
'Vazul': {'nm': 'Vazul', 'url': 'Vazul', 'b': 'before 997', 'd': '1031 or 1032', 'g': 1, 's': 'n', 'yb': 997, 'yd': 1032, 'f': 'Michael_of_Hungary'},
'Michael_of_Hungary': {'nm': 'Michael of Hungary', 'url': 'Michael_of_Hungary', 'b': 'c. 960', 'd': 'c. 977 or 995', 'g': 1, 's': 'n', 'yb': 960, 'yd': 995, 'f': 'Taksony_of_Hungary'},
'Taksony_of_Hungary': {'nm': 'Taksony of Hungary', 'url': 'Taksony_of_Hungary', 'b': 'c. 931', 'd': 'early 970', 'g': 1, 's': 'n', 'yb': 931, 'yd': 970, 'f': 'Zolt%C3%A1n_of_Hungary', 'm': 'Menumorut'},
'Zolt%C3%A1n_of_Hungary': {'nm': 'Zoltn of Hungary', 'url': 'Zolt%C3%A1n_of_Hungary', 'b': 'c. 880 or c. 903', 'd': 'c. 950', 'g': 1, 's': 'n', 'yb': 903, 'yd': 950, 'f': '%C3%81rp%C3%A1d'},
'%C3%81rp%C3%A1d': {'nm': 'rpd', 'url': '%C3%81rp%C3%A1d', 'b': 'c. 845', 'd': 'c. 907', 'g': 1, 's': 'n', 'yb': 845, 'yd': 907, 'f': '%C3%81lmos'},
'%C3%81lmos': {'nm': 'lmos', 'url': '%C3%81lmos', 'b': 'c. 820', 'd': 'Transylvania, c. 895', 'g': 1, 's': 'n', 'yb': 820, 'yd': 895, 'f': '%C3%9Cgyek', 'm': 'Emese'},
'Edemen': {'nm': 'Edemen', 'g': 1, 's': 'n', 'f': 'Prince_Csaba'},
'%C3%9Cgyek': {'nm': 'gyek', 'url': '%C3%9Cgyek', 'd': 'after 818', 'g': 1, 's': 'n', 'yd': 818, 'f': 'Edemen', 'm': 'Aracsilla of Emese'},
'Prince_Csaba': {'nm': 'Prince Csaba', 'url': 'Prince_Csaba', 'g': 1, 's': 'n', 'f': 'Attila'},
'Aracsilla of Emese': {'nm': 'Aracsilla of Emese', 'g': 0},
'Emese': {'nm': 'Emese', 'url': 'Emese', 'g': 0, 's': 'n', 'f': 'nedbelia'},
'nedbelia': {'nm': 'nedbelia', 'g': 1},
'Menumorut': {'nm': 'Menumorut', 'url': 'Menumorut', 'g': 0, 's': 'n', 'f': 'unknown'},
'a lady from the Clan Ttony': {'nm': 'a lady from the Clan Ttony', 'g': 0},
'Anastasia_of_Kiev': {'nm': 'Anastasia of Kiev', 'url': 'Anastasia_of_Kiev', 'b': 'c. 1023', 'd': '[aged ~51/73]Admont Abbey, Styria, 1074/1096', 'g': 0, 's': 'n', 'yb': 1023, 'yd': 1096, 'f': 'unknown'},
'Zbyslava_of_Kiev': {'nm': 'Zbyslava of Kiev', 'url': 'Zbyslava_of_Kiev', 'b': '/90, c. 1085', 'd': 'c. 1114', 'g': 0, 's': 'n', 'yb': 1085, 'yd': 1114, 'f': 'Sviatopolk_II_of_Kiev', 'm': 'Premyslid'},
'Sviatopolk_II_of_Kiev': {'nm': 'Sviatopolk II of Kiev', 'url': 'Sviatopolk_II_of_Kiev', 'b': 'November 8, 1050', 'd': 'Vyshhorod, April 16, 1113', 'g': 1, 's': 'n', 'yb': 1050, 'yd': 1113, 'f': 'unknown'},
'Premyslid': {'nm': 'Pemyslid dynasty', 'url': 'Premyslid', 'g': 0, 's': 'n', 'f': 'unknown'},
'Agnes_of_Babenberg': {'nm': 'Agnes of Babenberg', 'url': 'Agnes_of_Babenberg', 'b': 'c. 1108/1113', 'd': 'Altenburg, Holy Roman Empire, 24/25 January 1163', 'g': 0, 's': 'n', 'yb': 1113, 'yd': 1163, 'f': 'Leopold_III,_Margrave_of_Austria', 'm': 'Agnes_of_Germany'},
'Leopold_III,_Margrave_of_Austria': {'nm': 'Leopold III, Margrave of Austria', 'url': 'Leopold_III,_Margrave_of_Austria', 'b': 'Babenberg castle, Gars am Kamp, Austria, 1073', 'd': 'Klosterneuburg abbey, Lower Austria, Austria, 15 November 1136', 'g': 1, 's': '15 November', 'yb': 1073, 'yd': 1136, 'f': 'unknown'},
'Agnes_of_Germany': {'nm': 'Agnes of Waiblingen', 'url': 'Agnes_of_Germany', 'b': '1072', 'd': 'Klosterneuburg, 24 September 1143', 'g': 0, 's': 'n', 'yb': 1072, 'yd': 1143, 'f': 'Henry_IV,_Holy_Roman_Emperor', 'm': 'Bertha_of_Savoy'},
'Henry_IV,_Holy_Roman_Emperor': {'nm': 'Henry IV, Holy Roman Emperor', 'url': 'Henry_IV,_Holy_Roman_Emperor', 'b': 'Imperial Palace of Goslar, Saxony, 11 November 1050', 'd': 'Lige, Lower Lorraine, 7 August 1106', 'g': 1, 's': 'n', 'yb': 1050, 'yd': 1106, 'f': 'Henry_III,_Holy_Roman_Emperor', 'm': 'Agnes_of_Poitou'},
'Henry_III,_Holy_Roman_Emperor': {'nm': 'Henry III, Holy Roman Emperor', 'url': 'Henry_III,_Holy_Roman_Emperor', 'b': '28 October 1016', 'd': 'Bodfeld, 5 October 1056', 'g': 1, 's': 'n', 'yb': 1016, 'yd': 1056, 'f': 'Conrad_II,_Holy_Roman_Emperor', 'm': 'Gisela_of_Swabia'},
'Conrad_II,_Holy_Roman_Emperor': {'nm': 'Conrad II, Holy Roman Emperor', 'url': 'Conrad_II,_Holy_Roman_Emperor', 'b': 'Speyer, Duchy of Franconia, Kingdom of Germany, Holy Roman Empire, c. 989/990', 'd': 'Utrecht, Lower Lorraine, Kingdom of Germany, Holy Roman Empire, 4 June 1039', 'g': 1, 's': 'n', 'yb': 990, 'yd': 1039, 'f': 'Henry,_Count_of_Speyer', 'm': 'Adelaide_of_Metz'},
'Henry,_Count_of_Speyer': {'nm': 'Henry of Speyer', 'url': 'Henry,_Count_of_Speyer', 'b': 'c. 970', 'd': 'between 989 and 992', 'g': 1, 's': 'n', 'yb': 970, 'yd': 992, 'f': 'Otto_von_Worms', 'm': 'Judith'},
'Otto_von_Worms': {'nm': 'Otto I, Duke of Carinthia', 'url': 'Otto_von_Worms', 'b': 'c. 950', 'd': '4 November 1004', 'g': 1, 's': 'n', 'yb': 950, 'yd': 1004, 'f': 'Conrad,_Duke_of_Lorraine', 'm': 'Liutgard_of_Saxony_(died_953)'},
'Conrad,_Duke_of_Lorraine': {'nm': 'Conrad, Duke of Lorraine', 'url': 'Conrad,_Duke_of_Lorraine', 'b': 'c. 922', 'd': 'Lechfeld plain, near Augsburg, Swabia, 10 August 955', 'g': 1, 's': 'n', 'yb': 922, 'yd': 955, 'f': 'Werner_V_(Salian)', 'm': 'Hicha of Swabia'},
'Werner_V_(Salian)': {'nm': 'Werner V (Salian)', 'url': 'Werner_V_(Salian)', 'b': 'c. 899', 'd': 'c. 935', 'g': 1, 's': 'n', 'yb': 899, 'yd': 935, 'f': 'presumably Werner IV', 'm': 'presumably Oda'},
'presumably Werner IV': {'nm': 'presumably Werner IV', 'g': 1},
'presumably Oda': {'nm': 'presumably Oda', 'g': 0},
'Hicha of Swabia': {'nm': 'Hicha of Swabia', 'g': 0},
'Liutgard_of_Saxony_(died_953)': {'nm': 'Liutgard of Saxony (died 953)', 'url': 'Liutgard_of_Saxony_(died_953)', 'b': 'Magdeburg, Saxony, 932', 'd': 'Mainz, Franconia, 18 November 953', 'g': 0, 's': 'n', 'yb': 932, 'yd': 953, 'f': 'Otto_the_Great', 'm': 'Eadgyth'},
'Eadgyth': {'nm': 'Eadgyth', 'url': 'Eadgyth', 'b': 'c. 910', 'd': 'Magdeburg, Saxony, 946', 'g': 0, 's': 'n', 'yb': 910, 'yd': 946, 'f': 'Edward_the_Elder', 'm': '%C3%86lffl%C3%A6d,_wife_of_Edward_the_Elder'},
'%C3%86lffl%C3%A6d,_wife_of_Edward_the_Elder': {'nm': 'lffld (wife of Edward the Elder)', 'url': '%C3%86lffl%C3%A6d,_wife_of_Edward_the_Elder', 'g': 0, 's': 'n', 'f': 'thelhelm'},
'thelhelm': {'nm': 'thelhelm', 'g': 1},
'Judith': {'nm': 'Book of Judith(obscure)', 'g': 0, 'f': 'unknown'},
'Adelaide_of_Metz': {'nm': 'Adelaide of Metz', 'url': 'Adelaide_of_Metz', 'b': 'Egisheim, 970', 'd': 'hringen, 19 May 1046', 'g': 0, 's': 'n', 'yb': 970, 'yd': 1046, 'f': 'unknown'},
'Gisela_of_Swabia': {'nm': 'Gisela of Swabia', 'url': 'Gisela_of_Swabia', 'b': 'c. 990', 'd': 'Imperial Palace of Goslar, Saxony, 15 February 1043', 'g': 0, 's': 'n', 'yb': 990, 'yd': 1043, 'f': 'Herman_II,_Duke_of_Swabia', 'm': 'Gerberga_of_Burgundy'},
'Herman_II,_Duke_of_Swabia': {'nm': 'Herman II, Duke of Swabia', 'url': 'Herman_II,_Duke_of_Swabia', 'd': '4 May 1003', 'g': 1, 's': 'n', 'yd': 1003, 'f': 'Conrad_I,_Duke_of_Swabia'},
'Conrad_I,_Duke_of_Swabia': {'nm': 'Conrad I, Duke of Swabia', 'url': 'Conrad_I,_Duke_of_Swabia', 'b': '915/920', 'd': '20 August 997', 'g': 1, 's': 'n', 'yb': 920, 'yd': 997, 'f': 'unknown'},