geni 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (53) hide show
  1. data/.gitignore +2 -1
  2. data/README.md +8 -3
  3. data/Rakefile +9 -0
  4. data/geni.gemspec +7 -15
  5. data/lib/geni.rb +8 -2
  6. data/lib/geni/base.rb +30 -3
  7. data/lib/geni/client.rb +41 -19
  8. data/lib/geni/document.rb +9 -0
  9. data/lib/geni/photo.rb +10 -0
  10. data/lib/geni/profile.rb +68 -37
  11. data/lib/geni/profile/immediate_family.rb +51 -0
  12. data/lib/geni/project.rb +19 -0
  13. data/lib/geni/taggable.rb +27 -0
  14. data/lib/geni/union.rb +15 -0
  15. data/lib/geni/video.rb +9 -0
  16. data/spec/geni/client_spec.rb +79 -0
  17. data/spec/geni/document_spec.rb +53 -0
  18. data/spec/geni/immediate_family_spec.rb +45 -0
  19. data/spec/geni/photo_spec.rb +67 -0
  20. data/spec/geni/profile_spec.rb +73 -0
  21. data/spec/geni/project_spec.rb +44 -0
  22. data/spec/geni/union_spec.rb +44 -0
  23. data/spec/geni/video_spec.rb +56 -0
  24. data/spec/spec_helper.rb +91 -0
  25. data/spec/support/mocked_responses/06668c1bc97e251b3c2965712e3b990e.json +1 -0
  26. data/spec/support/mocked_responses/09df004f19d20d8d685db52796b552bf.json +1 -0
  27. data/spec/support/mocked_responses/12536c37e1bcef230f105a0fa930eae9.json +1 -0
  28. data/spec/support/mocked_responses/155ed9f9c6912c19cd4d6be2ad4b9163.json +1 -0
  29. data/spec/support/mocked_responses/1b640e767a27039b60daab80aa3e38da.json +1 -0
  30. data/spec/support/mocked_responses/44795c1cebac8aee4c72ab4cde5b7c34.json +1 -0
  31. data/spec/support/mocked_responses/4e55df6914e067b371e7ea54ac372591.json +1 -0
  32. data/spec/support/mocked_responses/55c9a8f9e64187f2e7389b7cecec4bd0.json +1 -0
  33. data/spec/support/mocked_responses/5643d7ffaa0b17a4340b57446228f455.json +1 -0
  34. data/spec/support/mocked_responses/6df2af74f5544a90b96921edc9aa346d.json +1 -0
  35. data/spec/support/mocked_responses/7215a02ec26d1c9df055275958824c7b.json +1 -0
  36. data/spec/support/mocked_responses/7c4840e03bece51bb7154893682ec2a6.json +1 -0
  37. data/spec/support/mocked_responses/9ae308e89eb74fc5aea5164c8affa422.json +1 -0
  38. data/spec/support/mocked_responses/9e1dcf9ed89704ecac0e1734f9ac9e6e.json +1 -0
  39. data/spec/support/mocked_responses/a060207b22ab180a065704b8dd031511.json +1 -0
  40. data/spec/support/mocked_responses/a4a8ee1c8c387c8cad34c7c62f2d1d27.json +1 -0
  41. data/spec/support/mocked_responses/a5a1df59373b2159fbd3b906b9494f6f.json +1 -0
  42. data/spec/support/mocked_responses/b28e773e9568bf5e2ac10e425241bf51.json +1 -0
  43. data/spec/support/mocked_responses/b4856ae6ff428888301f716b52ea161b.json +1 -0
  44. data/spec/support/mocked_responses/b73322abb23cf869241bda85b20080f5.json +1 -0
  45. data/spec/support/mocked_responses/c21daf2c09c09b947b5b8de0a69278d9.json +1 -0
  46. data/spec/support/mocked_responses/c234b7016ed809af64cfaf699a509512.json +1 -0
  47. data/spec/support/mocked_responses/d2e9479730282f7493eaf6513497d454.json +1 -0
  48. data/spec/support/mocked_responses/d5b2f2087b8831ce4df5e7e9f5a1085a.json +1 -0
  49. data/spec/support/mocked_responses/dee607809468ee9a94e56eeae28ecc34.json +1 -0
  50. data/spec/support/mocked_responses/deea226a6d94d6165febb07a56ba4261.json +1 -0
  51. data/spec/support/mocked_responses/f4f38a4038abc4227a1b4b18fd12b978.json +1 -0
  52. metadata +83 -8
  53. data/lib/geni/family.rb +0 -39
@@ -0,0 +1,91 @@
1
+ $LOAD_PATH.unshift File.dirname(File.expand_path(__FILE__)) + '/lib'
2
+
3
+ require 'rubygems'
4
+ require 'digest/md5'
5
+ require 'oauth2'
6
+ require 'geni'
7
+
8
+ module MockedResponsesHelper
9
+ def get_mocked_response(url)
10
+ identifier = Digest::MD5.hexdigest(url.gsub(/(\/|\?)/, '_'))
11
+ path = "spec/support/mocked_responses/#{identifier}.json"
12
+ if File.exists?(path)
13
+ File.read(path)
14
+ else
15
+ response = `curl #{url}`
16
+ File.open(path, 'w') do |f|
17
+ f.write response
18
+ end
19
+ response
20
+ end
21
+ end
22
+ end
23
+
24
+ module GeniSpecHelper
25
+ def get_geni_client
26
+ client = Geni::Client.new({
27
+ :app_id => 'FAKE_APP_ID',
28
+ :app_secret => 'FAKE_APP_SECRET',
29
+ :token => 'FAKE_OAUTH_TOKEN'
30
+ })
31
+
32
+ mock_urls = [
33
+ '/api/profile',
34
+ '/api/profile-90990730',
35
+ '/api/profile-90990739/immediate-family',
36
+ '/api/profile-90990897,90990889',
37
+ '/api/profile-90990832,90990843,90990667',
38
+ '/api/profile-90990985,90990977,90990923,90990957',
39
+ '/api/profile-90990667',
40
+ '/api/profile-90990667,90990668',
41
+ '/api/union-12276689',
42
+ '/api/photo-22466661',
43
+ '/api/project-6',
44
+ '/api/document-339953',
45
+ '/api/profile-109599192',
46
+ '/api/document-339953/tags',
47
+ '/api/profile-90990667/immediate-family',
48
+ '/api/profile-90990667/photos',
49
+ '/api/profile-90990667/videos',
50
+ '/api/profile-90990667/documents',
51
+ '/api/project-6/collaborators',
52
+ '/api/project-6/profiles',
53
+ '/api/project-6/followers',
54
+ '/api/video-1/tags',
55
+ '/api/profile-109599192',
56
+ '/api/profile-34069147,55243122,22432,52956166,17217530,71684074,113176368,58021742',
57
+ '/api/profile-37184377,104782442,30281154,26994163,25369660,21351140,103396622,56364915,4344802,7712690,21351129,20730383,11100005,4317082,3527751,4379529,29780568,4317326,17672882,30678724,21522719,28335975,3690728,4251352,20606274,6535565,92378177',
58
+ '/api/profile-34069147,55243122,22432,91947976,13347712,50487702,61008451,52956166,17217530,9087412,48377152,51993956,4926060,110665774,56135638,31078957,2275290,112048725,41047148,17354640,104803606,15130251,71684074,93546487,113176368,110038906,83672444,56654534,57591505,112588615,108772336,109100428,618351,57643235,49330918,58021742,118861761,119180796,119083346,118469212,109378679,121922069',
59
+ '/api/video-99385',
60
+ '/api/photo-22466661/tags',
61
+ '/api/profile-90990889',
62
+ '/api/profile-93909661,93909764,93217578',
63
+ '/api/profile-34069147,55243122,22432,91947976,13347712,50487702,61008451,52956166,17217530,9087412,48377152,51993956,4926060,110665774,56135638,31078957,2275290,112048725,41047148,17354640,104803606,15130251,71684074,93546487,113176368,110038906,83672444,56654534,57591505,112588615,108772336,109100428,618351,57643235,49330918,58021742,118861761,119180796,119083346,118469212,109378679',
64
+ '/api/video-99385/tags'
65
+ ]
66
+
67
+ client.oauth_client.connection.build do |b|
68
+ b.adapter :test do |stub|
69
+ mock_urls.each do |url|
70
+ stub.get("#{url}?access_token=FAKE_OAUTH_TOKEN") do |env|
71
+ [200, {}, get_mocked_response("https://www.geni.com#{url}?access_token=#{get_geni_token}")]
72
+ end
73
+ end
74
+ end
75
+ end
76
+
77
+ return client
78
+ end
79
+
80
+ def get_geni_token
81
+ ENV['GENI_OAUTH_TOKEN']
82
+ end
83
+ end
84
+
85
+ RSpec.configure do |config|
86
+ config.mock_with :rspec
87
+ config.include MockedResponsesHelper
88
+ config.include GeniSpecHelper
89
+ end
90
+
91
+ Faraday.default_adapter = :test
@@ -0,0 +1 @@
1
+ {"gender":"male","birth_date":"6/30/1986","locked":false,"email":"aurelien.malisart@gmail.com","birth_location":"Tournai, Walloon Region, Belgium","language":"en-US","url":"https://www.geni.com/api/profile-90990667","last_name":"Malisart","big_tree":false,"mugshot_urls":{"thumb":"http://photos.geni.com/p12/9c/91/60/19/534448388a766f20/00252_t.jpg","url":"https://www.geni.com/api/photo-22467102","medium":"http://photos.geni.com/p12/9c/91/60/19/534448388a766f20/00252_medium.jpg","original":"http://assets0.geni.com/media/p12/9c/91/60/19/534448388a766f20/00252_original.jpg","large":"http://photos.geni.com/p12/9c/91/60/19/534448388a766f20/00252_large.jpg","small":"http://photos.geni.com/p12/9c/91/60/19/534448388a766f20/00252_small.jpg","thumb2":"http://photos.geni.com/p12/9c/91/60/19/534448388a766f20/00252_t2.jpg"},"public":false,"unions":[],"claimed":true,"birth_date_parts":{"day":30,"month":6,"year":1986},"managers":[],"phone_numbers":[],"name":"Aur\u00e9lien Malisart","created_by":"https://www.geni.com/api/profile-90990667","birth_location_parts":{"city":"Tournai","country":"Belgium","state":"Walloon Region","latitude":50.6058658,"longitude":3.3884498},"id":"profile-90990667","guid":"6000000009077913616","middle_name":"Guy Julien","is_alive":true,"first_name":"Aur\u00e9lien","current_residence":"Mons, Walloon Region, Belgium","occupation":"Administrator \u0026 Developer","relationship":"yourself"}
@@ -0,0 +1 @@
1
+ {"results":[{"gender":"male","url":"https://www.geni.com/api/profile-37184377","burial_date_parts":{"day":3,"month":11,"year":1232},"birth_date":"1172","middle_name":"de Blundeville","last_name":"de Meschines","death_date":"10/28/1232","suffix":"4th Earl of Chester","birth_location":"Oswestry, Powis, Wales","first_name":"Ranulf (Ranulph)","burial_location":"St Werburg`s, Chester, Cheshire, England","public":true,"death_date_parts":{"day":28,"month":10,"year":1232},"birth_date_parts":{"year":1172},"death_location":"Wallingford, Berkshire, England","id":"profile-37184377","burial_date":"11/3/1232","is_alive":false,"display_name":"Ranulf de Blundeville, 4th Earl of Chester","locked":false},{"gender":"male","url":"https://www.geni.com/api/profile-104782442","last_name":"de Montbegon","death_date":"c. 1226","suffix":"Surety of the Magna Carta","first_name":"Roger","public":true,"death_date_parts":{"circa":true,"year":1226},"birth_date_parts":{},"id":"profile-104782442","is_alive":false,"locked":false},{"gender":"male","url":"https://www.geni.com/api/profile-30281154","burial_date_parts":{"day":30,"month":8,"circa":true,"year":1230},"birth_date":"1155","last_name":"de Say","death_date":"10/24/1230","suffix":"Lord of West Greenwich","birth_location":"Sussex, England","first_name":"Geoffrey II","burial_location":"Hospital of St. Mary, Dover, England","public":true,"death_date_parts":{"day":24,"month":10,"year":1230},"birth_date_parts":{"year":1155},"death_location":"Poitou, Aquitaine, France","id":"profile-30281154","burial_date":"c. 8/30/1230","is_alive":false,"locked":false},{"gender":"male","url":"https://www.geni.com/api/profile-26994163","burial_date_parts":{},"birth_date":"c. 1170","middle_name":"Radulph","last_name":"de Percy","death_date":"August 1244","suffix":"V","birth_location":"Northumberland - son of Sir Henry","first_name":"Richard","burial_location":"Fountains Abbey","public":true,"death_date_parts":{"month":8,"year":1244},"birth_date_parts":{"circa":true,"year":1170},"death_location":"England - 5th Baron de Percy","id":"profile-26994163","is_alive":false,"locked":false},{"gender":"male","url":"https://www.geni.com/api/profile-25369660","burial_date_parts":{},"birth_date":"1172","middle_name":"de Mowbray Baron","last_name":"de Mowbray","death_date":"3/24/1223","suffix":"Lord of Axholme, Surety of the Magna Carta","birth_location":"Slingsby \u0026 Thirsk, North Ride Yorkshire, England","first_name":"William","public":true,"death_date_parts":{"day":24,"month":3,"year":1223},"birth_date_parts":{"year":1172},"death_location":"Axholme, Lincolnshire, England","id":"profile-25369660","is_alive":false,"display_name":"William de Mowbray, MCB","locked":false},{"gender":"male","url":"https://www.geni.com/api/profile-21351140","birth_date":"1162","last_name":"de Montfichet","suffix":"Baron of Stanstead, Surety of the Magna Carta","first_name":"Richard","public":true,"death_date_parts":{},"birth_date_parts":{"year":1162},"id":"profile-21351140","is_alive":false,"locked":false},{"gender":"male","url":"https://www.geni.com/api/profile-103396622","burial_date_parts":{},"birth_date":"1170","last_name":"de Mandeville","death_date":"2/23/1216","suffix":"Earl of Essex and Gloucester, Surety of the Magna Carta","birth_location":"Essex, England","first_name":"Geoffrey","burial_location":"Trinity Priory, London, Middlesex, England","public":true,"death_date_parts":{"day":23,"month":2,"year":1216},"birth_date_parts":{"year":1170},"death_location":"London, Middlesex, England","id":"profile-103396622","is_alive":false,"locked":true},{"gender":"male","url":"https://www.geni.com/api/profile-56364915","birth_date":"1180","last_name":"de Lanvaley","death_date":"1217","suffix":"III","birth_location":"Great Bromley, Essex, , England","first_name":"William","public":true,"death_date_parts":{"year":1217},"birth_date_parts":{"year":1180},"death_location":"Great Bromley, Essex, , England","id":"profile-56364915","is_alive":false,"display_name":"William de Lanvaley III, Lord of Stanway, Surety of the Magna Carta","locked":false},{"gender":"male","url":"https://www.geni.com/api/profile-4344802","burial_date_parts":{},"birth_date":"c. 1192","last_name":"de Lacy","death_date":"7/22/1240","suffix":"Surety of Magna Carta","birth_location":"Lincolnshire, UK","first_name":"John","burial_location":"Cistercian Abbey of Stanlaw, Chester","public":true,"death_date_parts":{"day":22,"month":7,"year":1240},"birth_date_parts":{"circa":true,"year":1192},"death_location":"Cheshire, UK","id":"profile-4344802","is_alive":false,"locked":false},{"gender":"male","url":"https://www.geni.com/api/profile-7712690","birth_date":"1167","middle_name":"De","last_name":"Huntingfield","death_date":"1/25/1221","suffix":"Sheriff of Norfolk and Suffolk, Surety of the Magna Carta","birth_location":"Huntingfield, Suffolk, England","first_name":"William","public":true,"death_date_parts":{"day":25,"month":1,"year":1221},"birth_date_parts":{"year":1167},"death_location":"On A Crusade","id":"profile-7712690","is_alive":false,"locked":false},{"gender":"male","url":"https://www.geni.com/api/profile-21351129","last_name":"de Forz","death_date":"3/29/1241","suffix":"Count d'Aumale (of Albemarle), Surety of the Magna Carta","first_name":"William II","public":true,"death_date_parts":{"day":29,"month":3,"year":1241},"birth_date_parts":{},"id":"profile-21351129","is_alive":false,"locked":false},{"gender":"male","url":"https://www.geni.com/api/profile-20730383","burial_date_parts":{},"birth_date":"c. 1162","middle_name":"FitzWalter","last_name":"de Clare","death_date":"12/9/1235","suffix":"of Dunmow Castle, Surety of the Magna Carta","birth_location":"Dunmow Castle, England","first_name":"Robert","burial_location":"High Altar Of Dunmow Priory, Dunmow Castle, England","public":true,"death_date_parts":{"day":9,"month":12,"year":1235},"birth_date_parts":{"circa":true,"year":1162},"death_location":"Siege of Damietta, Egypt","id":"profile-20730383","is_alive":false,"locked":false},{"gender":"male","url":"https://www.geni.com/api/profile-11100005","burial_date_parts":{"year":1227},"birth_date":"1172","middle_name":"\"Furfan\"","last_name":"de Ros","death_date":"c. 12/11/1226","suffix":"1st Lord of Helmsley, Surety of the Magna Carta","birth_location":"Hamlake, West Riding, Yorkshire, England","first_name":"Robert","burial_location":"Temple Church, London, England","public":true,"death_date_parts":{"day":11,"month":12,"circa":true,"year":1226},"birth_date_parts":{"year":1172},"death_location":"Helmsley, Holderness, Yorkshire, England","id":"profile-11100005","burial_date":"1227","is_alive":false,"display_name":"Robert, 1st Lord Ros of Helmsley","locked":true},{"baptism_date":"c. 1164","gender":"male","url":"https://www.geni.com/api/profile-4317082","burial_date_parts":{},"birth_date":"c. 1164","baptism_date_parts":{"circa":true,"year":1164},"last_name":"Vere","death_date":"11/1/1221","suffix":"3rd Earl of Oxford","birth_location":"Hatfield, Broad Oaks, Essex, UK","first_name":"Robert","burial_location":"Benedictine Priory, Hatfield, Broad Oaks, Essex, UK","public":true,"death_date_parts":{"day":1,"month":11,"year":1221},"birth_date_parts":{"circa":true,"year":1164},"death_location":"Hedingham Castle, Essex, UK","id":"profile-4317082","is_alive":false,"display_name":"Robert Vere, 3rd Earl of Oxford","locked":false},{"gender":"male","url":"https://www.geni.com/api/profile-3527751","burial_date_parts":{"year":1249},"birth_date":"8/24/1198","middle_name":"\"The Peaceful\"","last_name":"King of Scotland","death_date":"7/8/1249","suffix":"King of Scotland","birth_location":"Haddington, East Lothian, Scotland","first_name":"Alexander II","burial_location":"Melrose Abbey, Melrose, Roxburghshire, Scotland","public":true,"death_date_parts":{"day":8,"month":7,"year":1249},"birth_date_parts":{"day":24,"month":8,"year":1198},"death_location":"Kerrera, Argyll, Strathclyde, Scotland","id":"profile-3527751","burial_date":"1249","is_alive":false,"display_name":"Alexander II Dunkeld, King of Scots","locked":false},{"gender":"male","url":"https://www.geni.com/api/profile-4379529","burial_date_parts":{"month":4,"year":1240},"birth_date":"1173","middle_name":"\"The Great\"","last_name":"ap Iowerth","death_date":"4/11/1240","suffix":"Prince of Wales and Gwynedd","birth_location":"Aberffraw Castle, Caernarvonshire, Wales","first_name":"Llewelyn","burial_location":"Aberconwy, Caernarvon, Wales, United Kingdom","public":true,"death_date_parts":{"day":11,"month":4,"year":1240},"birth_date_parts":{"year":1173},"death_location":"Aberconwy, Arllechwedd Isaf, Caernarvonshire, Wales","id":"profile-4379529","burial_date":"April 1240","is_alive":false,"display_name":"Llywelyn the Great","locked":false},{"gender":"male","url":"https://www.geni.com/api/profile-29780568","birth_date":"1169","last_name":"de Vesci","death_date":"6/12/1216","suffix":"Surety of the Magna Carta","birth_location":"Alnwick Castle, Northumberland, England","first_name":"Eustace","public":true,"death_date_parts":{"day":12,"month":6,"year":1216},"birth_date_parts":{"year":1169},"death_location":"Shot through the head by an arrow while besieging Barnard Castle, Durham, England","id":"profile-29780568","is_alive":false,"locked":false},{"gender":"male","url":"https://www.geni.com/api/profile-4317326","burial_date_parts":{},"last_name":"Quincey","death_date":"11/3/1219","suffix":"IV","birth_location":"Winchester, Hampshire, England","first_name":"Saher/Saier/Saer III","burial_location":"Acre, Latin Kingdom of Jerusalem","public":true,"death_date_parts":{"day":3,"month":11,"year":1219},"birth_date_parts":{},"death_location":"Acre, Latin Kingdom of Jerusalem","id":"profile-4317326","is_alive":false,"locked":false},{"gender":"male","url":"https://www.geni.com/api/profile-17672882","burial_date_parts":{"day":15,"month":4,"year":1231},"birth_date":"c. May 1190","last_name":"Marshal","death_date":"4/6/1231","suffix":"2nd Earl Pembroke (2nd creation), Surety of the Magna Carta","birth_location":"Pembroke, Pembrokeshire, Wales","first_name":"William","burial_location":"Temple Church, London, Middlesex, England","public":true,"death_date_parts":{"day":6,"month":4,"year":1231},"birth_date_parts":{"month":5,"circa":true,"year":1190},"death_location":"Spain","id":"profile-17672882","burial_date":"4/15/1231","is_alive":false,"locked":true},{"gender":"male","url":"https://www.geni.com/api/profile-30678724","burial_date_parts":{"circa":true,"year":1216},"birth_date":"c. 1176","middle_name":"(Sir)","last_name":"Malet","death_date":"1216","suffix":"Baron of Curry Malet, Surety of the Magna Carta","birth_location":"Curry Malet, Somerset, England","first_name":"William","burial_location":"Curry Malet, Somerset, England","public":true,"death_date_parts":{"year":1216},"birth_date_parts":{"circa":true,"year":1176},"death_location":"Curry Malet, Somersetshire, England","id":"profile-30678724","burial_date":"c. 1216","is_alive":false,"locked":true},{"gender":"male","url":"https://www.geni.com/api/profile-21522719","birth_date":"1188","middle_name":"FitzRobert","last_name":"of Clavering","death_date":"1241","suffix":"3rd Baron of Warkworth","birth_location":"Warkworth Castle, Alnwick, Northumberland, England","first_name":"John","public":true,"death_date_parts":{"year":1241},"birth_date_parts":{"year":1188},"death_location":"Warkworth Castle, Alnwick, Northumberland, England","id":"profile-21522719","is_alive":false,"locked":false},{"gender":"male","url":"https://www.geni.com/api/profile-28335975","burial_date_parts":{"day":5,"month":2,"year":1224},"birth_date":"1186","middle_name":"(1186)","last_name":"Bigod","death_date":"2/18/1225","suffix":"3rd Earl of Norfolk, Surety of the Magna Carta","birth_location":"Thetford, Norfolk, England","first_name":"Hugh","burial_location":"Thetford Church, Thetford, Norfolk, England","public":true,"death_date_parts":{"day":18,"month":2,"year":1225},"birth_date_parts":{"year":1186},"death_location":"Thetford, Norfolk, England","id":"profile-28335975","burial_date":"2/5/1224","is_alive":false,"display_name":"Hugh le Bigod, 3rd Earl of Norfolk","locked":false},{"gender":"male","url":"https://www.geni.com/api/profile-3690728","burial_date_parts":{"year":1218},"birth_date":"1162","middle_name":"FitzRoger","last_name":"de Clare","death_date":"12/30/1218","suffix":"4th Earl of Hertford, Surety of the Magna Carta","birth_location":"Tonbridge Castle, Kent, England","first_name":"Richard","burial_location":"Priory, St Neot's, Huntingdonshire, England","public":true,"death_date_parts":{"day":30,"month":12,"year":1218},"birth_date_parts":{"year":1162},"death_location":"Oxforshire, England","id":"profile-3690728","burial_date":"1218","is_alive":false,"display_name":"Richard FitzRoger de Clare, 4th Earl of Hertford","locked":false},{"gender":"male","url":"https://www.geni.com/api/profile-4251352","burial_date_parts":{"day":10,"month":11,"year":1230},"birth_date":"April 1180","last_name":"de Clare","death_date":"10/25/1230","suffix":"4th Earl of Hertford, 5th Earl of Gloucester","birth_location":"Hertford, Hertfordshire, England","first_name":"Gilbert","burial_location":", Tewksbury, Gloucester, England","public":true,"death_date_parts":{"day":25,"month":10,"year":1230},"birth_date_parts":{"month":4,"year":1180},"death_location":"Penros, Brittany, France","id":"profile-4251352","burial_date":"11/10/1230","is_alive":false,"display_name":"Gilbert de Clare, 4th Earl of Hertford","locked":false},{"gender":"male","url":"https://www.geni.com/api/profile-20606274","burial_date_parts":{"year":1220},"birth_date":"1177","middle_name":"(the Surety)","last_name":"de Bohun","death_date":"6/1/1220","suffix":"1st Earl of Hereford, Magna Carta Surety","birth_location":"Warwick, Warwickshire, England","first_name":"Henry","burial_location":"chapter-house of Llanthony Abbey, Gloucestershire, England","public":true,"death_date_parts":{"day":1,"month":6,"year":1220},"birth_date_parts":{"year":1177},"death_location":"during pilgrimage to the Holy Land (Palestine)","id":"profile-20606274","burial_date":"1220","is_alive":false,"display_name":"Henry de Bohun, Earl of Hereford, MCB","locked":false},{"gender":"male","url":"https://www.geni.com/api/profile-6535565","burial_date_parts":{"month":7,"year":1221},"birth_date":"1150","baptism_date_parts":{},"last_name":"Bigod","death_date":"7/2/1221","suffix":"Sir","birth_location":"Thetford, Norfolk, England","first_name":"Roger Bigod, 2nd Earl of Norfolk","burial_location":"Framlingham Castle, Suffolk, England or Thetford, Norfolk, England","public":true,"death_date_parts":{"day":2,"month":7,"year":1221},"birth_date_parts":{"year":1150},"death_location":"Thetford, Norfolk, England","id":"profile-6535565","burial_date":"July 1221","is_alive":false,"display_name":"Roger le Bigod II, 2nd Earl of Norfolk","locked":false},{"gender":"male","url":"https://www.geni.com/api/profile-92378177","birth_date":"1146","middle_name":"\"Brito\"","last_name":"d'Aubigny","death_date":"5/1/1236","suffix":"Lord of Belvoir","birth_location":"Belvoir Castle, Leicestershire, England","first_name":"William III","public":true,"death_date_parts":{"day":1,"month":5,"year":1236},"birth_date_parts":{"year":1146},"death_location":"Cainell By Rome, Latium, Italy","id":"profile-92378177","is_alive":false,"locked":true}]}
@@ -0,0 +1 @@
1
+ {"gender":"male","birth_date":"6/30/1986","locked":false,"email":"aurelien.malisart@gmail.com","birth_location":"Tournai, Walloon Region, Belgium","language":"en-US","url":"https://www.geni.com/api/profile-90990667","last_name":"Malisart","big_tree":false,"mugshot_urls":{"url":"https://www.geni.com/api/photo-22467102","medium":"https://assets0.geni.com/media/p12/9c/91/60/19/534448388a766f20/00252_medium.jpg","original":"https://assets0.geni.com/media/p12/9c/91/60/19/534448388a766f20/00252_original.jpg","thumb":"https://assets0.geni.com/media/p12/9c/91/60/19/534448388a766f20/00252_t.jpg","large":"https://assets0.geni.com/media/p12/9c/91/60/19/534448388a766f20/00252_large.jpg","small":"https://assets0.geni.com/media/p12/9c/91/60/19/534448388a766f20/00252_small.jpg","thumb2":"https://assets0.geni.com/media/p12/9c/91/60/19/534448388a766f20/00252_t2.jpg"},"public":false,"unions":[],"claimed":true,"birth_date_parts":{"day":30,"month":6,"year":1986},"managers":[],"phone_numbers":[],"name":"Aur\u00e9lien Malisart","created_by":"https://www.geni.com/api/profile-90990667","birth_location_parts":{"city":"Tournai","country":"Belgium","state":"Walloon Region","latitude":50.6058658,"longitude":3.3884498},"id":"profile-90990667","guid":"6000000009077913616","middle_name":"Guy Julien","is_alive":true,"first_name":"Aur\u00e9lien","current_residence":"Mons, Walloon Region, Belgium","occupation":"Administrator \u0026 Developer","relationship":"yourself"}
@@ -0,0 +1 @@
1
+ {"focus":{"birth_date":"12/18/1963","gender":"female","locked":false,"birth_location":"Tournai, Walloon Region, Belgium","big_tree":false,"last_name":"Malisart","url":"https://www.geni.com/api/profile-90990739","public":false,"claimed":false,"created_by":"https://www.geni.com/api/profile-90990667","name":"Carole MOINY","is_alive":true,"guid":"6000000009077881343","id":"profile-90990739","current_residence":"Jollain-Merlin, Walloon Region, Belgium","first_name":"Carole"},"nodes":{"union-31029120":{"edges":{"profile-90990897":{"rel":"partner"},"profile-90990985":{"rel":"child"},"profile-90990977":{"rel":"child"},"profile-90990889":{"rel":"partner"},"profile-90990923":{"rel":"child"},"profile-90990957":{"rel":"child"},"profile-90990739":{"rel":"child"}},"status":"current","url":"https://www.geni.com/api/union-31029120"},"profile-90990897":{"edges":{"union-31029120":{"rel":"partner"},"union-31029270":{"rel":"child"}},"gender":"female","last_name":"Moiny","url":"https://www.geni.com/api/profile-90990897","public":false,"is_alive":true,"id":"profile-90990897","first_name":"Arlette"},"profile-90990985":{"edges":{"union-31029120":{"rel":"child"},"union-31029233":{"rel":"partner"}},"gender":"female","last_name":"Meurisse","url":"https://www.geni.com/api/profile-90990985","public":false,"is_alive":true,"id":"profile-90990985","first_name":"Armelle"},"profile-90990667":{"edges":{"union-31029071":{"rel":"child"}},"gender":"male","last_name":"Malisart","url":"https://www.geni.com/api/profile-90990667","public":false,"is_alive":true,"id":"profile-90990667","first_name":"Aur\u00e9lien"},"profile-90990843":{"edges":{"union-31029071":{"rel":"child"}},"gender":"male","last_name":"Malisart","url":"https://www.geni.com/api/profile-90990843","public":false,"is_alive":true,"id":"profile-90990843","first_name":"Benjamin"},"profile-90990832":{"edges":{"union-31029071":{"rel":"child"}},"gender":"male","last_name":"Malisart","url":"https://www.geni.com/api/profile-90990832","public":false,"is_alive":true,"id":"profile-90990832","first_name":"Timothy"},"profile-90990977":{"edges":{"union-31029120":{"rel":"child"}},"gender":"male","last_name":"Moiny","url":"https://www.geni.com/api/profile-90990977","public":false,"is_alive":true,"id":"profile-90990977","first_name":"Luc"},"profile-90990889":{"edges":{"union-31029120":{"rel":"partner"},"union-31029277":{"rel":"child"}},"gender":"male","last_name":"Moiny","url":"https://www.geni.com/api/profile-90990889","public":false,"is_alive":true,"id":"profile-90990889","first_name":"Simon"},"profile-90990923":{"edges":{"union-31029120":{"rel":"child"},"union-31029181":{"rel":"partner"}},"gender":"female","last_name":"Moiny","url":"https://www.geni.com/api/profile-90990923","public":false,"is_alive":true,"id":"profile-90990923","first_name":"Fabienne"},"union-31029071":{"edges":{"profile-90990667":{"rel":"child"},"profile-90990843":{"rel":"child"},"profile-90990832":{"rel":"child"},"profile-90990739":{"rel":"partner"},"profile-90990730":{"rel":"partner"}},"status":"current","url":"https://www.geni.com/api/union-31029071"},"profile-90990957":{"edges":{"union-31029120":{"rel":"child"},"union-31029207":{"rel":"partner"}},"gender":"female","last_name":"Lef\u00e8vre","url":"https://www.geni.com/api/profile-90990957","public":false,"is_alive":true,"id":"profile-90990957","first_name":"B\u00e9reng\u00e8re"},"profile-90990739":{"edges":{"union-31029120":{"rel":"child"},"union-31029071":{"rel":"partner"}},"gender":"female","last_name":"Malisart","url":"https://www.geni.com/api/profile-90990739","public":false,"is_alive":true,"id":"profile-90990739","first_name":"Carole"},"profile-90990730":{"edges":{"union-31029110":{"rel":"child"},"union-31029071":{"rel":"partner"}},"gender":"male","last_name":"Malisart","url":"https://www.geni.com/api/profile-90990730","public":false,"is_alive":true,"id":"profile-90990730","first_name":"Alain"}}}
@@ -0,0 +1 @@
1
+ {"url":"https://www.geni.com/api/project-6","description":"The profiles included in this project are of the barons, bishops and abbots who created and witnessed the Magna Carta in 1215 and served as sureties for its enforcement.\r\n\r\n==Overview==\r\n\r\nThe Magna Carta was an English charter, originally issued in the year 1215. The charter first passed into law in 1225. The 1297 version, with the long title (originally in Latin) The Great Charter of the Liberties of England, and of the Liberties of the Forest, still remains on the statute books of England and Wales.\r\n\r\nThe 1215 Charter required King John of England to proclaim certain liberties and accept that his will was not arbitrary, for example by explicitly accepting that no \"freeman\" (in the sense of non-serf) could be punished except through the law of the land, a right which is still in existence today.\r\n\r\nMagna Carta was the first document forced onto an English King by a group of his subjects (the barons) in an attempt to limit his powers by law and protect their privileges. It was preceded and directly influenced by the 1100 Charter of Liberties, when King Henry I had specified particular areas where his powers would be limited.\r\n\r\nDespite its recognised importance, by the second half of the 19th century nearly all of its clauses had been repealed in their original form. Three clauses remain part of the law of England and Wales, however, and it is generally considered part of the uncodified constitution. Lord Denning described it as \"the greatest constitutional document of all times - the foundation of the freedom of the individual against the arbitrary authority of the despot\".[1] In a 2005 speech, Lord Woolf described it as \"first of a series of instruments that now are recognised as having a special constitutional status\" [2], the others being the Habeas Corpus Act, the Petition of Right, the Bill of Rights and the Act of Settlement.\r\n\r\nThe charter was an important part of the extensive historical process that led to the rule of constitutional law in the English speaking world, although it was \"far from unique, either in content or form\".[3] In practice, Magna Carta in the medieval period did not in general limit the power of kings, but by the time of the English Civil War it had become an important symbol for those who wished to show that the King was bound by the law. It influenced the early settlers in New England[4] and inspired later constitutional documents, including the United States Constitution.\r\n[5]\r\n\r\n(adapted from http://en.wikipedia.org/wiki/Magna_Carta)\r\n\r\nMany of the illuminated manuscript images on the profiles are from a manuscript from the George John Warren Vernon manuscript collection, bound after 1837, found on http://bookbinding.com/magna-carta:\r\n\"The escutcheons of the twenty-five barons \r\nwho were appointed to enforce the observance of the\r\nMagna Charta\r\ntogether with the will of\r\nKing John\r\nand the arms of the witnesses thereto.\"\r\nSee the complete collection here: http://bookbinding.com/magna-carta/before-restoration\r\n\r\n\r\n\r\n=Historical Persons to be Included=\r\n\r\n==Barons (Sureties for the enforcement of Magna Carta)==\r\n \t\r\n[http://www.geni.com/people/William-d-Aubigny-Lord-of-Belvoir/6000000009255472189 William d'Aubigny, Lord of Belvoir Castle]\r\n\r\n[http://www.geni.com/people/Roger-Bigod-2nd-Earl-of-Norfolk/6000000002606652260 Roger Bigod, Earl of Norfolk and Suffolk]\r\n\r\n[http://www.geni.com/people/Hugh-Bigod-3rd-Earl-of-Norfolk/6000000001126515902 Hugh Bigod, Heir to the Earldoms of Norfolk and Suffolk]\r\n\r\n[http://www.geni.com/people/Henry-de-Bohun/6000000001434670985 Henry de Bohun, Earl of Hereford]\r\n\r\n[http://www.geni.com/people/Richard-de-Clare-3rd-Earl-of-Hertford/6000000003645985053 Richard de Clare, Earl of Hertford]\r\n\r\n[http://www.geni.com/people/Gilbert-De-Clare-4th-Earl-of-Hertford/5167204065210119923 Gilbert de Clare, heir to the earldom of Hertford]\r\n\r\n[http://www.geni.com/people/John-of-Clavering/6000000003827280089 John FitzRobert, Lord of Warkworth Castle]\r\n\r\n[http://www.geni.com/people/Robert-de-Clare/6000000003827151457 Robert FitzWalter de Clare, Lord of Dunmow Castle]\r\n\r\n[http://www.geni.com/people/William-de-Forz/6000000000424798772 William de Fortibus, Earl of Albemarle]\r\n\r\nWilliam Hardel, **Mayor of the City of London\r\n\r\n[http://www.geni.com/people/William-de-Huntingfield/368756446860013200 William de Huntingfield, Sheriff of Norfolk and Suffolk]\r\n\r\n[http://www.geni.com/people/John-de-Lacy-1st-Earl-of-Lincoln/6000000000166150229 John de Lacy, Lord of Pontefract Castle]\r\n\r\n[http://www.geni.com/people/William-de-Lanvallei/6000000003827232851 William de Lanvallei, Lord of Standway Castle]\r\n\r\n[http://www.geni.com/people/William-Malet/6000000003693601810 William Malet, Sheriff of Somerset and Dorset] \r\n\r\n[http://www.geni.com/people/Geoffrey-de-Mandeville/6000000010020022175 Geoffrey de Mandeville, Earl of Essex and Gloucester]\r\n\r\n[http://www.geni.com/people/William-Marshal-2nd-Earl-of-Pembroke/6000000000424886987 William Marshall Jr, heir to the earldom of Pembroke]\r\n\r\n[http://www.geni.com/people/Roger-de-Montbegon/6000000010181023229 Roger de Montbegon, Lord of Hornby Castle, Lancashire] \r\n\t\r\n[http://www.geni.com/people/Richard-de-Montfichet/6000000000424798876 Richard de Montfichet, Baron of Stanstead]\r\n\r\n[http://www.geni.com/people/William-de-Mowbray/6000000000796884769 William de Mowbray, Lord of Axholme Castle] \r\n\r\n[http://www.geni.com/people/Richard-de-Percy/6000000000969942000 Richard de Percy, Baron]\r\n\r\n[http://www.geni.com/people/Saher-IV-de-Quincy-1st-Earl-of-Winchester/6000000003146930404 Saire/Saher de Quincy, Earl of Winchester] \r\n\r\n[http://www.geni.com/people/Robert-De-Ros/6000000000437148369 Robert de Ros, Lord of Hamlake Castle] \r\n\r\n[http://www.geni.com/people/Geoffrey-II-Magna-Carta-Surety-de-Say/6000000001354634669 Geoffrey de Saye, Baron]\r\n\r\n[http://www.geni.com/people/Robert-de-Vere/6000000001210373280 Robert de Vere, heir to the earldom of Oxford] \r\n\r\n[http://www.geni.com/people/Eustace-de-Vesci/6000000001300434501 Eustace de Vesci, Lord of Alnwick Castle]\r\n\r\n\r\n==Bishops: Witnesses==\r\n\r\nStephen Langton, Archbishop of Canterbury, Cardinal of the Holy Roman Church\r\n\r\nHenry de Loundres, Archbishop of Dublin\r\n\r\nE., Bishop of London\r\n\r\nJocelin of Wells, Bishop of Bath and Wells\r\n\r\nPeter des Roches, Bishop of Winchester\r\n\r\nHugh de Wells, Bishop of Lincoln\r\n\r\nHerbert Poore (aka \"Robert\"), Bishop of Salisbury\r\n\r\nW., Bishop of Rochester\r\n\r\nWalter de Gray, Bishop of Worcester\r\n\r\nGeoffrey de Burgo, Bishop of Ely\r\n\r\nHugh de Mapenor, Bishop of Hereford\r\n\r\nRichard Poore, Bishop of Chichester (brother of Herbert/Robert above)\r\n\r\nW., Bishop of Exeter\r\n\r\n==Others==\r\n\r\n[http://www.geni.com/people/Llewelyn-ap-Iorwerth/6000000003807598493 Llywelyn the Great]. Also the other Welsh Princes [who?]\r\n\r\nMaster Pandulff, subdeacon and member of the Papal Household\r\n\r\nBrother Aymeric, Master of the Knights Templar in England\r\n\r\n[http://www.geni.com/people/Alexander-II-Dunkeld-King-of-Scots/6000000000424836694 Alexander II of Scotland]\r\n\r\n\r\n==Magna Carta of Chester==\r\n\r\nThe Runnymede Charter of Liberties did not apply to Chester, which at the time was a separate feudal domain. [http://www.geni.com/people/Ranulf-Ranulph-de-Meschines/6000000002043244300 Ranulf de Meschines, Earl of Chester] granted his own Magna Carta.[6] Some of its articles were similar to the Runnymede Charter.[7]\r\n\r\n=Notes=\r\n\r\n# ^ Danny Danziger \u0026 John Gillingham, \"1215: The Year of Magna Carta\" (2004 paperback edition) p278\r\n# ^ \"Magna Carta: a precedent for recent constitutional change\". Judiciary of England and Wales. Speeches. 15 June 2005. http://www.judiciary.gov.uk/media/speeches/2005/magna-carta-precedent-recent-constitutional-change. Retrieved 07 September 2010. \r\n# ^ Holt, J.C. Magna Carta (1965) p20\r\n# ^ a b Clanchy, M.T. Early Medieval England. Folio Society(1997)p139\r\n# ^ \"United States Constitution Q + A\". The Charters of Freedom. http://www.archives.gov/exhibits/charters/constitution_q_and_a.html. Retrieved 16 February 2009.\r\n# ^ Hewitt, H.J. Mediaeval Cheshir.e Manchester University Press(1929) p9\r\n# ^ Holt, J.C. Magna Carta. Cambridge University Press 2nd Edition (1992) pp379-380\r\n\r\n\r\nFor more information about Geni Projects, see the Geni Wiki [http://wiki.geni.com/index.php/Projects Projects Page]. If you would like to contribute to this page, please contact the Project Manager or one of the Project Collaborators. Click [http://en.wikipedia.org/wiki/Help:Wiki_markup here] for instructions about using Wiki markup language.\r\n","name":"Magna Carta Sureties and Witnesses","id":"project-6"}
@@ -0,0 +1 @@
1
+ {"marriage_location":"Chicago, Illinois, United States","status":"current","partners":["https://www.geni.com/api/profile-109599192"],"url":"https://www.geni.com/api/union-12276689","marriage_date":"10/18/1992","id":"union-12276689","guid":"6000000001904194074","marriage_date_parts":{"day":18,"month":10,"year":1992},"children":[]}
@@ -0,0 +1 @@
1
+ {"results":[{"birth_date":"4/6/1939","gender":"male","locked":false,"last_name":"Moiny","url":"https://www.geni.com/api/profile-90990889","public":false,"birth_date_parts":{"day":6,"month":4,"year":1939},"is_alive":true,"id":"profile-90990889","first_name":"Simon"}]}
@@ -0,0 +1 @@
1
+ {"results":[{"public":false,"id":"profile-93909661"},{"is_alive":false,"middle_name":"Dwora","locked":false,"last_name":"Oransz","url":"https://www.geni.com/api/profile-93909764","public":true,"first_name":"Blima","death_date_parts":{},"birth_date_parts":{},"gender":"female","id":"profile-93909764"},{"public":false,"id":"profile-93217578"}]}
@@ -0,0 +1 @@
1
+ {"results":[{"public":false,"id":"profile-93217578"},{"middle_name":"Dwora","is_alive":false,"maiden_name":"Heiselberg","locked":false,"url":"https://www.geni.com/api/profile-93909764","last_name":"Oransz","public":true,"unions":["https://www.geni.com/api/union-32048297","https://www.geni.com/api/union-32048398"],"first_name":"Blima","big_tree":true,"death_date_parts":{},"name":"Blima HEISELBERG","created_by":"https://www.geni.com/api/profile-31534","claimed":false,"birth_date_parts":{},"id":"profile-93909764","guid":"6000000009404824309","gender":"female","managers":["https://www.geni.com/api/profile-31534"],"death_location_parts":{},"phone_numbers":[],"birth_location_parts":{}},{"public":false,"id":"profile-93909661"}]}
@@ -0,0 +1 @@
1
+ {"results":[{"public":false,"id":"profile-22432"},{"public":false,"id":"profile-618351"},{"public":false,"id":"profile-2275290"},{"public":false,"id":"profile-4926060"},{"public":false,"id":"profile-9087412"},{"email":"jefftomlinson@juno.com","public":false,"phone_numbers":[{"type":"Home","number":"599-1997","area_code":"614"}],"id":"profile-13347712"},{"public":false,"id":"profile-15130251"},{"public":false,"id":"profile-17217530"},{"public":false,"id":"profile-17354640"},{"public":false,"id":"profile-31078957"},{"public":false,"id":"profile-34069147"},{"public":false,"id":"profile-48377152"},{"public":false,"id":"profile-51993956"},{"public":false,"id":"profile-52956166"},{"public":false,"id":"profile-55243122"},{"public":false,"id":"profile-56135638"},{"email":"ray@carpetadvantage.net","public":false,"phone_numbers":[],"id":"profile-56654534"},{"public":false,"id":"profile-50487702"},{"public":false,"id":"profile-49330918"},{"public":false,"id":"profile-57591505"},{"public":false,"id":"profile-57643235"},{"public":false,"id":"profile-58021742"},{"public":false,"id":"profile-61008451"},{"email":"janice_weeks@msn.com","public":false,"phone_numbers":[],"id":"profile-41047148"},{"email":"gdmeadors@gmail.com","public":false,"phone_numbers":[{"type":"Mobile","number":"4219","area_code":"332","country_code":"503"}],"id":"profile-71684074"},{"public":false,"id":"profile-83672444"},{"public":false,"id":"profile-91947976"},{"public":false,"id":"profile-93546487"},{"public":false,"id":"profile-104803606"},{"public":false,"id":"profile-108772336"},{"public":false,"id":"profile-109100428"},{"public":false,"id":"profile-109378679"},{"public":false,"id":"profile-110038906"},{"public":false,"id":"profile-110665774"},{"public":false,"id":"profile-112048725"},{"public":false,"id":"profile-112588615"},{"public":false,"id":"profile-113176368"},{"public":false,"id":"profile-118469212"},{"public":false,"id":"profile-118861761"},{"email":"ladycherise@aol.com","public":false,"phone_numbers":[],"id":"profile-119083346"},{"public":false,"id":"profile-119180796"}]}
@@ -0,0 +1 @@
1
+ {"results":[{"gender":"male","birth_date":"5/23/1989","locked":false,"birth_location":"Tournai, Walloon Region, Belgium","url":"https://www.geni.com/api/profile-90990832","last_name":"Malisart","big_tree":false,"mugshot_urls":{"thumb":"http://photos.geni.com/p12/bd/d1/23/1c/534448388ae47eb9/dsc00834_t.jpg","url":"https://www.geni.com/api/photo-22476144","medium":"http://photos.geni.com/p12/bd/d1/23/1c/534448388ae47eb9/dsc00834_medium.jpg","original":"http://assets1.geni.com/media/p12/bd/d1/23/1c/534448388ae47eb9/dsc00834_original.jpg","large":"http://photos.geni.com/p12/bd/d1/23/1c/534448388ae47eb9/dsc00834_large.jpg","small":"http://photos.geni.com/p12/bd/d1/23/1c/534448388ae47eb9/dsc00834_small.jpg","thumb2":"http://photos.geni.com/p12/bd/d1/23/1c/534448388ae47eb9/dsc00834_t2.jpg"},"public":false,"unions":[],"claimed":false,"birth_date_parts":{"day":23,"month":5,"year":1989},"managers":["https://www.geni.com/api/profile-90990667"],"phone_numbers":[],"name":"Timothy Malisart","created_by":"https://www.geni.com/api/profile-90990667","birth_location_parts":{"city":"Tournai","country":"Belgium","state":"Walloon Region","latitude":50.6058658,"longitude":3.3884498},"id":"profile-90990832","guid":"6000000009077174659","middle_name":"Denis Louis","is_alive":true,"first_name":"Timothy","current_residence":"Jollain-Merlin, Walloon Region, Belgium","occupation":"Student","relationship":"brother"},{"gender":"male","birth_date":"7/8/1992","locked":false,"birth_location":"Tournai, Walloon Region, Belgium","url":"https://www.geni.com/api/profile-90990843","last_name":"Malisart","big_tree":false,"mugshot_urls":{"thumb":"http://photos.geni.com/p12/ec/bd/bb/a6/534448388a74f80f/2010-04-grandhan_t.jpg","url":"https://www.geni.com/api/photo-22466697","medium":"http://photos.geni.com/p12/ec/bd/bb/a6/534448388a74f80f/2010-04-grandhan_medium.jpg","original":"http://assets3.geni.com/media/p12/ec/bd/bb/a6/534448388a74f80f/2010-04-grandhan_original.jpg","large":"http://photos.geni.com/p12/ec/bd/bb/a6/534448388a74f80f/2010-04-grandhan_large.jpg","small":"http://photos.geni.com/p12/ec/bd/bb/a6/534448388a74f80f/2010-04-grandhan_small.jpg","thumb2":"http://photos.geni.com/p12/ec/bd/bb/a6/534448388a74f80f/2010-04-grandhan_t2.jpg"},"public":false,"unions":[],"claimed":false,"birth_date_parts":{"day":8,"month":7,"year":1992},"managers":["https://www.geni.com/api/profile-90990667"],"phone_numbers":[],"name":"Benjamin Malisart","created_by":"https://www.geni.com/api/profile-90990667","birth_location_parts":{"city":"Tournai","country":"Belgium","state":"Walloon Region","latitude":50.6058658,"longitude":3.3884498},"id":"profile-90990843","guid":"6000000009077320743","middle_name":"Luc Florent","is_alive":true,"first_name":"Benjamin","relationship":"brother"},{"gender":"male","birth_date":"6/30/1986","locked":false,"email":"aurelien.malisart@gmail.com","birth_location":"Tournai, Walloon Region, Belgium","language":"en-US","url":"https://www.geni.com/api/profile-90990667","last_name":"Malisart","big_tree":false,"mugshot_urls":{"thumb":"http://photos.geni.com/p12/9c/91/60/19/534448388a766f20/00252_t.jpg","url":"https://www.geni.com/api/photo-22467102","medium":"http://photos.geni.com/p12/9c/91/60/19/534448388a766f20/00252_medium.jpg","original":"http://assets0.geni.com/media/p12/9c/91/60/19/534448388a766f20/00252_original.jpg","large":"http://photos.geni.com/p12/9c/91/60/19/534448388a766f20/00252_large.jpg","small":"http://photos.geni.com/p12/9c/91/60/19/534448388a766f20/00252_small.jpg","thumb2":"http://photos.geni.com/p12/9c/91/60/19/534448388a766f20/00252_t2.jpg"},"public":false,"unions":[],"claimed":true,"birth_date_parts":{"day":30,"month":6,"year":1986},"managers":[],"phone_numbers":[],"name":"Aur\u00e9lien Malisart","created_by":"https://www.geni.com/api/profile-90990667","birth_location_parts":{"city":"Tournai","country":"Belgium","state":"Walloon Region","latitude":50.6058658,"longitude":3.3884498},"id":"profile-90990667","guid":"6000000009077913616","middle_name":"Guy Julien","is_alive":true,"first_name":"Aur\u00e9lien","current_residence":"Mons, Walloon Region, Belgium","occupation":"Administrator \u0026 Developer","relationship":"yourself"}]}
@@ -0,0 +1 @@
1
+ {"results":[{"public":false,"id":"profile-90990668"},{"url":"https://www.geni.com/api/profile-90990667","gender":"male","current_residence":"Mons, Walloon Region, Belgium","occupation":"Administrator \u0026 Developer","relationship":"yourself","middle_name":"Guy Julien","birth_date":"6/30/1986","email":"aurelien.malisart@gmail.com","last_name":"Malisart","unions":[],"first_name":"Aur\u00e9lien","birth_location":"Tournai, Walloon Region, Belgium","public":false,"guid":"6000000009077913616","big_tree":false,"mugshot_urls":{"url":"https://www.geni.com/api/photo-22467102","thumb":"http://photos.geni.com/p12/9c/91/60/19/534448388a766f20/00252_t.jpg","original":"http://assets0.geni.com/media/p12/9c/91/60/19/534448388a766f20/00252_original.jpg","medium":"http://photos.geni.com/p12/9c/91/60/19/534448388a766f20/00252_medium.jpg","large":"http://photos.geni.com/p12/9c/91/60/19/534448388a766f20/00252_large.jpg","small":"http://photos.geni.com/p12/9c/91/60/19/534448388a766f20/00252_small.jpg","thumb2":"http://photos.geni.com/p12/9c/91/60/19/534448388a766f20/00252_t2.jpg"},"birth_date_parts":{"day":30,"month":6,"year":1986},"name":"Aur\u00e9lien Malisart","managers":[],"phone_numbers":[],"id":"profile-90990667","created_by":"https://www.geni.com/api/profile-90990667","claimed":true,"birth_location_parts":{"latitude":50.6058658,"city":"Tournai","state":"Walloon Region","longitude":3.3884498,"country":"Belgium"},"is_alive":true,"locked":false,"language":"en-US"}]}
@@ -0,0 +1 @@
1
+ {"results":[{"is_alive":true,"relationship":"grandfather","locked":false,"birth_date":"4/6/1939","url":"https://www.geni.com/api/profile-90990889","last_name":"Moiny","public":false,"unions":["https://www.geni.com/api/union-31029120"],"first_name":"Simon","big_tree":false,"mugshot_urls":{"small":"http://photos.geni.com/p12/c9/85/43/5e/534448388a6f89b5/2010-04-grandhan-papy_small.jpg","thumb":"http://photos.geni.com/p12/c9/85/43/5e/534448388a6f89b5/2010-04-grandhan-papy_t.jpg","url":"https://www.geni.com/api/photo-22466661","original":"http://assets1.geni.com/media/p12/c9/85/43/5e/534448388a6f89b5/2010-04-grandhan-papy_original.jpg","medium":"http://photos.geni.com/p12/c9/85/43/5e/534448388a6f89b5/2010-04-grandhan-papy_medium.jpg","large":"http://photos.geni.com/p12/c9/85/43/5e/534448388a6f89b5/2010-04-grandhan-papy_large.jpg","thumb2":"http://photos.geni.com/p12/c9/85/43/5e/534448388a6f89b5/2010-04-grandhan-papy_t2.jpg"},"name":"Simon Moiny","created_by":"https://www.geni.com/api/profile-90990667","claimed":false,"birth_date_parts":{"day":6,"month":4,"year":1939},"id":"profile-90990889","guid":"6000000009077115977","gender":"male","managers":["https://www.geni.com/api/profile-90990667"],"phone_numbers":[],"birth_location_parts":{}},{"is_alive":true,"relationship":"grandmother","maiden_name":"Paix","locked":false,"birth_date":"4/19/1940","url":"https://www.geni.com/api/profile-90990897","last_name":"Moiny","public":false,"birth_location":"Kain, Walloon Region, Belgium","unions":["https://www.geni.com/api/union-31029120"],"first_name":"Arlette","big_tree":false,"mugshot_urls":{"small":"http://photos.geni.com/p12/bc/69/12/b3/534448388a73756e/2010-04-grandhan-mamy_small.jpg","thumb":"http://photos.geni.com/p12/bc/69/12/b3/534448388a73756e/2010-04-grandhan-mamy_t.jpg","url":"https://www.geni.com/api/photo-22466667","original":"http://assets2.geni.com/media/p12/bc/69/12/b3/534448388a73756e/2010-04-grandhan-mamy_original.jpg","medium":"http://photos.geni.com/p12/bc/69/12/b3/534448388a73756e/2010-04-grandhan-mamy_medium.jpg","large":"http://photos.geni.com/p12/bc/69/12/b3/534448388a73756e/2010-04-grandhan-mamy_large.jpg","thumb2":"http://photos.geni.com/p12/bc/69/12/b3/534448388a73756e/2010-04-grandhan-mamy_t2.jpg"},"name":"Arlette PAIX","created_by":"https://www.geni.com/api/profile-90990667","claimed":false,"birth_date_parts":{"day":19,"month":4,"year":1940},"id":"profile-90990897","guid":"6000000009077150031","gender":"female","managers":["https://www.geni.com/api/profile-90990667"],"phone_numbers":[],"birth_location_parts":{"city":"Kain","latitude":50.63796,"country":"Belgium","state":"Walloon Region","longitude":3.37887}}]}
@@ -0,0 +1 @@
1
+ {"created_on":"2011-01-29 17:03:06","title":"Jaworow AGAD Births 1877-96","url":"https://www.geni.com/api/document-339953","description":"Jewish Records Indexing - Poland\nhttp://www.jewishgen.org/jri-pl/index.htm","content_type":"image/png","date_parts":{},"sizes":{"thumb":"https://assets0.geni.com/media/p12/e0/19/0b/f8/534448388f16980c/screen_shot_2011-01-29_at_9_t.png","original":"https://assets0.geni.com/media/p12/e0/19/0b/f8/534448388f16980c/screen_shot_2011-01-29_at_9_original.png","large":"https://assets0.geni.com/media/p12/e0/19/0b/f8/534448388f16980c/screen_shot_2011-01-29_at_9_large.png"},"labels":["Birth"],"id":"document-339953","guid":"6000000011320334348"}
@@ -0,0 +1 @@
1
+ {"gender":"male","birth_date":"6/5/1963","locked":false,"birth_location":"Tournai, Walloon Region, Belgium","url":"https://www.geni.com/api/profile-90990730","last_name":"Malisart","big_tree":false,"mugshot_urls":{"url":"https://www.geni.com/api/photo-22466818","medium":"http://photos.geni.com/p12/6a/e8/45/e4/534448388a74f822/2010-11-queuv-alain_medium.jpg","original":"http://assets2.geni.com/media/p12/6a/e8/45/e4/534448388a74f822/2010-11-queuv-alain_original.jpg","thumb":"http://photos.geni.com/p12/6a/e8/45/e4/534448388a74f822/2010-11-queuv-alain_t.jpg","large":"http://photos.geni.com/p12/6a/e8/45/e4/534448388a74f822/2010-11-queuv-alain_large.jpg","small":"http://photos.geni.com/p12/6a/e8/45/e4/534448388a74f822/2010-11-queuv-alain_small.jpg","thumb2":"http://photos.geni.com/p12/6a/e8/45/e4/534448388a74f822/2010-11-queuv-alain_t2.jpg"},"public":false,"unions":["https://www.geni.com/api/union-31029071"],"claimed":false,"birth_date_parts":{"day":5,"month":6,"year":1963},"managers":["https://www.geni.com/api/profile-90990667"],"phone_numbers":[],"name":"Alain Malisart","created_by":"https://www.geni.com/api/profile-90990667","birth_location_parts":{"city":"Tournai","country":"Belgium","state":"Walloon Region","latitude":50.6058658,"longitude":3.3884498},"id":"profile-90990730","guid":"6000000009077225181","middle_name":"Louis Alexandre","is_alive":true,"first_name":"Alain","current_residence":"Jollain-Merlin, Walloon Region, Belgium","relationship":"father"}
@@ -0,0 +1 @@
1
+ {"results":[{"public":false,"id":"profile-34069147"},{"public":false,"id":"profile-55243122"},{"public":false,"id":"profile-22432"},{"public":false,"id":"profile-91947976"},{"public":false,"id":"profile-13347712"},{"public":false,"id":"profile-50487702"},{"public":false,"id":"profile-61008451"},{"public":false,"id":"profile-52956166"},{"public":false,"id":"profile-17217530"},{"public":false,"id":"profile-9087412"},{"public":false,"id":"profile-48377152"},{"public":false,"id":"profile-51993956"},{"public":false,"id":"profile-4926060"},{"public":false,"id":"profile-110665774"},{"public":false,"id":"profile-56135638"},{"public":false,"id":"profile-31078957"},{"public":false,"id":"profile-2275290"},{"public":false,"id":"profile-112048725"},{"public":false,"id":"profile-41047148"},{"public":false,"id":"profile-17354640"},{"public":false,"id":"profile-104803606"},{"public":false,"id":"profile-15130251"},{"public":false,"id":"profile-71684074"},{"public":false,"id":"profile-93546487"},{"public":false,"id":"profile-113176368"},{"public":false,"id":"profile-110038906"},{"public":false,"id":"profile-83672444"},{"public":false,"id":"profile-56654534"},{"public":false,"id":"profile-57591505"},{"public":false,"id":"profile-112588615"},{"public":false,"id":"profile-108772336"},{"public":false,"id":"profile-109100428"},{"public":false,"id":"profile-618351"},{"public":false,"id":"profile-57643235"},{"public":false,"id":"profile-49330918"},{"public":false,"id":"profile-58021742"},{"public":false,"id":"profile-118861761"},{"public":false,"id":"profile-119180796"},{"public":false,"id":"profile-119083346"},{"public":false,"id":"profile-118469212"},{"public":false,"id":"profile-109378679"}]}
@@ -0,0 +1 @@
1
+ {"results":[{"gender":"male","birth_date":"1167","locked":false,"death_date":"1/25/1221","birth_location":"Huntingfield, Suffolk, England","url":"https://www.geni.com/api/profile-7712690","last_name":"Huntingfield","big_tree":true,"mugshot_urls":{"thumb":"http://photos.geni.com/p11/17/59/11/4c/534448384b4a5091/william_de_huntingfield_t.jpg","url":"https://www.geni.com/api/photo-21161033","medium":"http://photos.geni.com/p11/17/59/11/4c/534448384b4a5091/william_de_huntingfield_medium.jpg","large":"http://photos.geni.com/p11/17/59/11/4c/534448384b4a5091/william_de_huntingfield_large.jpg","small":"http://photos.geni.com/p11/17/59/11/4c/534448384b4a5091/william_de_huntingfield_small.jpg","thumb2":"http://photos.geni.com/p11/17/59/11/4c/534448384b4a5091/william_de_huntingfield_t2.jpg"},"public":true,"death_date_parts":{"day":25,"month":1,"year":1221},"curator":"https://www.geni.com/api/profile-34069147","unions":["https://www.geni.com/api/union-14947674","https://www.geni.com/api/union-12588108"],"suffix":"Sheriff of Norfolk and Suffolk, Surety of the Magna Carta","claimed":false,"birth_date_parts":{"year":1167},"managers":["https://www.geni.com/api/profile-8326922","https://www.geni.com/api/profile-23336321","https://www.geni.com/api/profile-20585794","https://www.geni.com/api/profile-18183657","https://www.geni.com/api/profile-42543608","https://www.geni.com/api/profile-993882","https://www.geni.com/api/profile-15541899","https://www.geni.com/api/profile-6937729","https://www.geni.com/api/profile-42445358","https://www.geni.com/api/profile-74920195","https://www.geni.com/api/profile-127144","https://www.geni.com/api/profile-35627886","https://www.geni.com/api/profile-7543425","https://www.geni.com/api/profile-48718688","https://www.geni.com/api/profile-2186652","https://www.geni.com/api/profile-73609059","https://www.geni.com/api/profile-71634858"],"death_location":"On A Crusade","death_location_parts":{"place_name":"On A Crusade"},"phone_numbers":[],"name":"William Huntingfield, Sheriff of Norfolk and Suffolk, Surety of the Magna Carta","created_by":"https://www.geni.com/api/profile-2186652","birth_location_parts":{"place_name":"Huntingfield, Suffolk, England"},"id":"profile-7712690","guid":"368756446860013200","middle_name":"De","is_alive":false,"first_name":"William","occupation":"ALTB1167 M1193SUFFOLF ENG ALT BLOC FRAMPTON LINCOLNSHIRE, Sheriff of Norfolk/Suffolk"},{"maiden_name":"de Clare","gender":"male","birth_date":"April 1180","burial_date_parts":{"day":10,"month":11,"year":1230},"locked":false,"death_date":"10/25/1230","burial_location":", Tewksbury, Gloucester, England","burial_location_parts":{"place_name":", Tewksbury, Gloucester, England"},"birth_location":"Hertford, Hertfordshire, England","url":"https://www.geni.com/api/profile-4251352","last_name":"de Clare","big_tree":true,"mugshot_urls":{"thumb":"http://photos.geni.com/p11/17/89/89/e4/534448384b4a50a5/gilbert_de_clare_t.jpg","url":"https://www.geni.com/api/photo-21161053","medium":"http://photos.geni.com/p11/17/89/89/e4/534448384b4a50a5/gilbert_de_clare_medium.jpg","large":"http://photos.geni.com/p11/17/89/89/e4/534448384b4a50a5/gilbert_de_clare_large.jpg","small":"http://photos.geni.com/p11/17/89/89/e4/534448384b4a50a5/gilbert_de_clare_small.jpg","thumb2":"http://photos.geni.com/p11/17/89/89/e4/534448384b4a50a5/gilbert_de_clare_t2.jpg"},"public":true,"death_date_parts":{"day":25,"month":10,"year":1230},"curator":"https://www.geni.com/api/profile-34069147","unions":["https://www.geni.com/api/union-5674795","https://www.geni.com/api/union-16844727","https://www.geni.com/api/union-17205463","https://www.geni.com/api/union-24431732","https://www.geni.com/api/union-22591074"],"suffix":"4th Earl of Hertford, 5th Earl of Gloucester","claimed":false,"birth_date_parts":{"month":4,"year":1180},"managers":["https://www.geni.com/api/profile-3999539","https://www.geni.com/api/profile-45556907","https://www.geni.com/api/profile-1119249","https://www.geni.com/api/profile-84139596","https://www.geni.com/api/profile-34205139","https://www.geni.com/api/profile-4750937","https://www.geni.com/api/profile-58795634","https://www.geni.com/api/profile-23340906","https://www.geni.com/api/profile-95004967","https://www.geni.com/api/profile-6594637","https://www.geni.com/api/profile-4256568","https://www.geni.com/api/profile-62777846","https://www.geni.com/api/profile-67227177","https://www.geni.com/api/profile-7365424","https://www.geni.com/api/profile-120445211","https://www.geni.com/api/profile-54716563","https://www.geni.com/api/profile-84065897","https://www.geni.com/api/profile-93213855","https://www.geni.com/api/profile-27555500","https://www.geni.com/api/profile-90766813","https://www.geni.com/api/profile-7543425","https://www.geni.com/api/profile-722577","https://www.geni.com/api/profile-39194830","https://www.geni.com/api/profile-251855","https://www.geni.com/api/profile-24494496","https://www.geni.com/api/profile-21120586","https://www.geni.com/api/profile-20154652","https://www.geni.com/api/profile-50128272","https://www.geni.com/api/profile-10962189","https://www.geni.com/api/profile-52440548","https://www.geni.com/api/profile-74920195","https://www.geni.com/api/profile-54756574","https://www.geni.com/api/profile-35008288","https://www.geni.com/api/profile-23487913","https://www.geni.com/api/profile-41144984","https://www.geni.com/api/profile-78023499","https://www.geni.com/api/profile-66603209","https://www.geni.com/api/profile-56361694","https://www.geni.com/api/profile-16046011","https://www.geni.com/api/profile-1610115","https://www.geni.com/api/profile-45478048","https://www.geni.com/api/profile-3905724","https://www.geni.com/api/profile-2497157","https://www.geni.com/api/profile-12353737","https://www.geni.com/api/profile-20429650","https://www.geni.com/api/profile-102361912","https://www.geni.com/api/profile-4144951","https://www.geni.com/api/profile-40043860","https://www.geni.com/api/profile-24343008","https://www.geni.com/api/profile-57584245","https://www.geni.com/api/profile-39131367","https://www.geni.com/api/profile-101455528","https://www.geni.com/api/profile-19757707","https://www.geni.com/api/profile-38589487","https://www.geni.com/api/profile-29219496","https://www.geni.com/api/profile-1399474","https://www.geni.com/api/profile-639081","https://www.geni.com/api/profile-15541899","https://www.geni.com/api/profile-7385204","https://www.geni.com/api/profile-9400816","https://www.geni.com/api/profile-37030039","https://www.geni.com/api/profile-71634858","https://www.geni.com/api/profile-22950098","https://www.geni.com/api/profile-21788246","https://www.geni.com/api/profile-6772557","https://www.geni.com/api/profile-84437841","https://www.geni.com/api/profile-44615019","https://www.geni.com/api/profile-21994144","https://www.geni.com/api/profile-49570332","https://www.geni.com/api/profile-59693227","https://www.geni.com/api/profile-48718688","https://www.geni.com/api/profile-61242237","https://www.geni.com/api/profile-5792444","https://www.geni.com/api/profile-50055480","https://www.geni.com/api/profile-15661031","https://www.geni.com/api/profile-13506091","https://www.geni.com/api/profile-49959829","https://www.geni.com/api/profile-9920856","https://www.geni.com/api/profile-40419194","https://www.geni.com/api/profile-14367233","https://www.geni.com/api/profile-20579074","https://www.geni.com/api/profile-69375563","https://www.geni.com/api/profile-70877673","https://www.geni.com/api/profile-9875886","https://www.geni.com/api/profile-13697875","https://www.geni.com/api/profile-17217530","https://www.geni.com/api/profile-54795994","https://www.geni.com/api/profile-14682731","https://www.geni.com/api/profile-39728262","https://www.geni.com/api/profile-82824271","https://www.geni.com/api/profile-119097339","https://www.geni.com/api/profile-25836223","https://www.geni.com/api/profile-8326922","https://www.geni.com/api/profile-2129301","https://www.geni.com/api/profile-89825838","https://www.geni.com/api/profile-1693836","https://www.geni.com/api/profile-56953250","https://www.geni.com/api/profile-17437598","https://www.geni.com/api/profile-99835858","https://www.geni.com/api/profile-57591505","https://www.geni.com/api/profile-73220641","https://www.geni.com/api/profile-5193316","https://www.geni.com/api/profile-51634229","https://www.geni.com/api/profile-8196424","https://www.geni.com/api/profile-5428874","https://www.geni.com/api/profile-85625428","https://www.geni.com/api/profile-67917894","https://www.geni.com/api/profile-42809339","https://www.geni.com/api/profile-7401177","https://www.geni.com/api/profile-92029451","https://www.geni.com/api/profile-52005059","https://www.geni.com/api/profile-1365987","https://www.geni.com/api/profile-52956166","https://www.geni.com/api/profile-13840408","https://www.geni.com/api/profile-2038384","https://www.geni.com/api/profile-43196720","https://www.geni.com/api/profile-44569516","https://www.geni.com/api/profile-112537","https://www.geni.com/api/profile-63913973","https://www.geni.com/api/profile-6037427","https://www.geni.com/api/profile-89896420","https://www.geni.com/api/profile-62112898","https://www.geni.com/api/profile-115720410","https://www.geni.com/api/profile-4908120","https://www.geni.com/api/profile-14896797","https://www.geni.com/api/profile-23336321","https://www.geni.com/api/profile-3976197","https://www.geni.com/api/profile-90560982","https://www.geni.com/api/profile-44549159","https://www.geni.com/api/profile-20585794","https://www.geni.com/api/profile-24413936","https://www.geni.com/api/profile-16265647","https://www.geni.com/api/profile-66144667","https://www.geni.com/api/profile-41034115","https://www.geni.com/api/profile-54344863","https://www.geni.com/api/profile-72560597","https://www.geni.com/api/profile-81921050","https://www.geni.com/api/profile-6937729","https://www.geni.com/api/profile-39695310","https://www.geni.com/api/profile-93790075","https://www.geni.com/api/profile-13666976","https://www.geni.com/api/profile-61008451","https://www.geni.com/api/profile-10659684","https://www.geni.com/api/profile-30226732","https://www.geni.com/api/profile-18310466","https://www.geni.com/api/profile-60789103","https://www.geni.com/api/profile-17393823","https://www.geni.com/api/profile-22235353","https://www.geni.com/api/profile-110468101","https://www.geni.com/api/profile-25637387","https://www.geni.com/api/profile-37660784","https://www.geni.com/api/profile-1390931","https://www.geni.com/api/profile-35681796","https://www.geni.com/api/profile-49105419","https://www.geni.com/api/profile-42543608","https://www.geni.com/api/profile-23445200","https://www.geni.com/api/profile-19022765","https://www.geni.com/api/profile-13550013","https://www.geni.com/api/profile-19864285","https://www.geni.com/api/profile-24319098","https://www.geni.com/api/profile-94346920","https://www.geni.com/api/profile-14391850","https://www.geni.com/api/profile-55417226","https://www.geni.com/api/profile-56063426","https://www.geni.com/api/profile-39938543","https://www.geni.com/api/profile-13729150","https://www.geni.com/api/profile-34869760","https://www.geni.com/api/profile-15603445","https://www.geni.com/api/profile-56298213","https://www.geni.com/api/profile-71684074","https://www.geni.com/api/profile-32265703","https://www.geni.com/api/profile-59506511","https://www.geni.com/api/profile-26148420","https://www.geni.com/api/profile-14334544","https://www.geni.com/api/profile-92482724","https://www.geni.com/api/profile-27743245","https://www.geni.com/api/profile-2973503","https://www.geni.com/api/profile-35627886","https://www.geni.com/api/profile-29047833","https://www.geni.com/api/profile-108788198","https://www.geni.com/api/profile-17461220","https://www.geni.com/api/profile-2347391","https://www.geni.com/api/profile-5559156","https://www.geni.com/api/profile-5300015","https://www.geni.com/api/profile-1294997","https://www.geni.com/api/profile-51680653","https://www.geni.com/api/profile-34069147","https://www.geni.com/api/profile-127144","https://www.geni.com/api/profile-45147462","https://www.geni.com/api/profile-39701982","https://www.geni.com/api/profile-9692148","https://www.geni.com/api/profile-36204392","https://www.geni.com/api/profile-21765734","https://www.geni.com/api/profile-47744236","https://www.geni.com/api/profile-110986963","https://www.geni.com/api/profile-5664629","https://www.geni.com/api/profile-18809159","https://www.geni.com/api/profile-22432","https://www.geni.com/api/profile-41553937","https://www.geni.com/api/profile-112223676","https://www.geni.com/api/profile-6580857","https://www.geni.com/api/profile-67177444","https://www.geni.com/api/profile-48779831","https://www.geni.com/api/profile-3546641","https://www.geni.com/api/profile-41047148","https://www.geni.com/api/profile-61647531","https://www.geni.com/api/profile-53027632","https://www.geni.com/api/profile-48213691"],"death_location":"Penros, Brittany, France","death_location_parts":{"city":"Penros","country":"FR","state":"Brittany","latitude":48.080926,"longitude":-3.078861},"phone_numbers":[],"name":"Gilbert de Clare, 4th Earl of Hertford","created_by":"https://www.geni.com/api/profile-127144","birth_location_parts":{"city":"Hertford","country":"X-England","state":"Hertfordshire","latitude":51.795949,"longitude":-0.078852},"id":"profile-4251352","guid":"5167204065210119923","display_name":"Gilbert de Clare, 4th Earl of Hertford","is_alive":false,"burial_date":"11/10/1230","first_name":"Gilbert","current_residence":", Tewksbury, Gloucester, England","occupation":"4th Earl of Hertford, 5th Earl of 5th Earl of Gloucester, 5th Earl of Hertford 6th Earl of Gloucester, EARL of Gloucester, 5th Earl of Gloucester; 4th Earl of Hertford"},{"maiden_name":"de LACY","gender":"male","birth_date":"c. 1192","burial_date_parts":{},"locked":false,"death_date":"7/22/1240","burial_location":"Cistercian Abbey of Stanlaw, Chester","burial_location_parts":{"place_name":"Cistercian Abbey of Stanlaw, Chester"},"birth_location":"Lincolnshire, UK","url":"https://www.geni.com/api/profile-4344802","last_name":"de Lacy","big_tree":true,"mugshot_urls":{"thumb":"http://photos.geni.com/p11/2a/93/17/bf/534448384b4a50a2/john_de_lacy_t.jpg","url":"https://www.geni.com/api/photo-21161050","medium":"http://photos.geni.com/p11/2a/93/17/bf/534448384b4a50a2/john_de_lacy_medium.jpg","large":"http://photos.geni.com/p11/2a/93/17/bf/534448384b4a50a2/john_de_lacy_large.jpg","small":"http://photos.geni.com/p11/2a/93/17/bf/534448384b4a50a2/john_de_lacy_small.jpg","thumb2":"http://photos.geni.com/p11/2a/93/17/bf/534448384b4a50a2/john_de_lacy_t2.jpg"},"public":true,"death_date_parts":{"day":22,"month":7,"year":1240},"curator":"https://www.geni.com/api/profile-34069147","unions":["https://www.geni.com/api/union-28314911","https://www.geni.com/api/union-9089902","https://www.geni.com/api/union-25800888"],"suffix":"Surety of Magna Carta","claimed":false,"birth_date_parts":{"circa":true,"year":1192},"managers":["https://www.geni.com/api/profile-15661031","https://www.geni.com/api/profile-13506091","https://www.geni.com/api/profile-25836223","https://www.geni.com/api/profile-15603445","https://www.geni.com/api/profile-57584245","https://www.geni.com/api/profile-29047833","https://www.geni.com/api/profile-54795994","https://www.geni.com/api/profile-22432","https://www.geni.com/api/profile-42543608","https://www.geni.com/api/profile-24343008","https://www.geni.com/api/profile-23487913","https://www.geni.com/api/profile-17217530","https://www.geni.com/api/profile-73220641","https://www.geni.com/api/profile-84437841","https://www.geni.com/api/profile-14367233","https://www.geni.com/api/profile-120445211","https://www.geni.com/api/profile-93790075","https://www.geni.com/api/profile-59693227","https://www.geni.com/api/profile-24413936","https://www.geni.com/api/profile-72206363","https://www.geni.com/api/profile-84139596","https://www.geni.com/api/profile-41553937","https://www.geni.com/api/profile-48213691","https://www.geni.com/api/profile-13697875","https://www.geni.com/api/profile-39194830","https://www.geni.com/api/profile-9875886","https://www.geni.com/api/profile-6594637","https://www.geni.com/api/profile-82824271","https://www.geni.com/api/profile-39201292","https://www.geni.com/api/profile-66144667","https://www.geni.com/api/profile-7543425","https://www.geni.com/api/profile-3976197","https://www.geni.com/api/profile-78023499","https://www.geni.com/api/profile-88642071","https://www.geni.com/api/profile-70877673","https://www.geni.com/api/profile-112537","https://www.geni.com/api/profile-127144","https://www.geni.com/api/profile-34233950","https://www.geni.com/api/profile-41034115","https://www.geni.com/api/profile-21788246","https://www.geni.com/api/profile-102361912","https://www.geni.com/api/profile-30226732","https://www.geni.com/api/profile-5559156","https://www.geni.com/api/profile-90766813","https://www.geni.com/api/profile-54344863","https://www.geni.com/api/profile-10783142","https://www.geni.com/api/profile-17437598","https://www.geni.com/api/profile-27555500","https://www.geni.com/api/profile-41615354","https://www.geni.com/api/profile-38589487","https://www.geni.com/api/profile-55243122","https://www.geni.com/api/profile-49570332","https://www.geni.com/api/profile-24319098","https://www.geni.com/api/profile-35008288","https://www.geni.com/api/profile-69375563","https://www.geni.com/api/profile-12353737","https://www.geni.com/api/profile-47792456","https://www.geni.com/api/profile-35681796","https://www.geni.com/api/profile-1693836","https://www.geni.com/api/profile-52623455","https://www.geni.com/api/profile-44549159","https://www.geni.com/api/profile-61242237","https://www.geni.com/api/profile-49393207","https://www.geni.com/api/profile-56953250","https://www.geni.com/api/profile-67917894","https://www.geni.com/api/profile-2347391","https://www.geni.com/api/profile-105752757","https://www.geni.com/api/profile-63913973","https://www.geni.com/api/profile-88603556","https://www.geni.com/api/profile-38465497","https://www.geni.com/api/profile-71684074","https://www.geni.com/api/profile-52956166","https://www.geni.com/api/profile-1294997","https://www.geni.com/api/profile-2497157","https://www.geni.com/api/profile-1365987","https://www.geni.com/api/profile-22235353","https://www.geni.com/api/profile-2038384","https://www.geni.com/api/profile-61008451","https://www.geni.com/api/profile-3905724","https://www.geni.com/api/profile-45478048","https://www.geni.com/api/profile-48718688","https://www.geni.com/api/profile-20579074","https://www.geni.com/api/profile-74920195","https://www.geni.com/api/profile-7385204","https://www.geni.com/api/profile-89896420","https://www.geni.com/api/profile-112223676","https://www.geni.com/api/profile-3999539","https://www.geni.com/api/profile-67227177","https://www.geni.com/api/profile-52440548","https://www.geni.com/api/profile-9920856","https://www.geni.com/api/profile-49105419","https://www.geni.com/api/profile-16610706","https://www.geni.com/api/profile-9692148","https://www.geni.com/api/profile-89825838","https://www.geni.com/api/profile-14682731","https://www.geni.com/api/profile-10659684","https://www.geni.com/api/profile-6580857","https://www.geni.com/api/profile-92482724","https://www.geni.com/api/profile-2129301","https://www.geni.com/api/profile-37660784","https://www.geni.com/api/profile-10962189","https://www.geni.com/api/profile-56298213","https://www.geni.com/api/profile-40043860","https://www.geni.com/api/profile-62112898","https://www.geni.com/api/profile-45556907","https://www.geni.com/api/profile-25637387","https://www.geni.com/api/profile-67177444","https://www.geni.com/api/profile-61008491","https://www.geni.com/api/profile-8326922","https://www.geni.com/api/profile-56361694"],"death_location":"Cheshire, UK","death_location_parts":{"country":"UK","state":"Cheshire","latitude":53.2120194,"longitude":-2.5367602},"phone_numbers":[],"name":"John de Lacy, Surety of Magna Carta","created_by":"https://www.geni.com/api/profile-127144","birth_location_parts":{"country":"UK","state":"Lincolnshire","latitude":53.2178821,"longitude":-0.1999702},"id":"profile-4344802","guid":"6000000000166150229","is_alive":false,"first_name":"John","current_residence":"Cistercian Abbey of Stanlaw, Chester","occupation":"EARL OF LINCOLN, Earl of Lincoln; Magna Carta Surety"},{"gender":"male","locked":false,"death_date":"3/29/1241","url":"https://www.geni.com/api/profile-21351129","last_name":"de Forz","big_tree":true,"mugshot_urls":{"thumb":"http://photos.geni.com/p11/99/47/59/f8/534448384b4a5093/william_de_fortibus_forz_t.jpg","url":"https://www.geni.com/api/photo-21161035","medium":"http://photos.geni.com/p11/99/47/59/f8/534448384b4a5093/william_de_fortibus_forz_medium.jpg","large":"http://photos.geni.com/p11/99/47/59/f8/534448384b4a5093/william_de_fortibus_forz_large.jpg","small":"http://photos.geni.com/p11/99/47/59/f8/534448384b4a5093/william_de_fortibus_forz_small.jpg","thumb2":"http://photos.geni.com/p11/99/47/59/f8/534448384b4a5093/william_de_fortibus_forz_t2.jpg"},"public":true,"death_date_parts":{"day":29,"month":3,"year":1241},"curator":"https://www.geni.com/api/profile-55243122","unions":["https://www.geni.com/api/union-7303521","https://www.geni.com/api/union-31466910"],"suffix":"Count d'Aumale (of Albemarle), Surety of the Magna Carta","claimed":false,"birth_date_parts":{},"managers":["https://www.geni.com/api/profile-1857832","https://www.geni.com/api/profile-55243122","https://www.geni.com/api/profile-66144667"],"death_location_parts":{},"phone_numbers":[],"name":"William II de Forz, Count d'Aumale (of Albemarle), Surety of the Magna Carta","created_by":"https://www.geni.com/api/profile-1857832","birth_location_parts":{},"id":"profile-21351129","guid":"6000000000424798772","is_alive":false,"first_name":"William II"},{"maiden_name":"de Montfichet","gender":"male","birth_date":"1162","locked":false,"url":"https://www.geni.com/api/profile-21351140","last_name":"de Montfichet","big_tree":true,"mugshot_urls":{"thumb":"http://photos.geni.com/p11/6e/bb/fa/c8/534448384b4a509e/richard_de_montfichet_t.jpg","url":"https://www.geni.com/api/photo-21161046","medium":"http://photos.geni.com/p11/6e/bb/fa/c8/534448384b4a509e/richard_de_montfichet_medium.jpg","large":"http://photos.geni.com/p11/6e/bb/fa/c8/534448384b4a509e/richard_de_montfichet_large.jpg","small":"http://photos.geni.com/p11/6e/bb/fa/c8/534448384b4a509e/richard_de_montfichet_small.jpg","thumb2":"http://photos.geni.com/p11/6e/bb/fa/c8/534448384b4a509e/richard_de_montfichet_t2.jpg"},"public":true,"death_date_parts":{},"curator":"https://www.geni.com/api/profile-55243122","unions":["https://www.geni.com/api/union-7303525"],"suffix":"Baron of Stanstead, Surety of the Magna Carta","claimed":false,"birth_date_parts":{"year":1162},"managers":["https://www.geni.com/api/profile-1857832"],"death_location_parts":{},"phone_numbers":[],"name":"Richard de Montfichet, Baron of Stanstead, Surety of the Magna Carta","created_by":"https://www.geni.com/api/profile-1857832","birth_location_parts":{},"id":"profile-21351140","guid":"6000000000424798876","is_alive":false,"first_name":"Richard"},{"maiden_name":"MacWilliam","gender":"male","merge_note":"Alexander was the ONLY son between his parents. ","birth_date":"8/24/1198","burial_date_parts":{"year":1249},"locked":false,"death_date":"7/8/1249","burial_location":"Melrose Abbey, Melrose, Roxburghshire, Scotland","burial_location_parts":{"place_name":"Melrose Abbey, Melrose, Roxburghshire, Scotland"},"birth_location":"Haddington, East Lothian, Scotland","url":"https://www.geni.com/api/profile-3527751","last_name":"King of Scotland","big_tree":true,"mugshot_urls":{"thumb":"http://photos.geni.com/p9/6989/3133/53444837a3b4f286/alex2_t.jpg","url":"https://www.geni.com/api/photo-17196926","medium":"http://photos.geni.com/p9/6989/3133/53444837a3b4f286/alex2_medium.jpg","original":"http://assets1.geni.com/media/p9/6989/3133/53444837a3b4f286/alex2_original.jpg","large":"http://photos.geni.com/p9/6989/3133/53444837a3b4f286/alex2_large.jpg","small":"http://photos.geni.com/p9/6989/3133/53444837a3b4f286/alex2_small.jpg","thumb2":"http://photos.geni.com/p9/6989/3133/53444837a3b4f286/alex2_t2.jpg"},"public":true,"death_date_parts":{"day":8,"month":7,"year":1249},"curator":"https://www.geni.com/api/profile-112223676","unions":["https://www.geni.com/api/union-19140141","https://www.geni.com/api/union-23533510","https://www.geni.com/api/union-29866439","https://www.geni.com/api/union-5846768","https://www.geni.com/api/union-7303987"],"suffix":"King of Scotland","claimed":false,"birth_date_parts":{"day":24,"month":8,"year":1198},"managers":["https://www.geni.com/api/profile-1857832","https://www.geni.com/api/profile-17218573","https://www.geni.com/api/profile-13506091","https://www.geni.com/api/profile-57399457","https://www.geni.com/api/profile-18310466","https://www.geni.com/api/profile-44569516","https://www.geni.com/api/profile-20169896","https://www.geni.com/api/profile-54795994","https://www.geni.com/api/profile-42543608","https://www.geni.com/api/profile-50055480","https://www.geni.com/api/profile-23487913","https://www.geni.com/api/profile-73220641","https://www.geni.com/api/profile-64392184","https://www.geni.com/api/profile-42557601","https://www.geni.com/api/profile-14367233","https://www.geni.com/api/profile-16265647","https://www.geni.com/api/profile-48213691","https://www.geni.com/api/profile-110817899","https://www.geni.com/api/profile-993882","https://www.geni.com/api/profile-6594914","https://www.geni.com/api/profile-34550065","https://www.geni.com/api/profile-7385144","https://www.geni.com/api/profile-6594637","https://www.geni.com/api/profile-82824271","https://www.geni.com/api/profile-66144667","https://www.geni.com/api/profile-34069147","https://www.geni.com/api/profile-59506511","https://www.geni.com/api/profile-23224735","https://www.geni.com/api/profile-71222404","https://www.geni.com/api/profile-41222844","https://www.geni.com/api/profile-27163758","https://www.geni.com/api/profile-120983090","https://www.geni.com/api/profile-89175005","https://www.geni.com/api/profile-24698361","https://www.geni.com/api/profile-54344863","https://www.geni.com/api/profile-73662535","https://www.geni.com/api/profile-10783142","https://www.geni.com/api/profile-27555500","https://www.geni.com/api/profile-71634858","https://www.geni.com/api/profile-19894094","https://www.geni.com/api/profile-38589487","https://www.geni.com/api/profile-50744542","https://www.geni.com/api/profile-25417360","https://www.geni.com/api/profile-69375563","https://www.geni.com/api/profile-55417226","https://www.geni.com/api/profile-1693836","https://www.geni.com/api/profile-38465497","https://www.geni.com/api/profile-1294997","https://www.geni.com/api/profile-2457879","https://www.geni.com/api/profile-2347391","https://www.geni.com/api/profile-67917894","https://www.geni.com/api/profile-61008451","https://www.geni.com/api/profile-48718688","https://www.geni.com/api/profile-21180162","https://www.geni.com/api/profile-73598995","https://www.geni.com/api/profile-2038384","https://www.geni.com/api/profile-31534","https://www.geni.com/api/profile-20375076","https://www.geni.com/api/profile-44511590","https://www.geni.com/api/profile-45478048","https://www.geni.com/api/profile-41144984","https://www.geni.com/api/profile-69024324","https://www.geni.com/api/profile-7385204","https://www.geni.com/api/profile-67227177","https://www.geni.com/api/profile-74920195","https://www.geni.com/api/profile-9920856","https://www.geni.com/api/profile-51634229","https://www.geni.com/api/profile-39938543","https://www.geni.com/api/profile-27514545","https://www.geni.com/api/profile-51095664","https://www.geni.com/api/profile-48377152","https://www.geni.com/api/profile-2129301","https://www.geni.com/api/profile-41047148","https://www.geni.com/api/profile-10962189","https://www.geni.com/api/profile-12494493","https://www.geni.com/api/profile-5664629","https://www.geni.com/api/profile-10659684","https://www.geni.com/api/profile-23336321","https://www.geni.com/api/profile-62112898","https://www.geni.com/api/profile-49959829"],"death_location":"Kerrera, Argyll, Strathclyde, Scotland","death_location_parts":{"place_name":"Kerrera, Argyll, Strathclyde, Scotland"},"phone_numbers":[],"name":"Alexander II Dunkeld, King of Scots","created_by":"https://www.geni.com/api/profile-1294997","birth_location_parts":{"place_name":"Haddington, East Lothian, Scotland"},"id":"profile-3527751","guid":"6000000000424836694","middle_name":"\"The Peaceful\"","display_name":"Alexander II Dunkeld, King of Scots","is_alive":false,"burial_date":"1249","first_name":"Alexander II","current_residence":"Melrose Abbey, Melrose, Roxburghshire, Scotland","occupation":"King of Scotland, King of Sotland, Kung av Skottland 1214-1249, King of Scotland (1214 - 1249), King of Scots, Kung 1214-49"},{"gender":"male","birth_date":"c. May 1190","burial_date_parts":{"day":15,"month":4,"year":1231},"locked":true,"death_date":"4/6/1231","burial_location":"Temple Church, London, Middlesex, England","burial_location_parts":{"place_name":"Temple Church, London, Middlesex, England"},"birth_location":"Pembroke, Pembrokeshire, Wales","url":"https://www.geni.com/api/profile-17672882","last_name":"Marshal","big_tree":true,"mugshot_urls":{"thumb":"http://photos.geni.com/p11/bd/56/e0/12/534448384b4a5094/william_2_marshall_t.jpg","url":"https://www.geni.com/api/photo-21161036","medium":"http://photos.geni.com/p11/bd/56/e0/12/534448384b4a5094/william_2_marshall_medium.jpg","large":"http://photos.geni.com/p11/bd/56/e0/12/534448384b4a5094/william_2_marshall_large.jpg","small":"http://photos.geni.com/p11/bd/56/e0/12/534448384b4a5094/william_2_marshall_small.jpg","thumb2":"http://photos.geni.com/p11/bd/56/e0/12/534448384b4a5094/william_2_marshall_t2.jpg"},"public":true,"death_date_parts":{"day":6,"month":4,"year":1231},"curator":"https://www.geni.com/api/profile-112223676","unions":["https://www.geni.com/api/union-5674819","https://www.geni.com/api/union-28885520","https://www.geni.com/api/union-24870264","https://www.geni.com/api/union-6046575"],"suffix":"2nd Earl Pembroke (2nd creation), Surety of the Magna Carta","claimed":false,"birth_date_parts":{"month":5,"circa":true,"year":1190},"managers":["https://www.geni.com/api/profile-112223676"],"death_location":"Spain","death_location_parts":{"place_name":"Spain"},"phone_numbers":[],"name":"William Marshal, 2nd Earl Pembroke (2nd creation), Surety of the Magna Carta","created_by":"https://www.geni.com/api/profile-8196424","birth_location_parts":{"place_name":"Pembroke, Pembrokeshire, Wales"},"id":"profile-17672882","guid":"6000000000424886987","is_alive":false,"burial_date":"4/15/1231","first_name":"William","current_residence":"Temple Church, London, Middlesex, England","occupation":"Chief Justiciar of Ireland, Medieval English nobleman"},{"maiden_name":"De Ross","gender":"male","merge_note":"married to Isabel of Scotland, daughter of William and his mistress Isabel. known children William and Robert","birth_date":"1172","burial_date_parts":{"year":1227},"locked":true,"death_date":"c. 12/11/1226","burial_location":"Temple Church, London, England","burial_location_parts":{"place_name":"Temple Church, London, England"},"birth_location":"Hamlake, West Riding, Yorkshire, England","url":"https://www.geni.com/api/profile-11100005","last_name":"de Ros","big_tree":true,"mugshot_urls":{"thumb":"http://photos.geni.com/p11/8e/ba/99/2d/534448384b4a509c/robert_de_roos_t.jpg","url":"https://www.geni.com/api/photo-21161044","medium":"http://photos.geni.com/p11/8e/ba/99/2d/534448384b4a509c/robert_de_roos_medium.jpg","large":"http://photos.geni.com/p11/8e/ba/99/2d/534448384b4a509c/robert_de_roos_large.jpg","small":"http://photos.geni.com/p11/8e/ba/99/2d/534448384b4a509c/robert_de_roos_small.jpg","thumb2":"http://photos.geni.com/p11/8e/ba/99/2d/534448384b4a509c/robert_de_roos_t2.jpg"},"public":true,"death_date_parts":{"day":11,"month":12,"circa":true,"year":1226},"curator":"https://www.geni.com/api/profile-17217530","unions":["https://www.geni.com/api/union-7377093","https://www.geni.com/api/union-10632578","https://www.geni.com/api/union-15764961"],"suffix":"1st Lord of Helmsley, Surety of the Magna Carta","claimed":false,"birth_date_parts":{"year":1172},"managers":["https://www.geni.com/api/profile-17217530"],"death_location":"Helmsley, Holderness, Yorkshire, England","death_location_parts":{"place_name":"Helmsley, Holderness, Yorkshire, England"},"phone_numbers":[],"name":"Robert, 1st Lord Ros of Helmsley","created_by":"https://www.geni.com/api/profile-1158734","birth_location_parts":{"place_name":"Hamlake, West Riding, Yorkshire, England"},"id":"profile-11100005","guid":"6000000000437148369","middle_name":"\"Furfan\"","display_name":"Robert, 1st Lord Ros of Helmsley","is_alive":false,"burial_date":"1227","first_name":"Robert","current_residence":"Temple Church, London, England","occupation":"Sheriff of Cumberland, 1213-1215., Lord of Hamlake Castle, Magna Carta Surety, Knight Templar"},{"maiden_name":"de Mowbray","gender":"male","birth_date":"1172","burial_date_parts":{},"locked":false,"death_date":"3/24/1223","burial_location_parts":{},"birth_location":"Slingsby \u0026 Thirsk, North Ride Yorkshire, England","url":"https://www.geni.com/api/profile-25369660","last_name":"de Mowbray","big_tree":true,"mugshot_urls":{"thumb":"http://photos.geni.com/p11/a8/eb/d0/c6/534448384b4a508f/william_de_mowbray_t.jpg","url":"https://www.geni.com/api/photo-21161031","medium":"http://photos.geni.com/p11/a8/eb/d0/c6/534448384b4a508f/william_de_mowbray_medium.jpg","large":"http://photos.geni.com/p11/a8/eb/d0/c6/534448384b4a508f/william_de_mowbray_large.jpg","small":"http://photos.geni.com/p11/a8/eb/d0/c6/534448384b4a508f/william_de_mowbray_small.jpg","thumb2":"http://photos.geni.com/p11/a8/eb/d0/c6/534448384b4a508f/william_de_mowbray_t2.jpg"},"public":true,"death_date_parts":{"day":24,"month":3,"year":1223},"curator":"https://www.geni.com/api/profile-34069147","unions":["https://www.geni.com/api/union-24166339","https://www.geni.com/api/union-19125371","https://www.geni.com/api/union-19121224","https://www.geni.com/api/union-9277056","https://www.geni.com/api/union-34179738"],"suffix":"Lord of Axholme, Surety of the Magna Carta","claimed":false,"birth_date_parts":{"year":1172},"managers":["https://www.geni.com/api/profile-27743245","https://www.geni.com/api/profile-102361912","https://www.geni.com/api/profile-40197934","https://www.geni.com/api/profile-104524503","https://www.geni.com/api/profile-56953250","https://www.geni.com/api/profile-67917894","https://www.geni.com/api/profile-44569516","https://www.geni.com/api/profile-67543083","https://www.geni.com/api/profile-41034115","https://www.geni.com/api/profile-56361694","https://www.geni.com/api/profile-15133659","https://www.geni.com/api/profile-8326922","https://www.geni.com/api/profile-19613779","https://www.geni.com/api/profile-20490300","https://www.geni.com/api/profile-31534","https://www.geni.com/api/profile-74920195","https://www.geni.com/api/profile-43764108","https://www.geni.com/api/profile-56298213","https://www.geni.com/api/profile-34069147","https://www.geni.com/api/profile-13840408","https://www.geni.com/api/profile-48779831","https://www.geni.com/api/profile-17393823","https://www.geni.com/api/profile-21180162","https://www.geni.com/api/profile-1158742","https://www.geni.com/api/profile-121059873","https://www.geni.com/api/profile-24319098","https://www.geni.com/api/profile-39194830","https://www.geni.com/api/profile-61008451","https://www.geni.com/api/profile-112223676","https://www.geni.com/api/profile-41615354","https://www.geni.com/api/profile-38465497","https://www.geni.com/api/profile-1294997","https://www.geni.com/api/profile-13550013","https://www.geni.com/api/profile-48460304","https://www.geni.com/api/profile-27555500","https://www.geni.com/api/profile-9920856"],"death_location":"Axholme, Lincolnshire, England","death_location_parts":{"place_name":"Axholme, Lincolnshire, England"},"phone_numbers":[],"name":"William de Mowbray, MCB","created_by":"https://www.geni.com/api/profile-6005631","birth_location_parts":{"place_name":"Slingsby \u0026 Thirsk, North Ride Yorkshire, England"},"id":"profile-25369660","guid":"6000000000796884769","middle_name":"de Mowbray Baron","display_name":"William de Mowbray, MCB","is_alive":false,"first_name":"William"},{"maiden_name":"de Percy","gender":"male","birth_date":"c. 1170","burial_date_parts":{},"locked":false,"death_date":"August 1244","burial_location":"Fountains Abbey","burial_location_parts":{"place_name":"Fountains Abbey"},"birth_location":"Northumberland - son of Sir Henry","url":"https://www.geni.com/api/profile-26994163","last_name":"de Percy","big_tree":true,"mugshot_urls":{"thumb":"http://photos.geni.com/p11/0b/44/b6/ba/534448384b4a509d/richard_de_percy_t.jpg","url":"https://www.geni.com/api/photo-21161045","medium":"http://photos.geni.com/p11/0b/44/b6/ba/534448384b4a509d/richard_de_percy_medium.jpg","large":"http://photos.geni.com/p11/0b/44/b6/ba/534448384b4a509d/richard_de_percy_large.jpg","small":"http://photos.geni.com/p11/0b/44/b6/ba/534448384b4a509d/richard_de_percy_small.jpg","thumb2":"http://photos.geni.com/p11/0b/44/b6/ba/534448384b4a509d/richard_de_percy_t2.jpg"},"public":true,"death_date_parts":{"month":8,"year":1244},"curator":"https://www.geni.com/api/profile-34069147","unions":["https://www.geni.com/api/union-11719923","https://www.geni.com/api/union-21071989","https://www.geni.com/api/union-34898306","https://www.geni.com/api/union-23539814"],"suffix":"V","claimed":false,"birth_date_parts":{"circa":true,"year":1170},"managers":["https://www.geni.com/api/profile-1294997","https://www.geni.com/api/profile-41553937","https://www.geni.com/api/profile-18029488","https://www.geni.com/api/profile-23336321","https://www.geni.com/api/profile-39938543","https://www.geni.com/api/profile-67917894","https://www.geni.com/api/profile-40197934","https://www.geni.com/api/profile-45478048","https://www.geni.com/api/profile-2347391","https://www.geni.com/api/profile-37030039","https://www.geni.com/api/profile-56361694","https://www.geni.com/api/profile-62112898","https://www.geni.com/api/profile-73220641","https://www.geni.com/api/profile-8326922","https://www.geni.com/api/profile-5750530","https://www.geni.com/api/profile-1857832","https://www.geni.com/api/profile-79736682","https://www.geni.com/api/profile-69375563","https://www.geni.com/api/profile-127144","https://www.geni.com/api/profile-34069147","https://www.geni.com/api/profile-2129301","https://www.geni.com/api/profile-41047148","https://www.geni.com/api/profile-27889157","https://www.geni.com/api/profile-23493953","https://www.geni.com/api/profile-38465497","https://www.geni.com/api/profile-112223676","https://www.geni.com/api/profile-38589487","https://www.geni.com/api/profile-27555500","https://www.geni.com/api/profile-34869760"],"death_location":"England - 5th Baron de Percy","death_location_parts":{"place_name":"England - 5th Baron de Percy"},"phone_numbers":[],"name":"Richard de Percy, V","created_by":"https://www.geni.com/api/profile-18029488","birth_location_parts":{"place_name":"Northumberland - son of Sir Henry"},"id":"profile-26994163","guid":"6000000000969942000","middle_name":"Radulph","is_alive":false,"first_name":"Richard","current_residence":"Fountains Abbey","occupation":"Magna Carta surety, Baron Percy 5th, Baron"},{"maiden_name":"le Bigod","gender":"male","birth_date":"1186","burial_date_parts":{"day":5,"month":2,"year":1224},"locked":false,"death_date":"2/18/1225","burial_location":"Thetford Church, Thetford, Norfolk, England","burial_location_parts":{"place_name":"Thetford Church, Thetford, Norfolk, England"},"birth_location":"Thetford, Norfolk, England","url":"https://www.geni.com/api/profile-28335975","last_name":"Bigod","big_tree":true,"mugshot_urls":{"thumb":"http://photos.geni.com/p11/14/ee/e1/e9/534448384b4a50a3/hugh_bigot_t.jpg","url":"https://www.geni.com/api/photo-21161051","medium":"http://photos.geni.com/p11/14/ee/e1/e9/534448384b4a50a3/hugh_bigot_medium.jpg","large":"http://photos.geni.com/p11/14/ee/e1/e9/534448384b4a50a3/hugh_bigot_large.jpg","small":"http://photos.geni.com/p11/14/ee/e1/e9/534448384b4a50a3/hugh_bigot_small.jpg","thumb2":"http://photos.geni.com/p11/14/ee/e1/e9/534448384b4a50a3/hugh_bigot_t2.jpg"},"public":true,"death_date_parts":{"day":18,"month":2,"year":1225},"curator":"https://www.geni.com/api/profile-34069147","unions":["https://www.geni.com/api/union-24355161","https://www.geni.com/api/union-29968225"],"suffix":"3rd Earl of Norfolk, Surety of the Magna Carta","claimed":false,"birth_date_parts":{"year":1186},"managers":["https://www.geni.com/api/profile-13506091","https://www.geni.com/api/profile-89564782","https://www.geni.com/api/profile-44569516","https://www.geni.com/api/profile-22432","https://www.geni.com/api/profile-29047833","https://www.geni.com/api/profile-68006688","https://www.geni.com/api/profile-17008350","https://www.geni.com/api/profile-73220641","https://www.geni.com/api/profile-20453683","https://www.geni.com/api/profile-7401177","https://www.geni.com/api/profile-38244644","https://www.geni.com/api/profile-43764108","https://www.geni.com/api/profile-14367233","https://www.geni.com/api/profile-72206363","https://www.geni.com/api/profile-34192992","https://www.geni.com/api/profile-85327052","https://www.geni.com/api/profile-1431292","https://www.geni.com/api/profile-24413936","https://www.geni.com/api/profile-35627886","https://www.geni.com/api/profile-48213691","https://www.geni.com/api/profile-16265647","https://www.geni.com/api/profile-84065897","https://www.geni.com/api/profile-39194830","https://www.geni.com/api/profile-55054764","https://www.geni.com/api/profile-6594637","https://www.geni.com/api/profile-50442721","https://www.geni.com/api/profile-14716250","https://www.geni.com/api/profile-7543425","https://www.geni.com/api/profile-15144607","https://www.geni.com/api/profile-39201292","https://www.geni.com/api/profile-53829587","https://www.geni.com/api/profile-66144667","https://www.geni.com/api/profile-57439647","https://www.geni.com/api/profile-127144","https://www.geni.com/api/profile-453368","https://www.geni.com/api/profile-112537","https://www.geni.com/api/profile-41034115","https://www.geni.com/api/profile-102361912","https://www.geni.com/api/profile-18809159","https://www.geni.com/api/profile-5559156","https://www.geni.com/api/profile-11137488","https://www.geni.com/api/profile-30226732","https://www.geni.com/api/profile-10783142","https://www.geni.com/api/profile-37445901","https://www.geni.com/api/profile-90766813","https://www.geni.com/api/profile-38589487","https://www.geni.com/api/profile-10832909","https://www.geni.com/api/profile-22502549","https://www.geni.com/api/profile-27555500","https://www.geni.com/api/profile-39719955","https://www.geni.com/api/profile-16309096","https://www.geni.com/api/profile-77175054","https://www.geni.com/api/profile-76790854","https://www.geni.com/api/profile-24319098","https://www.geni.com/api/profile-49570332","https://www.geni.com/api/profile-66040380","https://www.geni.com/api/profile-2319508","https://www.geni.com/api/profile-76037379","https://www.geni.com/api/profile-35681796","https://www.geni.com/api/profile-56953250","https://www.geni.com/api/profile-1693836","https://www.geni.com/api/profile-63647642","https://www.geni.com/api/profile-49393207","https://www.geni.com/api/profile-1294997","https://www.geni.com/api/profile-63913973","https://www.geni.com/api/profile-2347391","https://www.geni.com/api/profile-64055347","https://www.geni.com/api/profile-45478048","https://www.geni.com/api/profile-48718688","https://www.geni.com/api/profile-2186652","https://www.geni.com/api/profile-61008451","https://www.geni.com/api/profile-43532127","https://www.geni.com/api/profile-1365987","https://www.geni.com/api/profile-39472670","https://www.geni.com/api/profile-7385204","https://www.geni.com/api/profile-626283","https://www.geni.com/api/profile-112223676","https://www.geni.com/api/profile-54756574","https://www.geni.com/api/profile-74920195","https://www.geni.com/api/profile-56063426","https://www.geni.com/api/profile-8196424","https://www.geni.com/api/profile-35540936","https://www.geni.com/api/profile-9920856","https://www.geni.com/api/profile-22574497","https://www.geni.com/api/profile-1390931","https://www.geni.com/api/profile-5750530","https://www.geni.com/api/profile-49105419","https://www.geni.com/api/profile-39938543","https://www.geni.com/api/profile-17184679","https://www.geni.com/api/profile-14682731","https://www.geni.com/api/profile-5312495","https://www.geni.com/api/profile-10659684","https://www.geni.com/api/profile-56298213","https://www.geni.com/api/profile-12494493","https://www.geni.com/api/profile-29935931","https://www.geni.com/api/profile-49959829","https://www.geni.com/api/profile-8326922","https://www.geni.com/api/profile-90560982","https://www.geni.com/api/profile-56361694","https://www.geni.com/api/profile-115720410","https://www.geni.com/api/profile-5918528","https://www.geni.com/api/profile-29195302","https://www.geni.com/api/profile-25637387","https://www.geni.com/api/profile-62112898","https://www.geni.com/api/profile-31526823","https://www.geni.com/api/profile-104524503"],"death_location":"Thetford, Norfolk, England","death_location_parts":{"place_name":"Thetford, Norfolk, England"},"phone_numbers":[],"name":"Hugh le Bigod, 3rd Earl of Norfolk","created_by":"https://www.geni.com/api/profile-453368","birth_location_parts":{"place_name":"Thetford, Norfolk, England"},"id":"profile-28335975","guid":"6000000001126515902","middle_name":"(1186)","display_name":"Hugh le Bigod, 3rd Earl of Norfolk","is_alive":false,"burial_date":"2/5/1224","first_name":"Hugh","current_residence":"Thetford Church, Thetford, Norfolk, England","occupation":"3rd Earl of Norfolk, Marshall of England, Earl of Norfolk, Magna Carta Surety"},{"maiden_name":"De Vere","gender":"male","birth_date":"c. 1164","burial_date_parts":{},"baptism_date_parts":{"circa":true,"year":1164},"locked":false,"death_date":"11/1/1221","burial_location":"Benedictine Priory, Hatfield, Broad Oaks, Essex, UK","burial_location_parts":{"county":"Essex","city":"Hatfield, Broad Oaks","country":"UK","place_name":"Benedictine Priory","latitude":54.313919,"longitude":-2.23218},"birth_location":"Hatfield, Broad Oaks, Essex, UK","baptism_location_parts":{},"url":"https://www.geni.com/api/profile-4317082","last_name":"Vere","big_tree":true,"mugshot_urls":{"thumb":"http://photos.geni.com/p10/6582/6261/534448380d9a8d6a/545px-Blason_famille_de_Vere_t.jpg","url":"https://www.geni.com/api/photo-19718132","medium":"http://photos.geni.com/p10/6582/6261/534448380d9a8d6a/545px-Blason_famille_de_Vere_medium.jpg","original":"http://assets2.geni.com/media/p10/6582/6261/534448380d9a8d6a/545px-Blason_famille_de_Vere_original.jpg","large":"http://photos.geni.com/p10/6582/6261/534448380d9a8d6a/545px-Blason_famille_de_Vere_large.jpg","small":"http://photos.geni.com/p10/6582/6261/534448380d9a8d6a/545px-Blason_famille_de_Vere_small.jpg","thumb2":"http://photos.geni.com/p10/6582/6261/534448380d9a8d6a/545px-Blason_famille_de_Vere_t2.jpg"},"public":true,"death_date_parts":{"day":1,"month":11,"year":1221},"curator":"https://www.geni.com/api/profile-34069147","unions":["https://www.geni.com/api/union-31266323","https://www.geni.com/api/union-31266325","https://www.geni.com/api/union-33222304","https://www.geni.com/api/union-31266345","https://www.geni.com/api/union-37887396","https://www.geni.com/api/union-14088486"],"suffix":"3rd Earl of Oxford","claimed":false,"birth_date_parts":{"circa":true,"year":1164},"managers":["https://www.geni.com/api/profile-23336321","https://www.geni.com/api/profile-3999539","https://www.geni.com/api/profile-125752","https://www.geni.com/api/profile-34205139","https://www.geni.com/api/profile-6594637","https://www.geni.com/api/profile-34007302","https://www.geni.com/api/profile-62777846","https://www.geni.com/api/profile-16333210","https://www.geni.com/api/profile-53384202","https://www.geni.com/api/profile-22666414","https://www.geni.com/api/profile-27555500","https://www.geni.com/api/profile-87246334","https://www.geni.com/api/profile-7543425","https://www.geni.com/api/profile-39194830","https://www.geni.com/api/profile-70064526","https://www.geni.com/api/profile-10962189","https://www.geni.com/api/profile-52440548","https://www.geni.com/api/profile-74920195","https://www.geni.com/api/profile-54756574","https://www.geni.com/api/profile-49875378","https://www.geni.com/api/profile-11137488","https://www.geni.com/api/profile-23487913","https://www.geni.com/api/profile-104524503","https://www.geni.com/api/profile-16046011","https://www.geni.com/api/profile-56361694","https://www.geni.com/api/profile-45478048","https://www.geni.com/api/profile-20375076","https://www.geni.com/api/profile-2497157","https://www.geni.com/api/profile-89140457","https://www.geni.com/api/profile-36410367","https://www.geni.com/api/profile-84856373","https://www.geni.com/api/profile-39131367","https://www.geni.com/api/profile-38589487","https://www.geni.com/api/profile-29219496","https://www.geni.com/api/profile-37030039","https://www.geni.com/api/profile-41615354","https://www.geni.com/api/profile-21994144","https://www.geni.com/api/profile-49570332","https://www.geni.com/api/profile-17488592","https://www.geni.com/api/profile-48718688","https://www.geni.com/api/profile-61242237","https://www.geni.com/api/profile-5517491","https://www.geni.com/api/profile-13506091","https://www.geni.com/api/profile-53810097","https://www.geni.com/api/profile-9920856","https://www.geni.com/api/profile-82164098","https://www.geni.com/api/profile-40591310","https://www.geni.com/api/profile-109492096","https://www.geni.com/api/profile-69375563","https://www.geni.com/api/profile-13697875","https://www.geni.com/api/profile-22013949","https://www.geni.com/api/profile-1857832","https://www.geni.com/api/profile-20453683","https://www.geni.com/api/profile-46367400","https://www.geni.com/api/profile-14682731","https://www.geni.com/api/profile-8326922","https://www.geni.com/api/profile-2129301","https://www.geni.com/api/profile-38465497","https://www.geni.com/api/profile-56953250","https://www.geni.com/api/profile-73220641","https://www.geni.com/api/profile-7400981","https://www.geni.com/api/profile-8196424","https://www.geni.com/api/profile-14340359","https://www.geni.com/api/profile-85625428","https://www.geni.com/api/profile-67917894","https://www.geni.com/api/profile-12395256","https://www.geni.com/api/profile-7401177","https://www.geni.com/api/profile-13840408","https://www.geni.com/api/profile-52956166","https://www.geni.com/api/profile-103319272","https://www.geni.com/api/profile-55208964","https://www.geni.com/api/profile-76790854","https://www.geni.com/api/profile-68006688","https://www.geni.com/api/profile-62112898","https://www.geni.com/api/profile-25417360","https://www.geni.com/api/profile-112537","https://www.geni.com/api/profile-44569516","https://www.geni.com/api/profile-25722553","https://www.geni.com/api/profile-4908120","https://www.geni.com/api/profile-41690647","https://www.geni.com/api/profile-54344863","https://www.geni.com/api/profile-41034115","https://www.geni.com/api/profile-66144667","https://www.geni.com/api/profile-24413936","https://www.geni.com/api/profile-20585794","https://www.geni.com/api/profile-6937729","https://www.geni.com/api/profile-30226732","https://www.geni.com/api/profile-49105419","https://www.geni.com/api/profile-22235353","https://www.geni.com/api/profile-35681796","https://www.geni.com/api/profile-3047303","https://www.geni.com/api/profile-18310466","https://www.geni.com/api/profile-9688203","https://www.geni.com/api/profile-24319098","https://www.geni.com/api/profile-77427125","https://www.geni.com/api/profile-13550013","https://www.geni.com/api/profile-56063426","https://www.geni.com/api/profile-71684074","https://www.geni.com/api/profile-34869760","https://www.geni.com/api/profile-693317","https://www.geni.com/api/profile-35627886","https://www.geni.com/api/profile-2347391","https://www.geni.com/api/profile-1294997","https://www.geni.com/api/profile-5559156","https://www.geni.com/api/profile-5300015","https://www.geni.com/api/profile-65972879","https://www.geni.com/api/profile-29047833","https://www.geni.com/api/profile-21765734","https://www.geni.com/api/profile-45147462","https://www.geni.com/api/profile-60789843","https://www.geni.com/api/profile-127144","https://www.geni.com/api/profile-34069147","https://www.geni.com/api/profile-40481689","https://www.geni.com/api/profile-73662535","https://www.geni.com/api/profile-41553937","https://www.geni.com/api/profile-41047148","https://www.geni.com/api/profile-3546641","https://www.geni.com/api/profile-48779831","https://www.geni.com/api/profile-112223676","https://www.geni.com/api/profile-76037379","https://www.geni.com/api/profile-22432","https://www.geni.com/api/profile-48213691","https://www.geni.com/api/profile-26118386"],"death_location":"Hedingham Castle, Essex, UK","death_location_parts":{"county":"Essex","country":"UK","place_name":"Hedingham Castle","latitude":54.313919,"longitude":-2.23218},"phone_numbers":[],"name":"Robert Vere, 3rd Earl of Oxford","created_by":"https://www.geni.com/api/profile-3999539","birth_location_parts":{"county":"Essex","city":"Hatfield, Broad Oaks","country":"UK","latitude":54.313919,"longitude":-2.23218},"id":"profile-4317082","guid":"6000000001210373280","display_name":"Robert Vere, 3rd Earl of Oxford","is_alive":false,"first_name":"Robert","current_residence":"Benedictine Priory, Hatfield, Broad Oaks, Essex, UK","occupation":"LORD CHAMBERLAIN, EARL OF OXFORD (3RD), MAGNA CARTA SURETY, 3'rd Earl of Oxford, 3rd Earl of Oxford, Earl of Essex","baptism_date":"c. 1164"},{"maiden_name":"de Vesci","gender":"male","birth_date":"1169","locked":false,"death_date":"6/12/1216","birth_location":"Alnwick Castle, Northumberland, England","url":"https://www.geni.com/api/profile-29780568","last_name":"de Vesci","big_tree":true,"mugshot_urls":{"thumb":"http://photos.geni.com/p11/bd/14/8f/79/534448384be000d5/eustace_de_vescy_t.jpg","url":"https://www.geni.com/api/photo-21174522","medium":"http://photos.geni.com/p11/bd/14/8f/79/534448384be000d5/eustace_de_vescy_medium.jpg","original":"http://assets1.geni.com/media/p11/bd/14/8f/79/534448384be000d5/eustace_de_vescy_original.jpg","large":"http://photos.geni.com/p11/bd/14/8f/79/534448384be000d5/eustace_de_vescy_large.jpg","small":"http://photos.geni.com/p11/bd/14/8f/79/534448384be000d5/eustace_de_vescy_small.jpg","thumb2":"http://photos.geni.com/p11/bd/14/8f/79/534448384be000d5/eustace_de_vescy_t2.jpg"},"public":true,"death_date_parts":{"day":12,"month":6,"year":1216},"curator":"https://www.geni.com/api/profile-34069147","unions":["https://www.geni.com/api/union-10318266","https://www.geni.com/api/union-10166787"],"suffix":"Surety of the Magna Carta","claimed":false,"birth_date_parts":{"year":1169},"managers":["https://www.geni.com/api/profile-11505550","https://www.geni.com/api/profile-39938543","https://www.geni.com/api/profile-44569516","https://www.geni.com/api/profile-56361694","https://www.geni.com/api/profile-74920195","https://www.geni.com/api/profile-15130251","https://www.geni.com/api/profile-15417351","https://www.geni.com/api/profile-48213691","https://www.geni.com/api/profile-30226732","https://www.geni.com/api/profile-53829587","https://www.geni.com/api/profile-112223676","https://www.geni.com/api/profile-1294997","https://www.geni.com/api/profile-35681796"],"death_location":"Shot through the head by an arrow while besieging Barnard Castle, Durham, England","death_location_parts":{"place_name":"Shot through the head by an arrow while besieging Barnard Castle, Durham, England"},"phone_numbers":[],"name":"Eustace de Vesci, Surety of the Magna Carta","created_by":"https://www.geni.com/api/profile-19258430","birth_location_parts":{"place_name":"Alnwick Castle, Northumberland, England"},"id":"profile-29780568","guid":"6000000001300434501","is_alive":false,"first_name":"Eustace"},{"gender":"male","birth_date":"1155","burial_date_parts":{"day":30,"month":8,"circa":true,"year":1230},"locked":false,"death_date":"10/24/1230","burial_location":"Hospital of St. Mary, Dover, England","burial_location_parts":{"place_name":"Hospital of St. Mary, Dover, England"},"birth_location":"Sussex, England","url":"https://www.geni.com/api/profile-30281154","last_name":"de Say","big_tree":true,"mugshot_urls":{"thumb":"http://photos.geni.com/p11/84/84/98/f7/534448384b4a50a6/geoffrey_de_say_t.jpg","url":"https://www.geni.com/api/photo-21161054","medium":"http://photos.geni.com/p11/84/84/98/f7/534448384b4a50a6/geoffrey_de_say_medium.jpg","large":"http://photos.geni.com/p11/84/84/98/f7/534448384b4a50a6/geoffrey_de_say_large.jpg","small":"http://photos.geni.com/p11/84/84/98/f7/534448384b4a50a6/geoffrey_de_say_small.jpg","thumb2":"http://photos.geni.com/p11/84/84/98/f7/534448384b4a50a6/geoffrey_de_say_t2.jpg"},"public":true,"death_date_parts":{"day":24,"month":10,"year":1230},"curator":"https://www.geni.com/api/profile-34069147","unions":["https://www.geni.com/api/union-34825018","https://www.geni.com/api/union-7367564","https://www.geni.com/api/union-21483068"],"suffix":"Lord of West Greenwich","claimed":false,"birth_date_parts":{"year":1155},"managers":["https://www.geni.com/api/profile-54344863","https://www.geni.com/api/profile-31309256","https://www.geni.com/api/profile-67917894","https://www.geni.com/api/profile-56361694","https://www.geni.com/api/profile-6937729","https://www.geni.com/api/profile-12558770","https://www.geni.com/api/profile-6594637","https://www.geni.com/api/profile-78174741","https://www.geni.com/api/profile-74920195","https://www.geni.com/api/profile-55208964","https://www.geni.com/api/profile-31635776","https://www.geni.com/api/profile-127144","https://www.geni.com/api/profile-30403449","https://www.geni.com/api/profile-1294997","https://www.geni.com/api/profile-9920856","https://www.geni.com/api/profile-48605700"],"death_location":"Poitou, Aquitaine, France","death_location_parts":{"place_name":"Poitou, Aquitaine, France"},"phone_numbers":[],"name":"Geoffrey II de Say, Lord of West Greenwich","created_by":"https://www.geni.com/api/profile-9920856","birth_location_parts":{"place_name":"Sussex, England"},"id":"profile-30281154","guid":"6000000001354634669","is_alive":false,"burial_date":"c. 8/30/1230","first_name":"Geoffrey II","current_residence":"Hospital of St. Mary, Dover, England","occupation":"Magna Charta Baron"},{"maiden_name":"DE BOHUN","gender":"male","birth_date":"1177","burial_date_parts":{"year":1220},"locked":false,"death_date":"6/1/1220","burial_location":"chapter-house of Llanthony Abbey, Gloucestershire, England","burial_location_parts":{"city":"chapter-house of Llanthony Abbey","country":"X-England","state":"Gloucestershire","latitude":51.76424,"longitude":-2.15137},"birth_location":"Warwick, Warwickshire, England","url":"https://www.geni.com/api/profile-20606274","last_name":"de Bohun","big_tree":true,"mugshot_urls":{"thumb":"http://assets0.geni.com/media/p13/5e/cd/df/e3/5344483899804d98/bap26dan_t.jpg","url":"https://www.geni.com/api/photo_crop-6000000011495034264","medium":"http://assets0.geni.com/media/p13/5e/cd/df/e3/5344483899804d98/bap26dan_medium.jpg","small":"http://assets0.geni.com/media/p13/5e/cd/df/e3/5344483899804d98/bap26dan_small.jpg","thumb2":"http://assets0.geni.com/media/p13/5e/cd/df/e3/5344483899804d98/bap26dan_t2.jpg"},"public":true,"death_date_parts":{"day":1,"month":6,"year":1220},"curator":"https://www.geni.com/api/profile-34069147","unions":["https://www.geni.com/api/union-22067001","https://www.geni.com/api/union-19204324"],"suffix":"1st Earl of Hereford, Magna Carta Surety","claimed":false,"birth_date_parts":{"year":1177},"managers":["https://www.geni.com/api/profile-4908120","https://www.geni.com/api/profile-13506091","https://www.geni.com/api/profile-86617545","https://www.geni.com/api/profile-57399457","https://www.geni.com/api/profile-44569516","https://www.geni.com/api/profile-20169896","https://www.geni.com/api/profile-62777846","https://www.geni.com/api/profile-29047833","https://www.geni.com/api/profile-22432","https://www.geni.com/api/profile-33455844","https://www.geni.com/api/profile-18781113","https://www.geni.com/api/profile-36197232","https://www.geni.com/api/profile-20585794","https://www.geni.com/api/profile-13550013","https://www.geni.com/api/profile-23487913","https://www.geni.com/api/profile-73220641","https://www.geni.com/api/profile-102765500","https://www.geni.com/api/profile-37740892","https://www.geni.com/api/profile-26302085","https://www.geni.com/api/profile-24413936","https://www.geni.com/api/profile-41553937","https://www.geni.com/api/profile-79049804","https://www.geni.com/api/profile-5168292","https://www.geni.com/api/profile-58795634","https://www.geni.com/api/profile-5300015","https://www.geni.com/api/profile-6594637","https://www.geni.com/api/profile-82824271","https://www.geni.com/api/profile-29219496","https://www.geni.com/api/profile-66144667","https://www.geni.com/api/profile-29003793","https://www.geni.com/api/profile-59506511","https://www.geni.com/api/profile-70877673","https://www.geni.com/api/profile-14340359","https://www.geni.com/api/profile-5559156","https://www.geni.com/api/profile-115110826","https://www.geni.com/api/profile-54344863","https://www.geni.com/api/profile-10783142","https://www.geni.com/api/profile-35818911","https://www.geni.com/api/profile-27555500","https://www.geni.com/api/profile-41615354","https://www.geni.com/api/profile-38589487","https://www.geni.com/api/profile-50744542","https://www.geni.com/api/profile-32791443","https://www.geni.com/api/profile-26148420","https://www.geni.com/api/profile-15596420","https://www.geni.com/api/profile-64946889","https://www.geni.com/api/profile-15891832","https://www.geni.com/api/profile-9279027","https://www.geni.com/api/profile-49570332","https://www.geni.com/api/profile-6797478","https://www.geni.com/api/profile-12353737","https://www.geni.com/api/profile-55417226","https://www.geni.com/api/profile-35681796","https://www.geni.com/api/profile-1802726","https://www.geni.com/api/profile-61242237","https://www.geni.com/api/profile-49393207","https://www.geni.com/api/profile-16537992","https://www.geni.com/api/profile-87684884","https://www.geni.com/api/profile-38465497","https://www.geni.com/api/profile-1294997","https://www.geni.com/api/profile-52956166","https://www.geni.com/api/profile-13840408","https://www.geni.com/api/profile-2497157","https://www.geni.com/api/profile-67917894","https://www.geni.com/api/profile-2347391","https://www.geni.com/api/profile-64171779","https://www.geni.com/api/profile-31534","https://www.geni.com/api/profile-61008451","https://www.geni.com/api/profile-5101750","https://www.geni.com/api/profile-45478048","https://www.geni.com/api/profile-8196424","https://www.geni.com/api/profile-74920195","https://www.geni.com/api/profile-14898090","https://www.geni.com/api/profile-112223676","https://www.geni.com/api/profile-41148326","https://www.geni.com/api/profile-3999539","https://www.geni.com/api/profile-14229598","https://www.geni.com/api/profile-52440548","https://www.geni.com/api/profile-9920856","https://www.geni.com/api/profile-39938543","https://www.geni.com/api/profile-48779831","https://www.geni.com/api/profile-14682731","https://www.geni.com/api/profile-17184679","https://www.geni.com/api/profile-23085185","https://www.geni.com/api/profile-40481689","https://www.geni.com/api/profile-56298213","https://www.geni.com/api/profile-10962189","https://www.geni.com/api/profile-32790155","https://www.geni.com/api/profile-41047148","https://www.geni.com/api/profile-20127937","https://www.geni.com/api/profile-104524503","https://www.geni.com/api/profile-36742723","https://www.geni.com/api/profile-8326922","https://www.geni.com/api/profile-23336321"],"death_location":"during pilgrimage to the Holy Land (Palestine)","death_location_parts":{"place_name":"during pilgrimage to the Holy Land (Palestine)"},"phone_numbers":[],"name":"Henry de Bohun, Earl of Hereford, MCB","created_by":"https://www.geni.com/api/profile-3999539","birth_location_parts":{"place_name":"Warwick, Warwickshire, England"},"id":"profile-20606274","guid":"6000000001434670985","middle_name":"(the Surety)","display_name":"Henry de Bohun, Earl of Hereford, MCB","is_alive":false,"burial_date":"1220","first_name":"Henry","current_residence":"chapter-house of Llanthony Abbey, Gloucestershire, England","occupation":"Constable of England, Magna Carta Surety (1215), 1st Earl of Hereford, Among the twenty-five barons who were elected by their, EARL OF HEREFORD (1ST), CONSTABLE OF ENGLAND, SHERIFF OF KENT, MAGNA CARTA SURETY"},{"maiden_name":"de Meschines","gender":"male","birth_date":"1172","burial_date_parts":{"day":3,"month":11,"year":1232},"locked":false,"death_date":"10/28/1232","burial_location":"St Werburg`s, Chester, Cheshire, England","burial_location_parts":{"place_name":"St Werburg`s, Chester, Cheshire, England"},"birth_location":"Oswestry, Powis, Wales","url":"https://www.geni.com/api/profile-37184377","last_name":"de Meschines","big_tree":true,"mugshot_urls":{"thumb":"http://photos.geni.com/p11/18/f7/7a/8b/534448384b3bca0a/RanulfIV_t.jpg","url":"https://www.geni.com/api/photo-21159244","medium":"http://photos.geni.com/p11/18/f7/7a/8b/534448384b3bca0a/RanulfIV_medium.jpg","original":"http://assets2.geni.com/media/p11/18/f7/7a/8b/534448384b3bca0a/RanulfIV_original.jpg","large":"http://photos.geni.com/p11/18/f7/7a/8b/534448384b3bca0a/RanulfIV_large.jpg","small":"http://photos.geni.com/p11/18/f7/7a/8b/534448384b3bca0a/RanulfIV_small.jpg","thumb2":"http://photos.geni.com/p11/18/f7/7a/8b/534448384b3bca0a/RanulfIV_t2.jpg"},"public":true,"death_date_parts":{"day":28,"month":10,"year":1232},"curator":"https://www.geni.com/api/profile-34069147","unions":["https://www.geni.com/api/union-13071119","https://www.geni.com/api/union-13071118","https://www.geni.com/api/union-19026248","https://www.geni.com/api/union-13087177","https://www.geni.com/api/union-28264358","https://www.geni.com/api/union-35359286"],"suffix":"4th Earl of Chester","claimed":false,"birth_date_parts":{"year":1172},"managers":["https://www.geni.com/api/profile-23336321","https://www.geni.com/api/profile-41553937","https://www.geni.com/api/profile-39938543","https://www.geni.com/api/profile-31933091","https://www.geni.com/api/profile-19057186","https://www.geni.com/api/profile-2347391","https://www.geni.com/api/profile-44569516","https://www.geni.com/api/profile-67917894","https://www.geni.com/api/profile-45478048","https://www.geni.com/api/profile-89933136","https://www.geni.com/api/profile-993882","https://www.geni.com/api/profile-56361694","https://www.geni.com/api/profile-62112898","https://www.geni.com/api/profile-37030039","https://www.geni.com/api/profile-55243122","https://www.geni.com/api/profile-45556907","https://www.geni.com/api/profile-8196424","https://www.geni.com/api/profile-8326922","https://www.geni.com/api/profile-73220641","https://www.geni.com/api/profile-44615019","https://www.geni.com/api/profile-56063426","https://www.geni.com/api/profile-56298213","https://www.geni.com/api/profile-5300015","https://www.geni.com/api/profile-38182532","https://www.geni.com/api/profile-69375563","https://www.geni.com/api/profile-7400981","https://www.geni.com/api/profile-2129301","https://www.geni.com/api/profile-41047148","https://www.geni.com/api/profile-66144667","https://www.geni.com/api/profile-61008451","https://www.geni.com/api/profile-24319098","https://www.geni.com/api/profile-54795994","https://www.geni.com/api/profile-24343008","https://www.geni.com/api/profile-112223676","https://www.geni.com/api/profile-38465497","https://www.geni.com/api/profile-38589487","https://www.geni.com/api/profile-1693836","https://www.geni.com/api/profile-14367233","https://www.geni.com/api/profile-1294997","https://www.geni.com/api/profile-51634229","https://www.geni.com/api/profile-35681796"],"death_location":"Wallingford, Berkshire, England","death_location_parts":{"city":"Wallingford","country":"X-England","state":"Berkshire","latitude":51.453388,"longitude":-1.03912},"phone_numbers":[],"name":"Ranulf de Blundeville, 4th Earl of Chester","created_by":"https://www.geni.com/api/profile-8196424","birth_location_parts":{"place_name":"Oswestry, Powis, Wales"},"id":"profile-37184377","guid":"6000000002043244300","middle_name":"de Blundeville","display_name":"Ranulf de Blundeville, 4th Earl of Chester","is_alive":false,"burial_date":"11/3/1232","first_name":"Ranulf (Ranulph)","current_residence":"St Werburg`s, Chester, Cheshire, England","occupation":"Earl of Chester, 6th Earl of Chester, SIXTH EARL OF CHESTER"},{"maiden_name":"Bigod","gender":"male","birth_date":"1150","burial_date_parts":{"month":7,"year":1221},"baptism_date_parts":{},"locked":false,"death_date":"7/2/1221","burial_location":"Framlingham Castle, Suffolk, England or Thetford, Norfolk, England","burial_location_parts":{"place_name":"Framlingham Castle, Suffolk, England or Thetford, Norfolk, England"},"birth_location":"Thetford, Norfolk, England","baptism_location_parts":{},"url":"https://www.geni.com/api/profile-6535565","last_name":"Bigod","big_tree":true,"mugshot_urls":{"thumb":"http://photos.geni.com/p11/fc/64/b1/1d/534448384b4a5099/roger_bigot_t.jpg","url":"https://www.geni.com/api/photo-21161041","medium":"http://photos.geni.com/p11/fc/64/b1/1d/534448384b4a5099/roger_bigot_medium.jpg","large":"http://photos.geni.com/p11/fc/64/b1/1d/534448384b4a5099/roger_bigot_large.jpg","small":"http://photos.geni.com/p11/fc/64/b1/1d/534448384b4a5099/roger_bigot_small.jpg","thumb2":"http://photos.geni.com/p11/fc/64/b1/1d/534448384b4a5099/roger_bigot_t2.jpg"},"public":true,"death_date_parts":{"day":2,"month":7,"year":1221},"curator":"https://www.geni.com/api/profile-34069147","unions":["https://www.geni.com/api/union-37754524","https://www.geni.com/api/union-7967335"],"suffix":"Sir","claimed":false,"birth_date_parts":{"year":1150},"managers":["https://www.geni.com/api/profile-3999539","https://www.geni.com/api/profile-61006634","https://www.geni.com/api/profile-38244644","https://www.geni.com/api/profile-4750937","https://www.geni.com/api/profile-6005631","https://www.geni.com/api/profile-33948298","https://www.geni.com/api/profile-10783142","https://www.geni.com/api/profile-6594637","https://www.geni.com/api/profile-42557601","https://www.geni.com/api/profile-16333210","https://www.geni.com/api/profile-84065897","https://www.geni.com/api/profile-27555500","https://www.geni.com/api/profile-90766813","https://www.geni.com/api/profile-7543425","https://www.geni.com/api/profile-53829587","https://www.geni.com/api/profile-35798379","https://www.geni.com/api/profile-31534","https://www.geni.com/api/profile-16135891","https://www.geni.com/api/profile-43764108","https://www.geni.com/api/profile-10962189","https://www.geni.com/api/profile-52440548","https://www.geni.com/api/profile-74920195","https://www.geni.com/api/profile-54756574","https://www.geni.com/api/profile-11137488","https://www.geni.com/api/profile-453368","https://www.geni.com/api/profile-104524503","https://www.geni.com/api/profile-16046011","https://www.geni.com/api/profile-45478048","https://www.geni.com/api/profile-2497157","https://www.geni.com/api/profile-73609059","https://www.geni.com/api/profile-102361912","https://www.geni.com/api/profile-55054764","https://www.geni.com/api/profile-17184679","https://www.geni.com/api/profile-14789544","https://www.geni.com/api/profile-24343008","https://www.geni.com/api/profile-57584245","https://www.geni.com/api/profile-31526823","https://www.geni.com/api/profile-38589487","https://www.geni.com/api/profile-64762929","https://www.geni.com/api/profile-15541899","https://www.geni.com/api/profile-7385204","https://www.geni.com/api/profile-56331112","https://www.geni.com/api/profile-37030039","https://www.geni.com/api/profile-21788246","https://www.geni.com/api/profile-8638448","https://www.geni.com/api/profile-36742723","https://www.geni.com/api/profile-21994144","https://www.geni.com/api/profile-21265049","https://www.geni.com/api/profile-43532127","https://www.geni.com/api/profile-49570332","https://www.geni.com/api/profile-48718688","https://www.geni.com/api/profile-61242237","https://www.geni.com/api/profile-13506091","https://www.geni.com/api/profile-49959829","https://www.geni.com/api/profile-9920856","https://www.geni.com/api/profile-14894653","https://www.geni.com/api/profile-22013949","https://www.geni.com/api/profile-626283","https://www.geni.com/api/profile-69375563","https://www.geni.com/api/profile-37615418","https://www.geni.com/api/profile-1857832","https://www.geni.com/api/profile-13697875","https://www.geni.com/api/profile-20453683","https://www.geni.com/api/profile-5312495","https://www.geni.com/api/profile-14682731","https://www.geni.com/api/profile-27406732","https://www.geni.com/api/profile-8326922","https://www.geni.com/api/profile-2129301","https://www.geni.com/api/profile-38465497","https://www.geni.com/api/profile-63647642","https://www.geni.com/api/profile-56953250","https://www.geni.com/api/profile-85327052","https://www.geni.com/api/profile-73220641","https://www.geni.com/api/profile-7400981","https://www.geni.com/api/profile-91259371","https://www.geni.com/api/profile-46501588","https://www.geni.com/api/profile-772254","https://www.geni.com/api/profile-67917894","https://www.geni.com/api/profile-49393207","https://www.geni.com/api/profile-7401177","https://www.geni.com/api/profile-1365987","https://www.geni.com/api/profile-39719955","https://www.geni.com/api/profile-104028453","https://www.geni.com/api/profile-2038384","https://www.geni.com/api/profile-2319508","https://www.geni.com/api/profile-55243122","https://www.geni.com/api/profile-63598111","https://www.geni.com/api/profile-62112898","https://www.geni.com/api/profile-115720410","https://www.geni.com/api/profile-63913973","https://www.geni.com/api/profile-14716250","https://www.geni.com/api/profile-44569516","https://www.geni.com/api/profile-90560982","https://www.geni.com/api/profile-23336321","https://www.geni.com/api/profile-13555561","https://www.geni.com/api/profile-66040380","https://www.geni.com/api/profile-54344863","https://www.geni.com/api/profile-66144667","https://www.geni.com/api/profile-16265647","https://www.geni.com/api/profile-87723756","https://www.geni.com/api/profile-10659684","https://www.geni.com/api/profile-61008451","https://www.geni.com/api/profile-113366389","https://www.geni.com/api/profile-30226732","https://www.geni.com/api/profile-13666976","https://www.geni.com/api/profile-68034189","https://www.geni.com/api/profile-25637387","https://www.geni.com/api/profile-37660784","https://www.geni.com/api/profile-1390931","https://www.geni.com/api/profile-49105419","https://www.geni.com/api/profile-35681796","https://www.geni.com/api/profile-22502549","https://www.geni.com/api/profile-17393823","https://www.geni.com/api/profile-3047303","https://www.geni.com/api/profile-60789103","https://www.geni.com/api/profile-34192992","https://www.geni.com/api/profile-24319098","https://www.geni.com/api/profile-5918528","https://www.geni.com/api/profile-13550013","https://www.geni.com/api/profile-19864285","https://www.geni.com/api/profile-15603445","https://www.geni.com/api/profile-46995486","https://www.geni.com/api/profile-56063426","https://www.geni.com/api/profile-39938543","https://www.geni.com/api/profile-56298213","https://www.geni.com/api/profile-29047833","https://www.geni.com/api/profile-5559156","https://www.geni.com/api/profile-39472670","https://www.geni.com/api/profile-1158734","https://www.geni.com/api/profile-27793505","https://www.geni.com/api/profile-5300015","https://www.geni.com/api/profile-1294997","https://www.geni.com/api/profile-2347391","https://www.geni.com/api/profile-45147462","https://www.geni.com/api/profile-5750530","https://www.geni.com/api/profile-127144","https://www.geni.com/api/profile-22432","https://www.geni.com/api/profile-76037379","https://www.geni.com/api/profile-112223676","https://www.geni.com/api/profile-48779831","https://www.geni.com/api/profile-3546641","https://www.geni.com/api/profile-41047148","https://www.geni.com/api/profile-41553937","https://www.geni.com/api/profile-61647531","https://www.geni.com/api/profile-48213691","https://www.geni.com/api/profile-50442721","https://www.geni.com/api/profile-41222844"],"death_location":"Thetford, Norfolk, England","death_location_parts":{"city":"Thetford","country":"X-England","state":"Norfolk","latitude":52.414569,"longitude":0.752958},"phone_numbers":[],"name":"Roger le Bigod II, 2nd Earl of Norfolk","created_by":"https://www.geni.com/api/profile-453368","birth_location_parts":{"place_name":"Thetford, Norfolk, England"},"id":"profile-6535565","guid":"6000000002606652260","display_name":"Roger le Bigod II, 2nd Earl of Norfolk","is_alive":false,"burial_date":"July 1221","first_name":"Roger Bigod, 2nd Earl of Norfolk","current_residence":"Framlingham Castle, Suffolk, England or Thetford, Norfolk, England","occupation":"2nd Earl of Norfolk, Earl of Norfolk, Magna Carta Surety, Lord of Middleham, 2nd Degree E. Norfolk and Suffolk"},{"maiden_name":"Quincy","gender":"male","burial_date_parts":{},"locked":false,"death_date":"11/3/1219","burial_location":"Acre, Latin Kingdom of Jerusalem","burial_location_parts":{"city":"Acre","country":"Latin Kingdom of Jerusalem","latitude":34.46928,"longitude":-84.409447},"birth_location":"Winchester, Hampshire, England","url":"https://www.geni.com/api/profile-4317326","last_name":"Quincey","big_tree":true,"mugshot_urls":{"thumb":"http://photos.geni.com/p11/b5/43/fb/88/534448384b4a5097/saher_de_quincy_t.jpg","url":"https://www.geni.com/api/photo-21161039","medium":"http://photos.geni.com/p11/b5/43/fb/88/534448384b4a5097/saher_de_quincy_medium.jpg","large":"http://photos.geni.com/p11/b5/43/fb/88/534448384b4a5097/saher_de_quincy_large.jpg","small":"http://photos.geni.com/p11/b5/43/fb/88/534448384b4a5097/saher_de_quincy_small.jpg","thumb2":"http://photos.geni.com/p11/b5/43/fb/88/534448384b4a5097/saher_de_quincy_t2.jpg"},"public":true,"death_date_parts":{"day":3,"month":11,"year":1219},"curator":"https://www.geni.com/api/profile-34069147","unions":["https://www.geni.com/api/union-8186189","https://www.geni.com/api/union-29887385","https://www.geni.com/api/union-28304989","https://www.geni.com/api/union-27773545","https://www.geni.com/api/union-12439056"],"suffix":"IV","claimed":false,"birth_date_parts":{},"managers":["https://www.geni.com/api/profile-3999539","https://www.geni.com/api/profile-15130251","https://www.geni.com/api/profile-39518478","https://www.geni.com/api/profile-84139596","https://www.geni.com/api/profile-34205139","https://www.geni.com/api/profile-4750937","https://www.geni.com/api/profile-58795634","https://www.geni.com/api/profile-10783142","https://www.geni.com/api/profile-95004967","https://www.geni.com/api/profile-6594637","https://www.geni.com/api/profile-62777846","https://www.geni.com/api/profile-84025231","https://www.geni.com/api/profile-54548834","https://www.geni.com/api/profile-4122392","https://www.geni.com/api/profile-22666414","https://www.geni.com/api/profile-27555500","https://www.geni.com/api/profile-90766813","https://www.geni.com/api/profile-7543425","https://www.geni.com/api/profile-53829587","https://www.geni.com/api/profile-39194830","https://www.geni.com/api/profile-35798379","https://www.geni.com/api/profile-70064526","https://www.geni.com/api/profile-16135891","https://www.geni.com/api/profile-20169896","https://www.geni.com/api/profile-10962189","https://www.geni.com/api/profile-52440548","https://www.geni.com/api/profile-74920195","https://www.geni.com/api/profile-54756574","https://www.geni.com/api/profile-16053506","https://www.geni.com/api/profile-23487913","https://www.geni.com/api/profile-31933091","https://www.geni.com/api/profile-78023499","https://www.geni.com/api/profile-8674288","https://www.geni.com/api/profile-104524503","https://www.geni.com/api/profile-56361694","https://www.geni.com/api/profile-16046011","https://www.geni.com/api/profile-45478048","https://www.geni.com/api/profile-20375076","https://www.geni.com/api/profile-2497157","https://www.geni.com/api/profile-52623455","https://www.geni.com/api/profile-12353737","https://www.geni.com/api/profile-102361912","https://www.geni.com/api/profile-40043860","https://www.geni.com/api/profile-57584245","https://www.geni.com/api/profile-31526823","https://www.geni.com/api/profile-36410367","https://www.geni.com/api/profile-39131367","https://www.geni.com/api/profile-38589487","https://www.geni.com/api/profile-111503564","https://www.geni.com/api/profile-29219496","https://www.geni.com/api/profile-9288190","https://www.geni.com/api/profile-7385204","https://www.geni.com/api/profile-84088422","https://www.geni.com/api/profile-37030039","https://www.geni.com/api/profile-21788246","https://www.geni.com/api/profile-36742723","https://www.geni.com/api/profile-21994144","https://www.geni.com/api/profile-48377152","https://www.geni.com/api/profile-49570332","https://www.geni.com/api/profile-41615354","https://www.geni.com/api/profile-19894094","https://www.geni.com/api/profile-48718688","https://www.geni.com/api/profile-61242237","https://www.geni.com/api/profile-1904585","https://www.geni.com/api/profile-5517491","https://www.geni.com/api/profile-13506091","https://www.geni.com/api/profile-9920856","https://www.geni.com/api/profile-40591310","https://www.geni.com/api/profile-14367233","https://www.geni.com/api/profile-109492096","https://www.geni.com/api/profile-14894653","https://www.geni.com/api/profile-69375563","https://www.geni.com/api/profile-13697875","https://www.geni.com/api/profile-20453683","https://www.geni.com/api/profile-17217530","https://www.geni.com/api/profile-46367400","https://www.geni.com/api/profile-14682731","https://www.geni.com/api/profile-79038142","https://www.geni.com/api/profile-82824271","https://www.geni.com/api/profile-8326922","https://www.geni.com/api/profile-2129301","https://www.geni.com/api/profile-86558382","https://www.geni.com/api/profile-38465497","https://www.geni.com/api/profile-56953250","https://www.geni.com/api/profile-1693836","https://www.geni.com/api/profile-15133659","https://www.geni.com/api/profile-88642071","https://www.geni.com/api/profile-73220641","https://www.geni.com/api/profile-7597264","https://www.geni.com/api/profile-7400981","https://www.geni.com/api/profile-8196424","https://www.geni.com/api/profile-14340359","https://www.geni.com/api/profile-85625428","https://www.geni.com/api/profile-772254","https://www.geni.com/api/profile-5358213","https://www.geni.com/api/profile-67917894","https://www.geni.com/api/profile-49393207","https://www.geni.com/api/profile-66676173","https://www.geni.com/api/profile-87909522","https://www.geni.com/api/profile-3070013","https://www.geni.com/api/profile-1365987","https://www.geni.com/api/profile-52956166","https://www.geni.com/api/profile-26808205","https://www.geni.com/api/profile-2038384","https://www.geni.com/api/profile-63598111","https://www.geni.com/api/profile-62112898","https://www.geni.com/api/profile-35540936","https://www.geni.com/api/profile-50744542","https://www.geni.com/api/profile-112537","https://www.geni.com/api/profile-42734466","https://www.geni.com/api/profile-44569516","https://www.geni.com/api/profile-23336321","https://www.geni.com/api/profile-90560982","https://www.geni.com/api/profile-4908120","https://www.geni.com/api/profile-778583","https://www.geni.com/api/profile-24413936","https://www.geni.com/api/profile-66144667","https://www.geni.com/api/profile-54344863","https://www.geni.com/api/profile-31309256","https://www.geni.com/api/profile-6937729","https://www.geni.com/api/profile-5435874","https://www.geni.com/api/profile-41034115","https://www.geni.com/api/profile-93790075","https://www.geni.com/api/profile-13666976","https://www.geni.com/api/profile-61008451","https://www.geni.com/api/profile-10659684","https://www.geni.com/api/profile-30226732","https://www.geni.com/api/profile-68034189","https://www.geni.com/api/profile-18310466","https://www.geni.com/api/profile-3047303","https://www.geni.com/api/profile-22235353","https://www.geni.com/api/profile-25637387","https://www.geni.com/api/profile-17393823","https://www.geni.com/api/profile-35681796","https://www.geni.com/api/profile-49105419","https://www.geni.com/api/profile-42543608","https://www.geni.com/api/profile-39107020","https://www.geni.com/api/profile-82399107","https://www.geni.com/api/profile-16776056","https://www.geni.com/api/profile-13550013","https://www.geni.com/api/profile-19864285","https://www.geni.com/api/profile-24319098","https://www.geni.com/api/profile-15603445","https://www.geni.com/api/profile-71684074","https://www.geni.com/api/profile-14391850","https://www.geni.com/api/profile-56298213","https://www.geni.com/api/profile-26148420","https://www.geni.com/api/profile-42600205","https://www.geni.com/api/profile-29195302","https://www.geni.com/api/profile-29047833","https://www.geni.com/api/profile-40175359","https://www.geni.com/api/profile-48908657","https://www.geni.com/api/profile-2347391","https://www.geni.com/api/profile-1158734","https://www.geni.com/api/profile-27793505","https://www.geni.com/api/profile-5559156","https://www.geni.com/api/profile-1294997","https://www.geni.com/api/profile-5300015","https://www.geni.com/api/profile-6789782","https://www.geni.com/api/profile-45147462","https://www.geni.com/api/profile-127144","https://www.geni.com/api/profile-73662535","https://www.geni.com/api/profile-88155995","https://www.geni.com/api/profile-40481689","https://www.geni.com/api/profile-112223676","https://www.geni.com/api/profile-41047148","https://www.geni.com/api/profile-3546641","https://www.geni.com/api/profile-6580857","https://www.geni.com/api/profile-41553937","https://www.geni.com/api/profile-22432","https://www.geni.com/api/profile-76037379","https://www.geni.com/api/profile-26118386","https://www.geni.com/api/profile-41222844","https://www.geni.com/api/profile-16610706","https://www.geni.com/api/profile-48213691"],"death_location":"Acre, Latin Kingdom of Jerusalem","death_location_parts":{"city":"Acre","country":"Latin Kingdom of Jerusalem","latitude":31.4164743,"longitude":31.8216525},"phone_numbers":[],"name":"Saher/Saier/Saer III QUINCY, IV","created_by":"https://www.geni.com/api/profile-3999539","birth_location_parts":{"place_name":"Winchester, Hampshire, England"},"id":"profile-4317326","guid":"6000000003146930404","is_alive":false,"first_name":"Saher/Saier/Saer III","current_residence":"Acre, Latin Kingdom of Jerusalem","occupation":"Magna Carta Surety \u0026 Earl of Winchester - see http://www.rpi.edu/~holmes/Hobbies/Genealogy/ps04/ps04_228.htm"},{"gender":"male","birth_date":"1162","burial_date_parts":{"year":1218},"locked":false,"death_date":"12/30/1218","burial_location":"Priory, St Neot's, Huntingdonshire, England","burial_location_parts":{"place_name":"Priory, St Neot's, Huntingdonshire, England"},"birth_location":"Tonbridge Castle, Kent, England","url":"https://www.geni.com/api/profile-3690728","last_name":"de Clare","big_tree":true,"mugshot_urls":{"thumb":"http://photos.geni.com/p5/2446/0735/534448366eb978fe/TonbridgeCastle0021_t.jpg","url":"https://www.geni.com/api/photo-8473622","medium":"http://photos.geni.com/p5/2446/0735/534448366eb978fe/TonbridgeCastle0021_medium.jpg","original":"http://assets0.geni.com/media/p5/2446/0735/534448366eb978fe/TonbridgeCastle0021_original.jpg","large":"http://photos.geni.com/p5/2446/0735/534448366eb978fe/TonbridgeCastle0021_large.jpg","small":"http://photos.geni.com/p5/2446/0735/534448366eb978fe/TonbridgeCastle0021_small.jpg","thumb2":"http://photos.geni.com/p5/2446/0735/534448366eb978fe/TonbridgeCastle0021_t2.jpg"},"public":true,"death_date_parts":{"day":30,"month":12,"year":1218},"curator":"https://www.geni.com/api/profile-34069147","unions":["https://www.geni.com/api/union-30662461","https://www.geni.com/api/union-6436437","https://www.geni.com/api/union-16844726","https://www.geni.com/api/union-30662457","https://www.geni.com/api/union-30662466"],"suffix":"4th Earl of Hertford, Surety of the Magna Carta","claimed":false,"birth_date_parts":{"year":1162},"managers":["https://www.geni.com/api/profile-84139596","https://www.geni.com/api/profile-45556907","https://www.geni.com/api/profile-19613779","https://www.geni.com/api/profile-3999539","https://www.geni.com/api/profile-2186652","https://www.geni.com/api/profile-4750937","https://www.geni.com/api/profile-58795634","https://www.geni.com/api/profile-88603556","https://www.geni.com/api/profile-10783142","https://www.geni.com/api/profile-95004967","https://www.geni.com/api/profile-6594637","https://www.geni.com/api/profile-32316707","https://www.geni.com/api/profile-67227177","https://www.geni.com/api/profile-7365424","https://www.geni.com/api/profile-84065897","https://www.geni.com/api/profile-93213855","https://www.geni.com/api/profile-27555500","https://www.geni.com/api/profile-7543425","https://www.geni.com/api/profile-722577","https://www.geni.com/api/profile-39194830","https://www.geni.com/api/profile-51080381","https://www.geni.com/api/profile-61008491","https://www.geni.com/api/profile-31534","https://www.geni.com/api/profile-251855","https://www.geni.com/api/profile-24494496","https://www.geni.com/api/profile-21120586","https://www.geni.com/api/profile-20169896","https://www.geni.com/api/profile-20154652","https://www.geni.com/api/profile-50128272","https://www.geni.com/api/profile-52440548","https://www.geni.com/api/profile-74920195","https://www.geni.com/api/profile-54756574","https://www.geni.com/api/profile-35008288","https://www.geni.com/api/profile-11137488","https://www.geni.com/api/profile-78023499","https://www.geni.com/api/profile-56361694","https://www.geni.com/api/profile-16046011","https://www.geni.com/api/profile-1610115","https://www.geni.com/api/profile-45478048","https://www.geni.com/api/profile-3905724","https://www.geni.com/api/profile-2497157","https://www.geni.com/api/profile-12353737","https://www.geni.com/api/profile-20429650","https://www.geni.com/api/profile-102361912","https://www.geni.com/api/profile-40043860","https://www.geni.com/api/profile-39131367","https://www.geni.com/api/profile-38589487","https://www.geni.com/api/profile-34233950","https://www.geni.com/api/profile-29219496","https://www.geni.com/api/profile-15541899","https://www.geni.com/api/profile-7385204","https://www.geni.com/api/profile-41148326","https://www.geni.com/api/profile-9400816","https://www.geni.com/api/profile-37030039","https://www.geni.com/api/profile-22950098","https://www.geni.com/api/profile-21788246","https://www.geni.com/api/profile-6772557","https://www.geni.com/api/profile-84437841","https://www.geni.com/api/profile-21994144","https://www.geni.com/api/profile-49570332","https://www.geni.com/api/profile-19894094","https://www.geni.com/api/profile-59693227","https://www.geni.com/api/profile-48718688","https://www.geni.com/api/profile-61242237","https://www.geni.com/api/profile-50055480","https://www.geni.com/api/profile-13506091","https://www.geni.com/api/profile-49959829","https://www.geni.com/api/profile-9920856","https://www.geni.com/api/profile-14367233","https://www.geni.com/api/profile-20579074","https://www.geni.com/api/profile-69375563","https://www.geni.com/api/profile-1857832","https://www.geni.com/api/profile-9875886","https://www.geni.com/api/profile-17217530","https://www.geni.com/api/profile-54795994","https://www.geni.com/api/profile-14682731","https://www.geni.com/api/profile-82824271","https://www.geni.com/api/profile-119097339","https://www.geni.com/api/profile-25836223","https://www.geni.com/api/profile-8326922","https://www.geni.com/api/profile-2129301","https://www.geni.com/api/profile-89825838","https://www.geni.com/api/profile-38465497","https://www.geni.com/api/profile-1693836","https://www.geni.com/api/profile-56953250","https://www.geni.com/api/profile-99835858","https://www.geni.com/api/profile-88642071","https://www.geni.com/api/profile-57591505","https://www.geni.com/api/profile-73220641","https://www.geni.com/api/profile-7400981","https://www.geni.com/api/profile-43773174","https://www.geni.com/api/profile-85625428","https://www.geni.com/api/profile-67917894","https://www.geni.com/api/profile-42809339","https://www.geni.com/api/profile-40197934","https://www.geni.com/api/profile-92029451","https://www.geni.com/api/profile-3070013","https://www.geni.com/api/profile-52005059","https://www.geni.com/api/profile-1365987","https://www.geni.com/api/profile-52956166","https://www.geni.com/api/profile-13840408","https://www.geni.com/api/profile-14866000","https://www.geni.com/api/profile-43196720","https://www.geni.com/api/profile-55243122","https://www.geni.com/api/profile-23419358","https://www.geni.com/api/profile-62112898","https://www.geni.com/api/profile-89896420","https://www.geni.com/api/profile-40307670","https://www.geni.com/api/profile-6037427","https://www.geni.com/api/profile-63913973","https://www.geni.com/api/profile-112537","https://www.geni.com/api/profile-44569516","https://www.geni.com/api/profile-3976197","https://www.geni.com/api/profile-14896797","https://www.geni.com/api/profile-23336321","https://www.geni.com/api/profile-90560982","https://www.geni.com/api/profile-44549159","https://www.geni.com/api/profile-6937729","https://www.geni.com/api/profile-20585794","https://www.geni.com/api/profile-24413936","https://www.geni.com/api/profile-16265647","https://www.geni.com/api/profile-15144607","https://www.geni.com/api/profile-66144667","https://www.geni.com/api/profile-41034115","https://www.geni.com/api/profile-54344863","https://www.geni.com/api/profile-3714917","https://www.geni.com/api/profile-72560597","https://www.geni.com/api/profile-81921050","https://www.geni.com/api/profile-93790075","https://www.geni.com/api/profile-13666976","https://www.geni.com/api/profile-10659684","https://www.geni.com/api/profile-30226732","https://www.geni.com/api/profile-61008451","https://www.geni.com/api/profile-18310466","https://www.geni.com/api/profile-3047303","https://www.geni.com/api/profile-3714919","https://www.geni.com/api/profile-17393823","https://www.geni.com/api/profile-49105419","https://www.geni.com/api/profile-37660784","https://www.geni.com/api/profile-1390931","https://www.geni.com/api/profile-35681796","https://www.geni.com/api/profile-17008350","https://www.geni.com/api/profile-42543608","https://www.geni.com/api/profile-13550013","https://www.geni.com/api/profile-1431292","https://www.geni.com/api/profile-19864285","https://www.geni.com/api/profile-19022765","https://www.geni.com/api/profile-24319098","https://www.geni.com/api/profile-15603445","https://www.geni.com/api/profile-94346920","https://www.geni.com/api/profile-55417226","https://www.geni.com/api/profile-56063426","https://www.geni.com/api/profile-39938543","https://www.geni.com/api/profile-9279027","https://www.geni.com/api/profile-56298213","https://www.geni.com/api/profile-34869760","https://www.geni.com/api/profile-63523017","https://www.geni.com/api/profile-13729150","https://www.geni.com/api/profile-71684074","https://www.geni.com/api/profile-27743245","https://www.geni.com/api/profile-2973503","https://www.geni.com/api/profile-14334544","https://www.geni.com/api/profile-92482724","https://www.geni.com/api/profile-29047833","https://www.geni.com/api/profile-108788198","https://www.geni.com/api/profile-1294997","https://www.geni.com/api/profile-2347391","https://www.geni.com/api/profile-5559156","https://www.geni.com/api/profile-5300015","https://www.geni.com/api/profile-51680653","https://www.geni.com/api/profile-34069147","https://www.geni.com/api/profile-127144","https://www.geni.com/api/profile-45147462","https://www.geni.com/api/profile-39701982","https://www.geni.com/api/profile-9692148","https://www.geni.com/api/profile-21765734","https://www.geni.com/api/profile-110986963","https://www.geni.com/api/profile-5664629","https://www.geni.com/api/profile-18809159","https://www.geni.com/api/profile-22432","https://www.geni.com/api/profile-112223676","https://www.geni.com/api/profile-6580857","https://www.geni.com/api/profile-67177444","https://www.geni.com/api/profile-3546641","https://www.geni.com/api/profile-48779831","https://www.geni.com/api/profile-41553937","https://www.geni.com/api/profile-41047148","https://www.geni.com/api/profile-61647531","https://www.geni.com/api/profile-50442721","https://www.geni.com/api/profile-41222844","https://www.geni.com/api/profile-53027632","https://www.geni.com/api/profile-17613512","https://www.geni.com/api/profile-48213691"],"death_location":"Oxforshire, England","death_location_parts":{"country":"X-England","state":"Oxforshire","latitude":51.813946,"longitude":-1.294785},"phone_numbers":[],"name":"Richard FitzRoger de Clare, 4th Earl of Hertford","created_by":"https://www.geni.com/api/profile-2186652","birth_location_parts":{"city":"Tonbridge Castle","country":"X-England","state":"Kent","latitude":53.908239,"longitude":-1.593281},"id":"profile-3690728","guid":"6000000003645985053","middle_name":"FitzRoger","display_name":"Richard FitzRoger de Clare, 4th Earl of Hertford","is_alive":false,"burial_date":"1218","first_name":"Richard","current_residence":"Priory, St Neot's, Huntingdonshire, England","occupation":"4th Earl of Hertford, Richard was one of the 25 Sureties of the Magna Charta., EARL OF CLARE (6TH) AND HEREFORD (4TH), MAGNA CARTA SURETY, 3rd Earl of Hertford, Earl of Hertford and Clare, Earl of Hertford, (Earl of Hertford), Earl of Hertford and Glouces"},{"maiden_name":"Malet","gender":"male","birth_date":"c. 1176","burial_date_parts":{"circa":true,"year":1216},"locked":true,"death_date":"1216","burial_location":"Curry Malet, Somerset, England","burial_location_parts":{"place_name":"Curry Malet, Somerset, England"},"birth_location":"Curry Malet, Somerset, England","url":"https://www.geni.com/api/profile-30678724","last_name":"Malet","big_tree":true,"mugshot_urls":{"thumb":"http://photos.geni.com/p11/d6/71/3b/bb/534448384b4a508d/william_malet_t.jpg","url":"https://www.geni.com/api/photo-21161029","medium":"http://photos.geni.com/p11/d6/71/3b/bb/534448384b4a508d/william_malet_medium.jpg","large":"http://photos.geni.com/p11/d6/71/3b/bb/534448384b4a508d/william_malet_large.jpg","small":"http://photos.geni.com/p11/d6/71/3b/bb/534448384b4a508d/william_malet_small.jpg","thumb2":"http://photos.geni.com/p11/d6/71/3b/bb/534448384b4a508d/william_malet_t2.jpg"},"public":true,"death_date_parts":{"year":1216},"curator":"https://www.geni.com/api/profile-34069147","unions":["https://www.geni.com/api/union-30649164","https://www.geni.com/api/union-24443691","https://www.geni.com/api/union-11718256","https://www.geni.com/api/union-11720118"],"suffix":"Baron of Curry Malet, Surety of the Magna Carta","claimed":false,"birth_date_parts":{"circa":true,"year":1176},"managers":["https://www.geni.com/api/profile-34069147"],"death_location":"Curry Malet, Somersetshire, England","death_location_parts":{"place_name":"Curry Malet, Somersetshire, England"},"phone_numbers":[],"name":"William Malet, Baron of Curry Malet, Surety of the Magna Carta","created_by":"https://www.geni.com/api/profile-3999539","birth_location_parts":{"place_name":"Curry Malet, Somerset, England"},"id":"profile-30678724","guid":"6000000003693601810","middle_name":"(Sir)","is_alive":false,"burial_date":"c. 1216","first_name":"William","current_residence":"Curry Malet, Somerset, England","occupation":"Magna Charta Surety 1215; Sheriff of Somerset and Dorset, Magna Charta Surety, Lord of Curry and Shepton in Somersetshire"},{"maiden_name":"ap Iowerth","gender":"male","birth_date":"1173","burial_date_parts":{"month":4,"year":1240},"locked":false,"death_date":"4/11/1240","burial_location":"Aberconwy, Caernarvon, Wales, United Kingdom","burial_location_parts":{"place_name":"Aberconwy, Caernarvon, Wales, United Kingdom"},"birth_location":"Aberffraw Castle, Caernarvonshire, Wales","url":"https://www.geni.com/api/profile-4379529","last_name":"ap Iowerth","big_tree":true,"mugshot_urls":{"thumb":"http://photos.geni.com/p6/1319/718/53444836cf4b810c/Llywelyn_the_Great_t.jpg","url":"https://www.geni.com/api/photo-12471533","medium":"http://photos.geni.com/p6/1319/718/53444836cf4b810c/Llywelyn_the_Great_medium.jpg","original":"http://assets2.geni.com/media/p6/1319/718/53444836cf4b810c/Llywelyn_the_Great_original.jpg","large":"http://photos.geni.com/p6/1319/718/53444836cf4b810c/Llywelyn_the_Great_large.jpg","small":"http://photos.geni.com/p6/1319/718/53444836cf4b810c/Llywelyn_the_Great_small.jpg","thumb2":"http://photos.geni.com/p6/1319/718/53444836cf4b810c/Llywelyn_the_Great_t2.jpg"},"public":true,"death_date_parts":{"day":11,"month":4,"year":1240},"curator":"https://www.geni.com/api/profile-24319098","unions":["https://www.geni.com/api/union-19058204","https://www.geni.com/api/union-28804207","https://www.geni.com/api/union-16344711","https://www.geni.com/api/union-10228936","https://www.geni.com/api/union-14020270","https://www.geni.com/api/union-13151311","https://www.geni.com/api/union-17052889","https://www.geni.com/api/union-24865289","https://www.geni.com/api/union-13151310"],"suffix":"Prince of Wales and Gwynedd","claimed":false,"birth_date_parts":{"year":1173},"managers":["https://www.geni.com/api/profile-3999539","https://www.geni.com/api/profile-2186652","https://www.geni.com/api/profile-125752","https://www.geni.com/api/profile-55230590","https://www.geni.com/api/profile-22809509","https://www.geni.com/api/profile-4750937","https://www.geni.com/api/profile-10783142","https://www.geni.com/api/profile-6594637","https://www.geni.com/api/profile-40226578","https://www.geni.com/api/profile-32316707","https://www.geni.com/api/profile-67227177","https://www.geni.com/api/profile-27427557","https://www.geni.com/api/profile-1259367","https://www.geni.com/api/profile-16679062","https://www.geni.com/api/profile-16333210","https://www.geni.com/api/profile-5168292","https://www.geni.com/api/profile-84065897","https://www.geni.com/api/profile-19011970","https://www.geni.com/api/profile-20343928","https://www.geni.com/api/profile-75873512","https://www.geni.com/api/profile-27555500","https://www.geni.com/api/profile-90766813","https://www.geni.com/api/profile-7543425","https://www.geni.com/api/profile-84923039","https://www.geni.com/api/profile-14005311","https://www.geni.com/api/profile-109057256","https://www.geni.com/api/profile-39725904","https://www.geni.com/api/profile-10962189","https://www.geni.com/api/profile-74920195","https://www.geni.com/api/profile-54756574","https://www.geni.com/api/profile-94732018","https://www.geni.com/api/profile-72793238","https://www.geni.com/api/profile-24228179","https://www.geni.com/api/profile-26708771","https://www.geni.com/api/profile-56361694","https://www.geni.com/api/profile-45478048","https://www.geni.com/api/profile-2497157","https://www.geni.com/api/profile-39201292","https://www.geni.com/api/profile-23521075","https://www.geni.com/api/profile-120106178","https://www.geni.com/api/profile-37314968","https://www.geni.com/api/profile-57584245","https://www.geni.com/api/profile-49431520","https://www.geni.com/api/profile-31526823","https://www.geni.com/api/profile-39131367","https://www.geni.com/api/profile-101455528","https://www.geni.com/api/profile-19757707","https://www.geni.com/api/profile-38589487","https://www.geni.com/api/profile-29219496","https://www.geni.com/api/profile-88394468","https://www.geni.com/api/profile-9400816","https://www.geni.com/api/profile-37030039","https://www.geni.com/api/profile-21788246","https://www.geni.com/api/profile-6772557","https://www.geni.com/api/profile-36742723","https://www.geni.com/api/profile-21994144","https://www.geni.com/api/profile-43532127","https://www.geni.com/api/profile-49570332","https://www.geni.com/api/profile-41615354","https://www.geni.com/api/profile-48718688","https://www.geni.com/api/profile-61242237","https://www.geni.com/api/profile-14956324","https://www.geni.com/api/profile-66593050","https://www.geni.com/api/profile-50055480","https://www.geni.com/api/profile-13506091","https://www.geni.com/api/profile-49959829","https://www.geni.com/api/profile-9920856","https://www.geni.com/api/profile-43380364","https://www.geni.com/api/profile-14367233","https://www.geni.com/api/profile-22013949","https://www.geni.com/api/profile-69375563","https://www.geni.com/api/profile-70877673","https://www.geni.com/api/profile-13697875","https://www.geni.com/api/profile-17217530","https://www.geni.com/api/profile-54795994","https://www.geni.com/api/profile-14682731","https://www.geni.com/api/profile-69500978","https://www.geni.com/api/profile-25448459","https://www.geni.com/api/profile-39728262","https://www.geni.com/api/profile-82824271","https://www.geni.com/api/profile-7415042","https://www.geni.com/api/profile-45476983","https://www.geni.com/api/profile-8326922","https://www.geni.com/api/profile-2129301","https://www.geni.com/api/profile-38465497","https://www.geni.com/api/profile-1693836","https://www.geni.com/api/profile-56953250","https://www.geni.com/api/profile-15133659","https://www.geni.com/api/profile-73220641","https://www.geni.com/api/profile-51634229","https://www.geni.com/api/profile-8196424","https://www.geni.com/api/profile-91387217","https://www.geni.com/api/profile-46501588","https://www.geni.com/api/profile-14340359","https://www.geni.com/api/profile-83113561","https://www.geni.com/api/profile-772254","https://www.geni.com/api/profile-48391419","https://www.geni.com/api/profile-67917894","https://www.geni.com/api/profile-57290355","https://www.geni.com/api/profile-8198428","https://www.geni.com/api/profile-7401177","https://www.geni.com/api/profile-3070013","https://www.geni.com/api/profile-1365987","https://www.geni.com/api/profile-52956166","https://www.geni.com/api/profile-54566801","https://www.geni.com/api/profile-70078188","https://www.geni.com/api/profile-2038384","https://www.geni.com/api/profile-62112898","https://www.geni.com/api/profile-115720410","https://www.geni.com/api/profile-40307670","https://www.geni.com/api/profile-63913973","https://www.geni.com/api/profile-15135122","https://www.geni.com/api/profile-19851585","https://www.geni.com/api/profile-44569516","https://www.geni.com/api/profile-3976197","https://www.geni.com/api/profile-51294968","https://www.geni.com/api/profile-23336321","https://www.geni.com/api/profile-90560982","https://www.geni.com/api/profile-20585794","https://www.geni.com/api/profile-66144667","https://www.geni.com/api/profile-54344863","https://www.geni.com/api/profile-72097125","https://www.geni.com/api/profile-13666976","https://www.geni.com/api/profile-58511626","https://www.geni.com/api/profile-61008451","https://www.geni.com/api/profile-30226732","https://www.geni.com/api/profile-10659684","https://www.geni.com/api/profile-18310466","https://www.geni.com/api/profile-12351886","https://www.geni.com/api/profile-25637387","https://www.geni.com/api/profile-3047303","https://www.geni.com/api/profile-49105419","https://www.geni.com/api/profile-35681796","https://www.geni.com/api/profile-42543608","https://www.geni.com/api/profile-6307174","https://www.geni.com/api/profile-82399107","https://www.geni.com/api/profile-27987403","https://www.geni.com/api/profile-15695467","https://www.geni.com/api/profile-17008350","https://www.geni.com/api/profile-13550013","https://www.geni.com/api/profile-24319098","https://www.geni.com/api/profile-14391850","https://www.geni.com/api/profile-49679373","https://www.geni.com/api/profile-56063426","https://www.geni.com/api/profile-39938543","https://www.geni.com/api/profile-56298213","https://www.geni.com/api/profile-59506511","https://www.geni.com/api/profile-693317","https://www.geni.com/api/profile-108788198","https://www.geni.com/api/profile-2347391","https://www.geni.com/api/profile-39472670","https://www.geni.com/api/profile-1158734","https://www.geni.com/api/profile-27793505","https://www.geni.com/api/profile-29047833","https://www.geni.com/api/profile-5300015","https://www.geni.com/api/profile-14539379","https://www.geni.com/api/profile-5559156","https://www.geni.com/api/profile-1294997","https://www.geni.com/api/profile-6789782","https://www.geni.com/api/profile-34069147","https://www.geni.com/api/profile-45147462","https://www.geni.com/api/profile-39701982","https://www.geni.com/api/profile-9692148","https://www.geni.com/api/profile-127144","https://www.geni.com/api/profile-35234659","https://www.geni.com/api/profile-5664629","https://www.geni.com/api/profile-18809159","https://www.geni.com/api/profile-22432","https://www.geni.com/api/profile-112223676","https://www.geni.com/api/profile-41047148","https://www.geni.com/api/profile-48779831","https://www.geni.com/api/profile-3546641","https://www.geni.com/api/profile-41553937","https://www.geni.com/api/profile-81549924","https://www.geni.com/api/profile-21778280","https://www.geni.com/api/profile-41222844","https://www.geni.com/api/profile-30149857","https://www.geni.com/api/profile-74283603","https://www.geni.com/api/profile-48213691"],"death_location":"Aberconwy, Arllechwedd Isaf, Caernarvonshire, Wales","death_location_parts":{"city":"Arllechwedd Isaf","country":"Wales","state":"Caernarvonshire","place_name":"Aberconwy","latitude":53.2817227,"longitude":-3.8284386},"phone_numbers":[],"name":"Llywelyn the Great","created_by":"https://www.geni.com/api/profile-2186652","birth_location_parts":{"country":"Wales","state":"Caernarvonshire","place_name":"Aberffraw Castle","latitude":53.013069,"longitude":-4.35163},"id":"profile-4379529","guid":"6000000003807598493","middle_name":"\"The Great\"","display_name":"Llywelyn the Great","is_alive":false,"burial_date":"April 1240","first_name":"Llewelyn","current_residence":"Aberconwy, Caernarvon, Wales, United Kingdom","occupation":"born Abeffraw Castle/died Aberconwy, Arllleciwed Isaf, Prince of Wales 1195-1240, PRINCE OF NORTH WALES, 'THE GREAT', Llywelyn the Great, Prince of North Wales, Prince of North Wales \u0026 Aberfraw/Lord of Snowdon, King of Wales, Prince of Wales"},{"maiden_name":"FitzWalter","gender":"male","birth_date":"c. 1162","burial_date_parts":{},"locked":false,"death_date":"12/9/1235","burial_location":"High Altar Of Dunmow Priory, Dunmow Castle, England","burial_location_parts":{"place_name":"High Altar Of Dunmow Priory, Dunmow Castle, England"},"birth_location":"Dunmow Castle, England","url":"https://www.geni.com/api/profile-20730383","last_name":"de Clare","big_tree":true,"mugshot_urls":{"thumb":"http://photos.geni.com/p11/dc/78/3f/40/534448384b4a509a/robert_fitzwalter_t.jpg","url":"https://www.geni.com/api/photo-21161042","medium":"http://photos.geni.com/p11/dc/78/3f/40/534448384b4a509a/robert_fitzwalter_medium.jpg","large":"http://photos.geni.com/p11/dc/78/3f/40/534448384b4a509a/robert_fitzwalter_large.jpg","small":"http://photos.geni.com/p11/dc/78/3f/40/534448384b4a509a/robert_fitzwalter_small.jpg","thumb2":"http://photos.geni.com/p11/dc/78/3f/40/534448384b4a509a/robert_fitzwalter_t2.jpg"},"public":true,"death_date_parts":{"day":9,"month":12,"year":1235},"curator":"https://www.geni.com/api/profile-34069147","unions":["https://www.geni.com/api/union-10328803","https://www.geni.com/api/union-17558792"],"suffix":"of Dunmow Castle, Surety of the Magna Carta","claimed":false,"birth_date_parts":{"circa":true,"year":1162},"managers":["https://www.geni.com/api/profile-10783142","https://www.geni.com/api/profile-20585794","https://www.geni.com/api/profile-39938543","https://www.geni.com/api/profile-54344863","https://www.geni.com/api/profile-44569516","https://www.geni.com/api/profile-40226578","https://www.geni.com/api/profile-27793505","https://www.geni.com/api/profile-74920195","https://www.geni.com/api/profile-56298213","https://www.geni.com/api/profile-5559156","https://www.geni.com/api/profile-27951966","https://www.geni.com/api/profile-366706","https://www.geni.com/api/profile-39201292","https://www.geni.com/api/profile-71113118","https://www.geni.com/api/profile-1294997","https://www.geni.com/api/profile-254117","https://www.geni.com/api/profile-27555500","https://www.geni.com/api/profile-4908120","https://www.geni.com/api/profile-35681796"],"death_location":"Siege of Damietta, Egypt","death_location_parts":{"place_name":"Siege of Damietta, Egypt"},"phone_numbers":[],"name":"Robert FITZWALTER, of Dunmow Castle, Surety of the Magna Carta","created_by":"https://www.geni.com/api/profile-366706","birth_location_parts":{"place_name":"Dunmow Castle, England"},"id":"profile-20730383","guid":"6000000003827151457","middle_name":"FitzWalter","is_alive":false,"first_name":"Robert","current_residence":"High Altar Of Dunmow Priory, Dunmow Castle, England","occupation":"Baron signer of the Magna Charta"},{"maiden_name":"de Lanvallei - alt spelling","gender":"male","merge_note":"William III de Lanvaley was the son of William II de Lanvaley and Hawise de Bocland. He married Maud Pecche. He died circa 1217. William III de Lanvaley lived at Lexden.","birth_date":"1180","locked":false,"death_date":"1217","birth_location":"Great Bromley, Essex, , England","url":"https://www.geni.com/api/profile-56364915","last_name":"de Lanvaley","big_tree":true,"mugshot_urls":{"thumb":"http://photos.geni.com/p11/38/4e/8a/7d/534448384b4a5090/william_de_lanvallei_t.jpg","url":"https://www.geni.com/api/photo-21161032","medium":"http://photos.geni.com/p11/38/4e/8a/7d/534448384b4a5090/william_de_lanvallei_medium.jpg","large":"http://photos.geni.com/p11/38/4e/8a/7d/534448384b4a5090/william_de_lanvallei_large.jpg","small":"http://photos.geni.com/p11/38/4e/8a/7d/534448384b4a5090/william_de_lanvallei_small.jpg","thumb2":"http://photos.geni.com/p11/38/4e/8a/7d/534448384b4a5090/william_de_lanvallei_t2.jpg"},"public":true,"death_date_parts":{"year":1217},"curator":"https://www.geni.com/api/profile-34069147","unions":["https://www.geni.com/api/union-27784303","https://www.geni.com/api/union-19121593"],"suffix":"III","claimed":false,"birth_date_parts":{"year":1180},"managers":["https://www.geni.com/api/profile-56361694","https://www.geni.com/api/profile-39938543","https://www.geni.com/api/profile-40226578","https://www.geni.com/api/profile-67917894","https://www.geni.com/api/profile-90766813","https://www.geni.com/api/profile-92029451","https://www.geni.com/api/profile-74920195","https://www.geni.com/api/profile-7385204","https://www.geni.com/api/profile-3546641","https://www.geni.com/api/profile-29219496"],"death_location":"Great Bromley, Essex, , England","death_location_parts":{"place_name":"Great Bromley, Essex, , England"},"phone_numbers":[],"name":"William de Lanvaley III, Lord of Stanway, Surety of the Magna Carta","created_by":"https://www.geni.com/api/profile-29219496","birth_location_parts":{"place_name":"Great Bromley, Essex, , England"},"id":"profile-56364915","guid":"6000000003827232851","display_name":"William de Lanvaley III, Lord of Stanway, Surety of the Magna Carta","is_alive":false,"first_name":"William"},{"maiden_name":"of Clavering","gender":"male","birth_date":"1188","locked":false,"death_date":"1241","birth_location":"Warkworth Castle, Alnwick, Northumberland, England","url":"https://www.geni.com/api/profile-21522719","last_name":"of Clavering","big_tree":true,"mugshot_urls":{"thumb":"http://photos.geni.com/p11/d0/f8/3c/37/534448384b4a50a1/john_fitzrobert_t.jpg","url":"https://www.geni.com/api/photo-21161049","medium":"http://photos.geni.com/p11/d0/f8/3c/37/534448384b4a50a1/john_fitzrobert_medium.jpg","large":"http://photos.geni.com/p11/d0/f8/3c/37/534448384b4a50a1/john_fitzrobert_large.jpg","small":"http://photos.geni.com/p11/d0/f8/3c/37/534448384b4a50a1/john_fitzrobert_small.jpg","thumb2":"http://photos.geni.com/p11/d0/f8/3c/37/534448384b4a50a1/john_fitzrobert_t2.jpg"},"public":true,"death_date_parts":{"year":1241},"curator":"https://www.geni.com/api/profile-34069147","unions":["https://www.geni.com/api/union-6059110","https://www.geni.com/api/union-21071487","https://www.geni.com/api/union-31009860"],"suffix":"3rd Baron of Warkworth","claimed":false,"birth_date_parts":{"year":1188},"managers":["https://www.geni.com/api/profile-10783142","https://www.geni.com/api/profile-6555595","https://www.geni.com/api/profile-21788246","https://www.geni.com/api/profile-39938543","https://www.geni.com/api/profile-48377152","https://www.geni.com/api/profile-67917894","https://www.geni.com/api/profile-44569516","https://www.geni.com/api/profile-56953250","https://www.geni.com/api/profile-29765888","https://www.geni.com/api/profile-62112898","https://www.geni.com/api/profile-31526823","https://www.geni.com/api/profile-993882","https://www.geni.com/api/profile-61242237","https://www.geni.com/api/profile-8326922","https://www.geni.com/api/profile-55243122","https://www.geni.com/api/profile-3976197","https://www.geni.com/api/profile-6594637","https://www.geni.com/api/profile-5300015","https://www.geni.com/api/profile-74920195","https://www.geni.com/api/profile-13840408","https://www.geni.com/api/profile-127144","https://www.geni.com/api/profile-113366389","https://www.geni.com/api/profile-41047148","https://www.geni.com/api/profile-65922997","https://www.geni.com/api/profile-5312495","https://www.geni.com/api/profile-14894653","https://www.geni.com/api/profile-3047303","https://www.geni.com/api/profile-24319098","https://www.geni.com/api/profile-38465497","https://www.geni.com/api/profile-13550013","https://www.geni.com/api/profile-41615354","https://www.geni.com/api/profile-26708771","https://www.geni.com/api/profile-73609059","https://www.geni.com/api/profile-51294968","https://www.geni.com/api/profile-112223676","https://www.geni.com/api/profile-4908120","https://www.geni.com/api/profile-9920856","https://www.geni.com/api/profile-27555500"],"death_location":"Warkworth Castle, Alnwick, Northumberland, England","death_location_parts":{"place_name":"Warkworth Castle, Alnwick, Northumberland, England"},"phone_numbers":[],"name":"John of Clavering, 3rd Baron of Warkworth","birth_location_parts":{"place_name":"Warkworth Castle, Alnwick, Northumberland, England"},"id":"profile-21522719","guid":"6000000003827280089","middle_name":"FitzRobert","is_alive":false,"first_name":"John","occupation":"3rd Degree B. Warkworth"},{"maiden_name":"d'Aubigny","gender":"male","birth_date":"1146","locked":true,"death_date":"5/1/1236","birth_location":"Belvoir Castle, Leicestershire, England","url":"https://www.geni.com/api/profile-92378177","last_name":"d'Aubigny","big_tree":true,"mugshot_urls":{"thumb":"http://photos.geni.com/p11/ac/47/84/6d/534448384b4a50a9/d_aubigny_t.jpg","url":"https://www.geni.com/api/photo-21161058","medium":"http://photos.geni.com/p11/ac/47/84/6d/534448384b4a50a9/d_aubigny_medium.jpg","large":"http://photos.geni.com/p11/ac/47/84/6d/534448384b4a50a9/d_aubigny_large.jpg","small":"http://photos.geni.com/p11/ac/47/84/6d/534448384b4a50a9/d_aubigny_small.jpg","thumb2":"http://photos.geni.com/p11/ac/47/84/6d/534448384b4a50a9/d_aubigny_t2.jpg"},"public":true,"death_date_parts":{"day":1,"month":5,"year":1236},"curator":"https://www.geni.com/api/profile-34069147","unions":["https://www.geni.com/api/union-36123500","https://www.geni.com/api/union-31538885"],"suffix":"Lord of Belvoir","claimed":false,"birth_date_parts":{"year":1146},"managers":["https://www.geni.com/api/profile-34069147"],"death_location":"Cainell By Rome, Latium, Italy","death_location_parts":{"place_name":"Cainell By Rome, Latium, Italy"},"phone_numbers":[],"name":"William III d'Aubigny, Lord of Belvoir","created_by":"https://www.geni.com/api/profile-20375076","birth_location_parts":{"place_name":"Belvoir Castle, Leicestershire, England"},"id":"profile-92378177","guid":"6000000009255472189","middle_name":"\"Brito\"","is_alive":false,"first_name":"William III","occupation":"Magna Carta Surety"},{"maiden_name":"Mandeville","gender":"male","birth_date":"1170","burial_date_parts":{},"locked":true,"death_date":"2/23/1216","burial_location":"Trinity Priory, London, Middlesex, England","burial_location_parts":{"place_name":"Trinity Priory, London, Middlesex, England"},"birth_location":"Essex, England","url":"https://www.geni.com/api/profile-103396622","last_name":"de Mandeville","big_tree":true,"mugshot_urls":{"thumb":"http://photos.geni.com/p11/c7/db/c7/16/534448384b4a50a7/geoffrey_de_mandeville_t.jpg","url":"https://www.geni.com/api/photo-21161055","medium":"http://photos.geni.com/p11/c7/db/c7/16/534448384b4a50a7/geoffrey_de_mandeville_medium.jpg","large":"http://photos.geni.com/p11/c7/db/c7/16/534448384b4a50a7/geoffrey_de_mandeville_large.jpg","small":"http://photos.geni.com/p11/c7/db/c7/16/534448384b4a50a7/geoffrey_de_mandeville_small.jpg","thumb2":"http://photos.geni.com/p11/c7/db/c7/16/534448384b4a50a7/geoffrey_de_mandeville_t2.jpg"},"public":true,"death_date_parts":{"day":23,"month":2,"year":1216},"curator":"https://www.geni.com/api/profile-112223676","unions":[],"suffix":"Earl of Essex and Gloucester, Surety of the Magna Carta","claimed":false,"birth_date_parts":{"year":1170},"managers":["https://www.geni.com/api/profile-112223676"],"death_location":"London, Middlesex, England","death_location_parts":{"place_name":"London, Middlesex, England"},"phone_numbers":[],"name":"Geoffrey MANDEVILLE, Earl of Essex and Gloucester, Surety of the Magna Carta","created_by":"https://www.geni.com/api/profile-6797478","birth_location_parts":{"place_name":"Essex, England"},"id":"profile-103396622","guid":"6000000010020022175","is_alive":false,"first_name":"Geoffrey","current_residence":"Trinity Priory, London, Middlesex, England","occupation":"2nd Earl of Essex"},{"gender":"male","locked":false,"death_date":"c. 1226","url":"https://www.geni.com/api/profile-104782442","last_name":"de Montbegon","big_tree":true,"mugshot_urls":{"thumb":"http://photos.geni.com/p11/5f/19/83/21/534448384b2b14f5/montbegon_t.jpg","url":"https://www.geni.com/api/photo-21156773","medium":"http://photos.geni.com/p11/5f/19/83/21/534448384b2b14f5/montbegon_medium.jpg","original":"http://assets1.geni.com/media/p11/5f/19/83/21/534448384b2b14f5/montbegon_original.jpg","large":"http://photos.geni.com/p11/5f/19/83/21/534448384b2b14f5/montbegon_large.jpg","small":"http://photos.geni.com/p11/5f/19/83/21/534448384b2b14f5/montbegon_small.jpg","thumb2":"http://photos.geni.com/p11/5f/19/83/21/534448384b2b14f5/montbegon_t2.jpg"},"public":true,"death_date_parts":{"circa":true,"year":1226},"curator":"https://www.geni.com/api/profile-34069147","unions":["https://www.geni.com/api/union-34196380"],"suffix":"Surety of the Magna Carta","claimed":false,"birth_date_parts":{},"managers":["https://www.geni.com/api/profile-55243122"],"death_location_parts":{},"phone_numbers":[],"name":"Roger de Montbegon, Surety of the Magna Carta","created_by":"https://www.geni.com/api/profile-55243122","birth_location_parts":{},"id":"profile-104782442","guid":"6000000010181023229","is_alive":false,"first_name":"Roger"}]}
@@ -0,0 +1 @@
1
+ {"labels":[],"sizes":{"medium":"http://photos.geni.com/p12/c9/85/43/5e/534448388a6f89b5/2010-04-grandhan-papy_medium.jpg","large":"http://photos.geni.com/p12/c9/85/43/5e/534448388a6f89b5/2010-04-grandhan-papy_large.jpg","thumb2":"http://photos.geni.com/p12/c9/85/43/5e/534448388a6f89b5/2010-04-grandhan-papy_t2.jpg","small":"http://photos.geni.com/p12/c9/85/43/5e/534448388a6f89b5/2010-04-grandhan-papy_small.jpg","thumb":"http://photos.geni.com/p12/c9/85/43/5e/534448388a6f89b5/2010-04-grandhan-papy_t.jpg","original":"http://assets1.geni.com/media/p12/c9/85/43/5e/534448388a6f89b5/2010-04-grandhan-papy_original.jpg"},"guid":"6000000011242277301","url":"https://www.geni.com/api/photo-22466661","date":"4/17/2010","content_type":"image/jpeg","date_parts":{"day":17,"month":4,"year":2010},"album_id":"6000000009078813207","created_on":"2011-01-23 00:01:18","id":"photo-22466661"}
@@ -0,0 +1 @@
1
+ {"results":[{"public":false,"id":"profile-22432"},{"public":false,"id":"profile-17217530"},{"public":false,"id":"profile-34069147"},{"public":false,"id":"profile-52956166"},{"public":false,"id":"profile-55243122"},{"public":false,"id":"profile-58021742"},{"email":"gdmeadors@gmail.com","public":false,"phone_numbers":[{"type":"Mobile","number":"4219","area_code":"332","country_code":"503"}],"id":"profile-71684074"},{"public":false,"id":"profile-113176368"}]}
@@ -0,0 +1 @@
1
+ {"focus":{"birth_date":"6/30/1986","gender":"male","locked":false,"birth_location":"Tournai, Walloon Region, Belgium","big_tree":false,"last_name":"Malisart","url":"https://www.geni.com/api/profile-90990667","public":false,"claimed":true,"created_by":"https://www.geni.com/api/profile-90990667","name":"Aur\u00e9lien Malisart","is_alive":true,"guid":"6000000009077913616","id":"profile-90990667","current_residence":"Mons, Walloon Region, Belgium","first_name":"Aur\u00e9lien"},"nodes":{"profile-90990843":{"edges":{"union-31029071":{"rel":"child"}},"gender":"male","last_name":"Malisart","url":"https://www.geni.com/api/profile-90990843","public":false,"is_alive":true,"id":"profile-90990843","first_name":"Benjamin"},"profile-90990832":{"edges":{"union-31029071":{"rel":"child"}},"gender":"male","last_name":"Malisart","url":"https://www.geni.com/api/profile-90990832","public":false,"is_alive":true,"id":"profile-90990832","first_name":"Timothy"},"profile-90990667":{"edges":{"union-31029071":{"rel":"child"}},"gender":"male","last_name":"Malisart","url":"https://www.geni.com/api/profile-90990667","public":false,"is_alive":true,"id":"profile-90990667","first_name":"Aur\u00e9lien"},"union-31029071":{"edges":{"profile-90990667":{"rel":"child"},"profile-90990843":{"rel":"child"},"profile-90990832":{"rel":"child"},"profile-90990739":{"rel":"partner"},"profile-90990730":{"rel":"partner"}},"status":"current","url":"https://www.geni.com/api/union-31029071"},"profile-90990739":{"edges":{"union-31029120":{"rel":"child"},"union-31029071":{"rel":"partner"}},"gender":"female","last_name":"Malisart","url":"https://www.geni.com/api/profile-90990739","public":false,"is_alive":true,"id":"profile-90990739","first_name":"Carole"},"profile-90990730":{"edges":{"union-31029110":{"rel":"child"},"union-31029071":{"rel":"partner"}},"gender":"male","last_name":"Malisart","url":"https://www.geni.com/api/profile-90990730","public":false,"is_alive":true,"id":"profile-90990730","first_name":"Alain"}}}
@@ -0,0 +1 @@
1
+ {"results":[{"maiden_name":"Moiny","gender":"female","birth_date":"7/10/1975","locked":false,"birth_location":"Tournai, Walloon Region, Belgium","url":"https://www.geni.com/api/profile-90990985","last_name":"Meurisse","big_tree":false,"mugshot_urls":{"url":"https://www.geni.com/api/photo-22493579","medium":"http://photos.geni.com/p12/f7/a5/5e/3b/534448388bb23e99/00057_medium.jpg","thumb":"http://photos.geni.com/p12/f7/a5/5e/3b/534448388bb23e99/00057_t.jpg","large":"http://photos.geni.com/p12/f7/a5/5e/3b/534448388bb23e99/00057_large.jpg","small":"http://photos.geni.com/p12/f7/a5/5e/3b/534448388bb23e99/00057_small.jpg","thumb2":"http://photos.geni.com/p12/f7/a5/5e/3b/534448388bb23e99/00057_t2.jpg"},"public":false,"unions":["https://www.geni.com/api/union-31029233"],"claimed":false,"birth_date_parts":{"day":10,"month":7,"year":1975},"managers":["https://www.geni.com/api/profile-90990667"],"phone_numbers":[],"name":"Armelle MOINY","created_by":"https://www.geni.com/api/profile-90990667","birth_location_parts":{"city":"Tournai","country":"Belgium","state":"Walloon Region","latitude":50.607234,"longitude":3.392589},"id":"profile-90990985","guid":"6000000009077119073","is_alive":true,"first_name":"Armelle","relationship":"aunt"},{"gender":"male","birth_date":"6/13/1970","locked":false,"birth_location":"Tournai, Walloon Region, Belgium","url":"https://www.geni.com/api/profile-90990977","last_name":"Moiny","big_tree":false,"mugshot_urls":{"url":"https://www.geni.com/api/photo-22466955","medium":"http://photos.geni.com/p12/c0/b6/be/20/534448388a764027/luc_medium.jpg","original":"http://assets3.geni.com/media/p12/c0/b6/be/20/534448388a764027/luc_original.jpg","thumb":"http://photos.geni.com/p12/c0/b6/be/20/534448388a764027/luc_t.jpg","large":"http://photos.geni.com/p12/c0/b6/be/20/534448388a764027/luc_large.jpg","small":"http://photos.geni.com/p12/c0/b6/be/20/534448388a764027/luc_small.jpg","thumb2":"http://photos.geni.com/p12/c0/b6/be/20/534448388a764027/luc_t2.jpg"},"public":false,"unions":[],"claimed":false,"birth_date_parts":{"day":13,"month":6,"year":1970},"managers":["https://www.geni.com/api/profile-90990667"],"phone_numbers":[],"name":"Luc Moiny","created_by":"https://www.geni.com/api/profile-90990667","birth_location_parts":{"city":"Tournai","country":"Belgium","state":"Walloon Region","latitude":50.607234,"longitude":3.392589},"id":"profile-90990977","guid":"6000000009077223985","is_alive":true,"first_name":"Luc","relationship":"uncle"},{"gender":"female","birth_date":"12/24/1964","locked":false,"birth_location":"Tournai, Walloon Region, Belgium","url":"https://www.geni.com/api/profile-90990923","last_name":"Moiny","big_tree":false,"mugshot_urls":{"url":"https://www.geni.com/api/photo-22467144","medium":"http://assets0.geni.com/media/p12/db/d9/a3/4f/534448388a7899a4/fabienne_medium.jpg","original":"http://assets0.geni.com/media/p12/db/d9/a3/4f/534448388a7899a4/fabienne_original.jpg","thumb":"http://assets0.geni.com/media/p12/db/d9/a3/4f/534448388a7899a4/fabienne_t.jpg","large":"http://assets0.geni.com/media/p12/db/d9/a3/4f/534448388a7899a4/fabienne_large.jpg","small":"http://assets0.geni.com/media/p12/db/d9/a3/4f/534448388a7899a4/fabienne_small.jpg","thumb2":"http://assets0.geni.com/media/p12/db/d9/a3/4f/534448388a7899a4/fabienne_t2.jpg"},"public":false,"unions":["https://www.geni.com/api/union-31029181"],"claimed":false,"birth_date_parts":{"day":24,"month":12,"year":1964},"managers":["https://www.geni.com/api/profile-90990667"],"phone_numbers":[],"name":"Fabienne Moiny","created_by":"https://www.geni.com/api/profile-90990667","birth_location_parts":{"city":"Tournai","country":"Belgium","state":"Walloon Region","latitude":50.607234,"longitude":3.392589},"id":"profile-90990923","guid":"6000000009077391570","is_alive":true,"first_name":"Fabienne","relationship":"aunt"},{"maiden_name":"Moiny","gender":"female","birth_date":"7/28/1966","locked":false,"birth_location":"Tournai, Walloon Region, Belgium","url":"https://www.geni.com/api/profile-90990957","last_name":"Lef\u00e8vre","big_tree":false,"mugshot_urls":{"url":"https://www.geni.com/api/photo-22467013","medium":"http://photos.geni.com/p12/c0/c4/7b/a7/534448388a759c3c/00369_medium.jpg","original":"http://assets0.geni.com/media/p12/c0/c4/7b/a7/534448388a759c3c/00369_original.jpg","thumb":"http://photos.geni.com/p12/c0/c4/7b/a7/534448388a759c3c/00369_t.jpg","large":"http://photos.geni.com/p12/c0/c4/7b/a7/534448388a759c3c/00369_large.jpg","small":"http://photos.geni.com/p12/c0/c4/7b/a7/534448388a759c3c/00369_small.jpg","thumb2":"http://photos.geni.com/p12/c0/c4/7b/a7/534448388a759c3c/00369_t2.jpg"},"public":false,"unions":["https://www.geni.com/api/union-31029207"],"claimed":false,"birth_date_parts":{"day":28,"month":7,"year":1966},"managers":["https://www.geni.com/api/profile-90990667"],"phone_numbers":[],"name":"B\u00e9reng\u00e8re MOINY","created_by":"https://www.geni.com/api/profile-90990667","birth_location_parts":{"city":"Tournai","country":"Belgium","state":"Walloon Region","latitude":50.607234,"longitude":3.392589},"id":"profile-90990957","guid":"6000000009077983105","is_alive":true,"first_name":"B\u00e9reng\u00e8re","relationship":"aunt"}]}
@@ -0,0 +1 @@
1
+ {"results":[{"public":false,"id":"profile-34069147"},{"public":false,"id":"profile-55243122"},{"public":false,"id":"profile-22432"},{"public":false,"id":"profile-52956166"},{"public":false,"id":"profile-17217530"},{"public":false,"id":"profile-71684074"},{"public":false,"id":"profile-113176368"},{"public":false,"id":"profile-58021742"}]}
@@ -0,0 +1 @@
1
+ {"date_parts":{"day":17,"month":4,"year":2010},"created_on":"2011-01-23 00:52:09","url":"https://www.geni.com/api/photo-22467102","date":"4/17/2010","sizes":{"medium":"https://assets0.geni.com/media/p12/9c/91/60/19/534448388a766f20/00252_medium.jpg","original":"https://assets0.geni.com/media/p12/9c/91/60/19/534448388a766f20/00252_original.jpg","thumb":"https://assets0.geni.com/media/p12/9c/91/60/19/534448388a766f20/00252_t.jpg","large":"https://assets0.geni.com/media/p12/9c/91/60/19/534448388a766f20/00252_large.jpg","small":"https://assets0.geni.com/media/p12/9c/91/60/19/534448388a766f20/00252_small.jpg","thumb2":"https://assets0.geni.com/media/p12/9c/91/60/19/534448388a766f20/00252_t2.jpg"},"content_type":"image/jpeg","labels":[],"id":"photo-22467102","guid":"6000000011242729248","album_id":"6000000009078813207"}
@@ -0,0 +1 @@
1
+ {"created_on":"2011-04-15 19:16:53","title":"Aurelien playing the drums","date_parts":{"day":8,"month":4,"year":2009},"url":"https://www.geni.com/api/video-99385","date":"4/8/2009","sizes":{"small":"http://photos.geni.com/p13/be/f6/f6/66/53444838c7c08b88/smile_like_you_mean_it_small.jpg","medium":"http://photos.geni.com/p13/be/f6/f6/66/53444838c7c08b88/smile_like_you_mean_it_medium.jpg","video":"http://photos.geni.com/p13/be/f6/f6/66/53444838c7c08b88/smile_like_you_mean_it.mp4","thumb2":"http://photos.geni.com/p13/be/f6/f6/66/53444838c7c08b88/smile_like_you_mean_it_t2.jpg","thumb":"http://photos.geni.com/p13/be/f6/f6/66/53444838c7c08b88/smile_like_you_mean_it_t.jpg"},"labels":[],"id":"video-99385","guid":"6000000012270996360"}
@@ -0,0 +1 @@
1
+ {"results":[{"is_alive":true,"middle_name":"Guy Julien","birth_date":"6/30/1986","locked":false,"last_name":"Malisart","url":"https://www.geni.com/api/profile-90990667","birth_location":"Tournai, Walloon Region, Belgium","public":false,"first_name":"Aur\u00e9lien","birth_date_parts":{"day":30,"month":6,"year":1986},"gender":"male","id":"profile-90990667"}]}
@@ -0,0 +1 @@
1
+ {"date_parts":{"day":8,"month":4,"year":2009},"created_on":"2011-04-15 19:16:53","url":"https://www.geni.com/api/video-99385","date":"4/8/2009","sizes":{"video":"https://assets0.geni.com/media/p13/be/f6/f6/66/53444838c7c08b88/smile_like_you_mean_it.mp4","medium":"https://assets0.geni.com/media/p13/be/f6/f6/66/53444838c7c08b88/smile_like_you_mean_it_medium.jpg","thumb":"https://assets0.geni.com/media/p13/be/f6/f6/66/53444838c7c08b88/smile_like_you_mean_it_t.jpg","small":"https://assets0.geni.com/media/p13/be/f6/f6/66/53444838c7c08b88/smile_like_you_mean_it_small.jpg","thumb2":"https://assets0.geni.com/media/p13/be/f6/f6/66/53444838c7c08b88/smile_like_you_mean_it_t2.jpg"},"title":"Aurelien playing the drums","labels":[],"id":"video-99385","guid":"6000000012270996360"}
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: geni
3
3
  version: !ruby/object:Gem::Version
4
- hash: 21
4
+ hash: 19
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 5
10
- version: 0.0.5
9
+ - 6
10
+ version: 0.0.6
11
11
  platform: ruby
12
12
  authors:
13
13
  - "Aur\xC3\xA9lien Malisart"
@@ -51,6 +51,38 @@ dependencies:
51
51
  version: 1.5.0
52
52
  type: :runtime
53
53
  version_requirements: *id002
54
+ - !ruby/object:Gem::Dependency
55
+ name: rake
56
+ prerelease: false
57
+ requirement: &id003 !ruby/object:Gem::Requirement
58
+ none: false
59
+ requirements:
60
+ - - ~>
61
+ - !ruby/object:Gem::Version
62
+ hash: 49
63
+ segments:
64
+ - 0
65
+ - 8
66
+ - 7
67
+ version: 0.8.7
68
+ type: :development
69
+ version_requirements: *id003
70
+ - !ruby/object:Gem::Dependency
71
+ name: rspec
72
+ prerelease: false
73
+ requirement: &id004 !ruby/object:Gem::Requirement
74
+ none: false
75
+ requirements:
76
+ - - "="
77
+ - !ruby/object:Gem::Version
78
+ hash: 27
79
+ segments:
80
+ - 2
81
+ - 5
82
+ - 0
83
+ version: 2.5.0
84
+ type: :development
85
+ version_requirements: *id004
54
86
  description: A Ruby client to the geni.com API
55
87
  email: aurelien.malisart@gmail.com
56
88
  executables: []
@@ -61,16 +93,59 @@ extra_rdoc_files:
61
93
  - README.md
62
94
  files:
63
95
  - .gitignore
96
+ - LICENSE
64
97
  - README.md
65
- - lib/geni.rb
98
+ - Rakefile
99
+ - geni.gemspec
66
100
  - lib/array_hacks.rb
67
- - lib/oauth_hacks.rb
101
+ - lib/geni.rb
68
102
  - lib/geni/base.rb
69
103
  - lib/geni/client.rb
70
- - lib/geni/family.rb
104
+ - lib/geni/document.rb
105
+ - lib/geni/photo.rb
71
106
  - lib/geni/profile.rb
72
- - geni.gemspec
73
- - LICENSE
107
+ - lib/geni/profile/immediate_family.rb
108
+ - lib/geni/project.rb
109
+ - lib/geni/taggable.rb
110
+ - lib/geni/union.rb
111
+ - lib/geni/video.rb
112
+ - lib/oauth_hacks.rb
113
+ - spec/geni/client_spec.rb
114
+ - spec/geni/document_spec.rb
115
+ - spec/geni/immediate_family_spec.rb
116
+ - spec/geni/photo_spec.rb
117
+ - spec/geni/profile_spec.rb
118
+ - spec/geni/project_spec.rb
119
+ - spec/geni/union_spec.rb
120
+ - spec/geni/video_spec.rb
121
+ - spec/spec_helper.rb
122
+ - spec/support/mocked_responses/06668c1bc97e251b3c2965712e3b990e.json
123
+ - spec/support/mocked_responses/09df004f19d20d8d685db52796b552bf.json
124
+ - spec/support/mocked_responses/12536c37e1bcef230f105a0fa930eae9.json
125
+ - spec/support/mocked_responses/155ed9f9c6912c19cd4d6be2ad4b9163.json
126
+ - spec/support/mocked_responses/1b640e767a27039b60daab80aa3e38da.json
127
+ - spec/support/mocked_responses/44795c1cebac8aee4c72ab4cde5b7c34.json
128
+ - spec/support/mocked_responses/4e55df6914e067b371e7ea54ac372591.json
129
+ - spec/support/mocked_responses/55c9a8f9e64187f2e7389b7cecec4bd0.json
130
+ - spec/support/mocked_responses/5643d7ffaa0b17a4340b57446228f455.json
131
+ - spec/support/mocked_responses/6df2af74f5544a90b96921edc9aa346d.json
132
+ - spec/support/mocked_responses/7215a02ec26d1c9df055275958824c7b.json
133
+ - spec/support/mocked_responses/7c4840e03bece51bb7154893682ec2a6.json
134
+ - spec/support/mocked_responses/9ae308e89eb74fc5aea5164c8affa422.json
135
+ - spec/support/mocked_responses/9e1dcf9ed89704ecac0e1734f9ac9e6e.json
136
+ - spec/support/mocked_responses/a060207b22ab180a065704b8dd031511.json
137
+ - spec/support/mocked_responses/a4a8ee1c8c387c8cad34c7c62f2d1d27.json
138
+ - spec/support/mocked_responses/a5a1df59373b2159fbd3b906b9494f6f.json
139
+ - spec/support/mocked_responses/b28e773e9568bf5e2ac10e425241bf51.json
140
+ - spec/support/mocked_responses/b4856ae6ff428888301f716b52ea161b.json
141
+ - spec/support/mocked_responses/b73322abb23cf869241bda85b20080f5.json
142
+ - spec/support/mocked_responses/c21daf2c09c09b947b5b8de0a69278d9.json
143
+ - spec/support/mocked_responses/c234b7016ed809af64cfaf699a509512.json
144
+ - spec/support/mocked_responses/d2e9479730282f7493eaf6513497d454.json
145
+ - spec/support/mocked_responses/d5b2f2087b8831ce4df5e7e9f5a1085a.json
146
+ - spec/support/mocked_responses/dee607809468ee9a94e56eeae28ecc34.json
147
+ - spec/support/mocked_responses/deea226a6d94d6165febb07a56ba4261.json
148
+ - spec/support/mocked_responses/f4f38a4038abc4227a1b4b18fd12b978.json
74
149
  has_rdoc: true
75
150
  homepage: http://github.com/aurels/geni
76
151
  licenses: []
@@ -1,39 +0,0 @@
1
- module Geni
2
- class Family < Base
3
- def parents
4
- @parents ||= profiles(walk(focus_node, ['child', 'partner']))
5
- end
6
-
7
- def partners
8
- @partners ||= profiles(walk(focus_node, ['partner', 'partner']))
9
- end
10
-
11
- def children
12
- @children ||= profiles(walk(focus_node, ['partner', 'child']))
13
- end
14
-
15
- def siblings
16
- @siblings ||= profiles(walk(focus_node, ['child', 'child']))
17
- end
18
-
19
- protected
20
-
21
- def focus_node
22
- @nodes[@focus['id']]
23
- end
24
-
25
- def walk(node, rels)
26
- return node if rels.empty?
27
-
28
- node['edges'].collect do |edge_id, edge|
29
- if edge['rel'] == rels.first && edge_id != @focus['id']
30
- walk(@nodes[edge_id], rels.tail)
31
- end
32
- end.compact.flatten
33
- end
34
-
35
- def profiles(nodes)
36
- client.get_profile(nodes.collect { |node| node['id'].split('-').last })
37
- end
38
- end
39
- end